/* ================================================
   AirFriers.org - Main Stylesheet
   A warm, editorial design for air fryer enthusiasts
   ================================================ */

/* CSS Custom Properties */
:root {
  /* Color Palette - Warm Kitchen Tones */
  --color-primary: #c45c26;
  --color-primary-dark: #9a4520;
  --color-primary-light: #e8956a;
  --color-secondary: #1a1a1a;
  --color-accent: #d4a853;
  --color-background: #faf8f5;
  --color-surface: #ffffff;
  --color-surface-warm: #fff9f3;
  --color-text: #2d2d2d;
  --color-text-muted: #6b6b6b;
  --color-text-light: #8a8a8a;
  --color-border: #e5e0da;
  --color-border-light: #f0ece6;
  
  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-warm: 0 4px 20px rgba(196, 92, 38, 0.15);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-background);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-secondary);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ================================================
   HEADER & NAVIGATION
   ================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border-light);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  text-decoration: none;
}

.logo__icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: var(--space-xl);
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  padding: var(--space-sm) 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-primary);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-secondary);
  transition: var(--transition-fast);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  position: relative;
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--color-surface-warm) 0%, var(--color-background) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 92, 38, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--color-surface);
  padding: var(--space-sm) var(--space-md);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.hero__title {
  margin-bottom: var(--space-lg);
}

.hero__title span {
  color: var(--color-primary);
}

.hero__description {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  max-width: 500px;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
}

.hero__image-wrapper {
  position: relative;
  background: linear-gradient(145deg, var(--color-surface) 0%, var(--color-border-light) 100%);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
}

.hero__image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 4rem;
}

.hero__stats {
  position: absolute;
  bottom: -20px;
  left: -20px;
  display: flex;
  gap: var(--space-md);
}

.stat-card {
  background: var(--color-surface);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.stat-card__number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
}

.stat-card__label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  box-shadow: var(--shadow-warm);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(196, 92, 38, 0.25);
  color: white;
}

.btn--secondary {
  background: var(--color-surface);
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.btn--secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* ================================================
   SECTIONS
   ================================================ */
.section {
  padding: var(--space-4xl) 0;
}

.section--alt {
  background: var(--color-surface);
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.section__subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.section__title {
  margin-bottom: var(--space-md);
}

.section__description {
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

/* ================================================
   FEATURE CARDS
   ================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.feature-card {
  background: var(--color-surface);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(196, 92, 38, 0.1) 0%, rgba(196, 92, 38, 0.05) 100%);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
}

.feature-card__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.feature-card__text {
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* ================================================
   GUIDE CARDS
   ================================================ */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
}

.guide-card {
  background: var(--color-surface);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
  text-decoration: none;
  color: inherit;
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.guide-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
}

.guide-card__content {
  padding: var(--space-lg);
}

.guide-card__category {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.guide-card__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--color-secondary);
}

.guide-card__excerpt {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}

.guide-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* ================================================
   COMPARISON TABLE
   ================================================ */
.comparison-wrapper {
  overflow-x: auto;
  margin: 0 calc(-1 * var(--space-lg));
  padding: 0 var(--space-lg);
}

.comparison-table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
  background: var(--color-surface);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
}

.comparison-table thead {
  background: var(--color-secondary);
  color: white;
}

.comparison-table th {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}

.comparison-table tbody tr:hover {
  background: var(--color-surface-warm);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table .product-name {
  font-weight: 600;
  color: var(--color-secondary);
}

.comparison-table .rating {
  color: var(--color-accent);
  font-weight: 600;
}

.comparison-table .highlight {
  background: rgba(196, 92, 38, 0.08);
}

.check-yes {
  color: #22c55e;
  font-weight: bold;
}

.check-no {
  color: var(--color-text-light);
}

/* ================================================
   CONTENT PAGES
   ================================================ */
.page-header {
  background: linear-gradient(135deg, var(--color-surface-warm) 0%, var(--color-background) 100%);
  padding: var(--space-3xl) 0;
  text-align: center;
  border-bottom: 1px solid var(--color-border-light);
}

.page-header__title {
  margin-bottom: var(--space-md);
}

.page-header__description {
  color: var(--color-text-muted);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.content {
  padding: var(--space-3xl) 0;
}

.content h2 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border-light);
}

.content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.content h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.content ul, .content ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.content li {
  margin-bottom: var(--space-sm);
}

.content blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: var(--space-lg);
  margin: var(--space-xl) 0;
  font-style: italic;
  color: var(--color-text-muted);
}

