@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
/* Scope Theme - Tailwind CSS Custom Properties */
:root {
  /* Typography */
  --font-family-sans: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-family-mono: 'Montserrat Mono', 'Courier New', monospace;
  
  /* Colors */
  --color-primary: #1A365D;
  --color-secondary: #553C9A;
  --color-accent: #F7FAFC;
  --color-background: #FFFFFF;
  --color-foreground: #1A202C;
  --color-muted: #F7FAFC;
  --color-muted-foreground: #6B7280;
  
  /* Scope specific colors */
  --color-scope-blue: #1A365D;
  --color-scope-gold: #F7FAFC;
  --color-scope-purple: #553C9A;
  --color-scope-light: #F7FAFC;
  --color-scope-dark: #1A202C;
  
  /* Navbar */
  --navbar-bg-scrolled: #FFFFFF;
  --navbar-bg-unscrolled: transparent;
  --navbar-text-scrolled: #000000;
  --navbar-text-unscrolled: #FFFFFF;
  --navbar-link-hover: #F7FAFC;
  --navbar-button-bg-scrolled: #000000;
  --navbar-button-bg-unscrolled: #F7FAFC;
  --navbar-button-text-scrolled: #FFFFFF;
  --navbar-button-text-unscrolled: #000000;
  
  /* Footer */
  --footer-bg: #000000;
  --footer-text: #FFFFFF;
  --footer-link-hover: #F7FAFC;
  --footer-border: rgba(255, 255, 255, 0.1);
  
  /* Layout */
  --section-padding: 5rem;
  --container-padding: 2rem;
  
  /* Animations */
  --animation-fade-in: fade-in 0.5s ease-out;
  --animation-slide-in: slide-in 0.5s ease-out;
}

html {
  scroll-behavior: smooth;
}

/* Typography classes */
.custom-h1 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  animation: var(--animation-fade-in);
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .custom-h1 {
    font-size: 3.75rem;
    line-height: 1;
  }
}

@media (min-width: 1024px) {
  .custom-h1 {
    font-size: 4.5rem;
    line-height: 1;
  }
}

.custom-h2 {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  text-transform: uppercase;
}

.custom-h3 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
}

.custom-h4 {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 0.25rem;
}

.custom-p {
  font-size: 1.125rem;
  line-height: 1.625;
}

.custom-subtitle {
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 2rem;
  animation: var(--animation-fade-in);
}

@media (min-width: 768px) {
  .custom-subtitle {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

/* Navbar classes */
.custom-navbar-header {
  transition: all 0.3s ease;
}

.custom-navbar-header.scrolled {
  background-color: var(--navbar-bg-scrolled);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.custom-navbar-header.unscrolled {
  background-color: var(--navbar-bg-unscrolled);
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.custom-navbar-logo.scrolled {
  color: var(--navbar-text-scrolled);
}

.custom-navbar-logo.unscrolled {
  color: var(--navbar-text-unscrolled);
  filter: invert(1);
}

.custom-navbar-link.scrolled {
  color: var(--navbar-text-scrolled);
}

.custom-navbar-link.scrolled:hover {
  color: rgba(0, 0, 0, 0.9);
}

.custom-navbar-link.unscrolled {
  color: var(--navbar-text-unscrolled);
}

.custom-navbar-link.unscrolled:hover {
  color: var(--color-scope-gold);
}

.custom-navbar-button.scrolled {
  background-color: var(--navbar-button-bg-scrolled);
  color: var(--navbar-button-text-scrolled);
}

.custom-navbar-button.scrolled:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.custom-navbar-button.unscrolled {
  background-color: var(--navbar-button-bg-unscrolled);
  color: var(--navbar-button-text-unscrolled);
}

.custom-navbar-button.unscrolled:hover {
  background-color: rgba(247, 250, 252, 0.9);
}

/* Footer classes */
.custom-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.custom-footer-title {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.custom-footer-link {
  transition: padding-left 0.2s ease-in-out;
}

.custom-footer-link:hover {
  padding-left: 5px;
}

.custom-footer-social-link {
  transition: scale 0.2s ease-in-out;
}
.custom-footer-social-link:hover {
  scale: 1.1;
}

.custom-footer-border {
  border-top: 1px solid var(--footer-border);
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  .custom-footer-border {
    flex-direction: row;
  }
}

.custom-footer-logo {
  height: 2.5rem;
  filter: invert(1);
}

.custom-footer-copyright {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Layout classes */
.custom-section {
  padding: var(--section-padding) 0;
}

.custom-container {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Article page specific classes */
.custom-article-hero {
  position: relative;
  height: 70vh;
  width: 100%;
  overflow: hidden;
}

.custom-article-hero-bg {
  position: absolute;
  inset: 0;
  background-color: #000000;
}

.custom-article-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.custom-article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
}

.custom-article-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 4rem;
}

.custom-article-hero-inner {
  max-width: 56rem;
}

.custom-article-title {
  color: white;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: var(--animation-fade-in);
}

@media (min-width: 768px) {
  .custom-article-title {
    font-size: 3.75rem;
    line-height: 1;
  }
}

@media (min-width: 1024px) {
  .custom-article-title {
    font-size: 4.5rem;
    line-height: 1;
  }
}

.custom-article-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 2rem;
  animation: var(--animation-fade-in);
}

@media (min-width: 768px) {
  .custom-article-subtitle {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.custom-article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--color-scope-gold);
  animation: var(--animation-fade-in);
}

.custom-article-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.custom-article-content {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: white;
}

.custom-article-content-inner {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.custom-article-share {
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 1.5rem;
}

.custom-article-share-text {
  color: rgba(0, 0, 0, 0.6);
}

.custom-article-prose {
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.custom-article-heading {
  color: #000000;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #000000;
  padding-left: 1.5rem;
}

.custom-article-image {
  margin-top: 3rem;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.custom-article-image-caption {
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-top: 0.5rem;
  font-style: italic;
}

.custom-article-list {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.custom-article-list-item {
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.125rem;
  display: flex;
  align-items: flex-start;
}

.custom-article-list-bullet {
  color: var(--color-scope-gold);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.custom-article-quote {
  border-left: 4px solid var(--color-scope-gold);
  padding-left: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background-color: #f9fafb;
  border-radius: 0 0.5rem 0.5rem 0;
}

.custom-article-quote-text {
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.custom-article-quote-author {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.875rem;
}

.custom-article-divider {
  margin-top: 3rem;
  margin-bottom: 3rem;
  border-top: 2px solid rgba(247, 250, 252, 0.3);
}
