/* ========================================
   The Silver Fountain — Tonopah, NV
   Old-Fashioned Soda Fountain Aesthetic
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=Great+Vibes&display=swap');

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

:root {
  --cream: #FFF8F0;
  --cream-dark: #F5EDE0;
  --dark-brown: #2C1810;
  --warm-brown: #5C3A28;
  --rich-brown: #8B5E3C;
  --muted-gold: #C4993D;
  --pale-gold: #E8D5A3;
  --bright-gold: #D4A843;
  --silver: #A8A9AD;
  --light-silver: #D4D4D8;
  --rose: #D4A09A;
  --card-bg: #FFFDF8;
  --border: #E8DFD4;
  --text: #2C1810;
  --text-muted: #7A6555;
  --success: #4A7A4A;
  --error: #A04040;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', Georgia, serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--dark-brown);
}

a { color: var(--muted-gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--bright-gold); }

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Decorative Elements === */
.ornament {
  text-align: center;
  font-size: 1.4rem;
  color: var(--muted-gold);
  letter-spacing: 12px;
  margin: 0 auto;
  opacity: 0.7;
}

.ornament-line {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
}
.ornament-line::before,
.ornament-line::after {
  content: '';
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, var(--muted-gold), transparent);
}

.script-accent {
  font-family: 'Great Vibes', cursive;
  color: var(--muted-gold);
}

/* === Navigation === */
.site-header {
  background: var(--dark-brown);
  border-bottom: 3px solid var(--muted-gold);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
}
.nav-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pale-gold);
  letter-spacing: 1px;
  line-height: 1.1;
}
.nav-brand-sub {
  font-family: 'Lora', serif;
  font-size: 0.65rem;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  color: var(--cream-dark);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--muted-gold);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--muted-gold);
  border-radius: 1px;
}

.nav-order-btn {
  background: var(--muted-gold) !important;
  color: var(--dark-brown) !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem !important;
  letter-spacing: 1px !important;
  text-transform: uppercase;
}
.nav-order-btn:hover {
  background: var(--bright-gold) !important;
  color: var(--dark-brown) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--pale-gold);
  margin: 5px 0;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === Hero Section === */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(44,24,16,0.55) 0%, rgba(44,24,16,0.3) 40%, rgba(44,24,16,0.65) 100%),
    linear-gradient(135deg, #3E2723 0%, #5D4037 30%, #4E342E 60%, #3E2723 100%);
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 800px;
}

.hero-tagline {
  font-family: 'Great Vibes', cursive;
  font-size: 1.6rem;
  color: var(--muted-gold);
  margin-bottom: 12px;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  color: #FFF8F0;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-desc {
  font-size: 1.2rem;
  color: rgba(255,248,240,0.85);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--muted-gold);
  color: var(--dark-brown);
}
.btn-primary:hover {
  background: var(--bright-gold);
  color: var(--dark-brown);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196,153,61,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(255,248,240,0.4);
}
.btn-secondary:hover {
  border-color: var(--muted-gold);
  color: var(--muted-gold);
}

.btn-dark {
  background: var(--dark-brown);
  color: var(--cream);
}
.btn-dark:hover {
  background: var(--warm-brown);
  color: var(--cream);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.88rem;
}

/* === Section Styles === */
.section {
  padding: 100px 0;
}
.section-sm {
  padding: 60px 0;
}

.section-dark {
  background: var(--dark-brown);
  color: var(--cream);
}
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--cream);
}

.section-alt {
  background: var(--cream-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: 2.6rem;
  margin-bottom: 12px;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}
.section-dark .section-header p {
  color: var(--silver);
}

/* === Featured Highlights (Home) === */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.highlight-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44,24,16,0.08);
}

.highlight-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--pale-gold), var(--cream));
  border-radius: 50%;
  border: 2px solid var(--muted-gold);
}

.highlight-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.highlight-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === Menu Categories & Items === */
.menu-category {
  margin-bottom: 64px;
}
.menu-category:last-child { margin-bottom: 0; }