/* ================================================
   CONTACT FORM
   ================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact-info {
  padding: var(--space-xl);
  background: var(--color-surface-warm);
  border-radius: var(--border-radius-lg);
}

.contact-info__item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  background: var(--color-surface);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info__label {
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: var(--space-xs);
}

.contact-info__value {
  color: var(--color-text-muted);
}

.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form__label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form__input,
.form__textarea {
  padding: var(--space-md);
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--border-radius);
  background: var(--color-surface);
  transition: border-color var(--transition-fast);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form__textarea {
  min-height: 150px;
  resize: vertical;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--color-secondary);
  color: white;
  padding: var(--space-3xl) 0 var(--space-xl);
  margin-top: auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  margin-bottom: var(--space-md);
}

.footer__logo-icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__description {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  color: white;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: var(--space-sm);
}

.footer__links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: white;
}

.footer__bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__copyright {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer__legal {
  display: flex;
  gap: var(--space-lg);
}

.footer__legal a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__legal a:hover {
  color: white;
}

/* ================================================
   BREADCRUMBS
   ================================================ */
.breadcrumbs {
  padding: var(--space-md) 0;
  font-size: 0.9rem;
}

.breadcrumbs__list {
  display: flex;
  list-style: none;
  gap: var(--space-sm);
}

.breadcrumbs__item::after {
  content: '/';
  margin-left: var(--space-sm);
  color: var(--color-text-light);
}

.breadcrumbs__item:last-child::after {
  display: none;
}

.breadcrumbs__link {
  color: var(--color-text-muted);
}

.breadcrumbs__link:hover {
  color: var(--color-primary);
}

.breadcrumbs__current {
  color: var(--color-text);
  font-weight: 500;
}

/* ================================================
   ARTICLE / GUIDE PAGE
   ================================================ */
.article {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.article__header {
  margin-bottom: var(--space-2xl);
}

.article__category {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.article__title {
  margin-bottom: var(--space-md);
}

.article__meta {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.article__content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.article__content p {
  margin-bottom: var(--space-lg);
}

.article__content h2 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-lg);
}

/* Table of Contents */
.toc {
  background: var(--color-surface-warm);
  padding: var(--space-lg);
  border-radius: var(--border-radius);
  margin-bottom: var(--space-2xl);
}

.toc__title {
  font-size: 1rem;
  margin-bottom: var(--space-md);
}

.toc__list {
  list-style: none;
  counter-reset: toc;
}

.toc__list li {
  counter-increment: toc;
  margin-bottom: var(--space-sm);
}

.toc__list li::before {
  content: counter(toc) ".";
  color: var(--color-primary);
  font-weight: 600;
  margin-right: var(--space-sm);
}

.toc__list a {
  color: var(--color-text);
}

.toc__list a:hover {
  color: var(--color-primary);
}

/* ================================================
   CALLOUT BOXES
   ================================================ */
.callout {
  padding: var(--space-lg);
  border-radius: var(--border-radius);
  margin: var(--space-xl) 0;
}

.callout--tip {
  background: rgba(34, 197, 94, 0.1);
  border-left: 4px solid #22c55e;
}

.callout--warning {
  background: rgba(234, 179, 8, 0.1);
  border-left: 4px solid #eab308;
}

.callout--info {
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid #3b82f6;
}

.callout__title {
  font-weight: 700;
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
}

.callout__text {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero__description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero__actions {
    justify-content: center;
  }
  
  .hero__visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav__list {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-surface);
    flex-direction: column;
    padding: var(--space-xl);
    gap: var(--space-md);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
  }
  
  .nav__list.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero {
    padding: var(--space-2xl) 0;
  }
  
  .hero__stats {
    position: static;
    margin-top: var(--space-lg);
    justify-content: center;
  }
  
  .section {
    padding: var(--space-2xl) 0;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer__brand {
    max-width: none;
  }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .guides-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 1rem;
    --space-xl: 1.5rem;
    --space-2xl: 2rem;
    --space-3xl: 2.5rem;
    --space-4xl: 3rem;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero__actions {
    flex-direction: column;
  }
}

/* ================================================
   PRINT STYLES
   ================================================ */
@media print {
  .header,
  .footer,
  .nav-toggle {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: black;
    background: white;
  }
  
  a {
    color: black;
    text-decoration: underline;
  }
  
  .section {
    padding: 1em 0;
  }
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}