.menu-category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.menu-category-header h3 {
  font-size: 1.8rem;
  white-space: nowrap;
}
.menu-category-header .cat-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.menu-item:hover {
  border-color: var(--muted-gold);
  box-shadow: 0 4px 16px rgba(196,153,61,0.08);
}

.menu-item-info { flex: 1; }
.menu-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-brown);
  margin-bottom: 4px;
}
.menu-item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.menu-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.menu-item-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--muted-gold);
  white-space: nowrap;
}

.add-to-cart-btn {
  background: var(--dark-brown);
  color: var(--cream);
  border: none;
  padding: 6px 14px;
  border-radius: 4px;
  font-family: 'Lora', serif;
  font-size: 0.78rem;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.add-to-cart-btn:hover {
  background: var(--warm-brown);
}

/* === Order Page === */
.order-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.order-menu-section { /* Left side */ }

.cart-panel {
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  position: sticky;
  top: 96px;
}

.cart-header {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-empty {
  text-align: center;
  padding: 32px 0;
  color: var(--text-muted);
  font-style: italic;
}

.cart-items { list-style: none; }
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  gap: 8px;
}
.cart-item:last-child { border-bottom: none; }

.cart-item-name {
  flex: 1;
  font-size: 0.92rem;
  font-weight: 500;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cart-item-qty button {
  width: 26px;
  height: 26px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--cream);
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.cart-item-qty button:hover { background: var(--cream-dark); }
.cart-item-qty span { min-width: 20px; text-align: center; font-size: 0.9rem; }
.cart-item-price {
  font-weight: 600;
  color: var(--muted-gold);
  min-width: 52px;
  text-align: right;
  font-size: 0.92rem;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  padding: 16px 0 0;
  margin-top: 12px;
  border-top: 2px solid var(--dark-brown);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.cart-form { margin-top: 24px; }
.cart-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--warm-brown);
  margin-bottom: 4px;
  margin-top: 14px;
}
.cart-form label:first-child { margin-top: 0; }

.cart-form input,
.cart-form select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: 'Lora', serif;
  font-size: 0.92rem;
  background: var(--cream);
  color: var(--text);
  transition: border-color 0.2s;
}
.cart-form input:focus,
.cart-form select:focus {
  outline: none;
  border-color: var(--muted-gold);
  box-shadow: 0 0 0 3px rgba(196,153,61,0.1);
}

.checkout-btn {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  font-size: 1rem;
  justify-content: center;
}

.order-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* === About Page === */
.about-hero {
  background:
    linear-gradient(180deg, rgba(44,24,16,0.65), rgba(44,24,16,0.5)),
    linear-gradient(135deg, #4E342E 0%, #3E2723 50%, #5D4037 100%);
  padding: 100px 0;
  text-align: center;
}
.about-hero h1 {
  font-size: 3.2rem;
  color: var(--cream);
  margin-bottom: 16px;
}
.about-hero p {
  font-size: 1.15rem;
  color: rgba(255,248,240,0.8);
  max-width: 600px;
  margin: 0 auto;
}

.about-story {
  max-width: 760px;
  margin: 0 auto;
}
.about-story h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.about-story p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 20px;
}
.about-story p:last-child { margin-bottom: 0; }

.story-quote {
  border-left: 4px solid var(--muted-gold);
  padding: 20px 28px;
  margin: 32px 0;
  background: var(--cream-dark);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--warm-brown);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.about-value {
  text-align: center;
  padding: 32px 24px;
}
.about-value-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.about-value h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.about-value p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* === Location Page === */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.location-info h3 {
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.location-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.location-detail:last-child { border-bottom: none; padding-bottom: 0; }

.location-detail-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-dark);
  border-radius: 8px;
  font-size: 1.3rem;
}

.location-detail h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.location-detail p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--border);
  height: 400px;
  background: var(--cream-dark);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}
.hours-table td {
  padding: 8px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.hours-table td:first-child { font-weight: 600; color: var(--dark-brown); }
.hours-table td:last-child { text-align: right; color: var(--text-muted); }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table tr.today td { color: var(--muted-gold); font-weight: 600; }

/* === Testimonial Strip === */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  padding: 28px;
  background: rgba(255,248,240,0.08);
  border: 1px solid rgba(255,248,240,0.1);
  border-radius: 10px;
}
.testimonial-stars {
  color: var(--muted-gold);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,248,240,0.8);
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.82rem;
  color: var(--silver);
}

/* === CTA Banner === */
.cta-banner {
  text-align: center;
  padding: 80px 24px;
  background:
    linear-gradient(135deg, rgba(44,24,16,0.92), rgba(92,58,40,0.92)),
    linear-gradient(45deg, #3E2723, #5D4037);
}
.cta-banner h2 {
  font-size: 2.4rem;
  color: var(--cream);
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 1.1rem;
  color: var(--silver);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* === Footer === */
.site-footer {
  background: var(--dark-brown);
  border-top: 3px solid var(--muted-gold);
  padding: 48px 0 24px;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .nav-brand-name {
  font-size: 1.3rem;
  margin-bottom: 12px;
  display: block;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--silver);
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted-gold);
  margin-bottom: 16px;
}
.footer-links ul {
  list-style: none;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--silver);
}
.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,248,240,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--silver);
}
.footer-bottom a { color: var(--silver); }
.footer-bottom a:hover { color: var(--muted-gold); }

/* === Page Header (interior pages) === */
.page-header {
  background:
    linear-gradient(180deg, rgba(44,24,16,0.7), rgba(44,24,16,0.5)),
    linear-gradient(135deg, #4E342E, #3E2723);
  padding: 64px 0;
  text-align: center;
}
.page-header h1 {
  font-size: 2.8rem;
  color: var(--cream);
  margin-bottom: 8px;
}
.page-header p {
  font-size: 1.05rem;
  color: rgba(255,248,240,0.7);
}

/* === Order Confirmation === */
.order-success {
  text-align: center;
  padding: 60px 24px;
  max-width: 560px;
  margin: 0 auto;
}
.order-success-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}
.order-success h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
.order-success p {
  color: var(--text-muted);
  margin-bottom: 8px;
}
.order-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--muted-gold);
  font-weight: 700;
  margin: 16px 0;
}

/* === Cart Badge === */
.cart-badge {
  position: relative;
}
.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--muted-gold);
  color: var(--dark-brown);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', serif;
}
.cart-count.hidden { display: none; }

/* === Notification Toast === */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--dark-brown);
  color: var(--cream);
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 0.92rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  border-left: 4px solid var(--muted-gold);
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* === Mobile Nav Overlay === */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44,24,16,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--cream);
  text-decoration: none;
}
.mobile-nav a:hover { color: var(--muted-gold); }

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: block; }

  .hero h1 { font-size: 2.8rem; }
  .hero-tagline { font-size: 1.3rem; }
  .hero-content { padding: 60px 20px; }

  .highlights-grid { grid-template-columns: 1fr; gap: 20px; }
  .menu-grid { grid-template-columns: 1fr; }

  .order-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cart-panel {
    position: static;
  }

  .location-grid { grid-template-columns: 1fr; gap: 32px; }
  .map-container { height: 300px; }

  .about-values { grid-template-columns: 1fr; gap: 20px; }
  .testimonials { grid-template-columns: 1fr; gap: 16px; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section { padding: 64px 0; }
  .section-header h2 { font-size: 2rem; }
  .page-header h1 { font-size: 2.2rem; }

  .cta-banner h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-desc { font-size: 1rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; justify-content: center; }

  .section-header h2 { font-size: 1.7rem; }

  .menu-item {
    flex-direction: column;
    align-items: stretch;
  }
  .menu-item-right {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
  }

  .cart-panel { padding: 20px; }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

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

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