/* ============================================================
   SEASIDE BUFFET — styles.css
   Theme: Modern & Elegant | Navy + Gold
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --navy-deep:    #0a1628;
  --navy-mid:     #112240;
  --navy-card:    #1a2f50;
  --navy-border:  rgba(201, 168, 76, 0.2);

  --gold:         #c9a84c;
  --gold-light:   #e8c57a;
  --gold-subtle:  rgba(201, 168, 76, 0.12);

  --white:        #ffffff;
  --off-white:    #f5f3ef;
  --text-light:   #e8e8e8;
  --text-muted:   #94a3b8;

  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', -apple-system, sans-serif;

  --radius:       8px;
  --radius-lg:    16px;
  --transition:   0.35s ease;

  --container:    1160px;
  --section-pad:  96px;
}

/* ---------- Mother's Day Announcement Banner ---------- */

/* Keyframes */
@keyframes mday-slide-down {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
@keyframes mday-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes mday-icon-spin {
  0%   { transform: rotate(0deg)   scale(1);    }
  25%  { transform: rotate(20deg)  scale(1.15); }
  50%  { transform: rotate(0deg)   scale(1);    }
  75%  { transform: rotate(-20deg) scale(1.15); }
  100% { transform: rotate(0deg)   scale(1);    }
}

#mothers-day-banner {
  /* Shimmer gradient layered over the solid burgundy */
  background:
    linear-gradient(
      105deg,
      transparent 30%,
      rgba(255,255,255,0.12) 50%,
      transparent 70%
    ),
    linear-gradient(90deg, #7b1c3a 0%, #9e2a4e 40%, #7b1c3a 100%);
  background-size: 250% 100%, 100% 100%;
  animation:
    mday-slide-down 0.55s cubic-bezier(0.22,1,0.36,1) both,
    mday-shimmer    4s linear 0.8s infinite;
  border-bottom: 2px solid var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  position: relative;
  z-index: 1100;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
  overflow: hidden;
}
#mothers-day-banner.mday-hidden {
  max-height: 0 !important;
  opacity: 0;
  pointer-events: none;
  animation: none;
}
.mday-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
}
.mday-icon {
  color: var(--gold-light);
  font-size: 1.2rem;
  flex-shrink: 0;
  display: inline-block;
  animation: mday-icon-spin 3s ease-in-out 1.2s infinite;
  transform-origin: center;
}
.mday-text {
  line-height: 1.45;
}
.mday-text strong {
  font-weight: 600;
  letter-spacing: 0.02em;
}
.mday-text em {
  color: var(--gold-light);
  font-style: normal;
}
.mday-divider {
  margin: 0 8px;
  opacity: 0.5;
}
.mday-close {
  flex-shrink: 0;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  transition: color var(--transition);
}
.mday-close:hover {
  color: var(--white);
}
@media (max-width: 640px) {
  .mday-divider { display: none; }
  .mday-text span:last-child { display: block; margin-top: 2px; }
  .mday-banner-inner { gap: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  #mothers-day-banner,
  .mday-icon {
    animation: none;
  }
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--navy-deep);
  color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

input, select, textarea, button {
  font-family: var(--font-sans);
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* ---------- Section Themes ---------- */
.section-light {
  background: var(--off-white);
  color: var(--navy-deep);
}

.section-dark {
  background: var(--navy-mid);
}

/* ---------- Section Headers ---------- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header.light h2 {
  color: var(--white);
}
.section-header.light .section-desc {
  color: var(--text-muted);
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label.gold { color: var(--gold); }

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.divider-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 24px;
}
.divider-line.gold { background: var(--gold); }

.section-desc {
  font-size: 1.05rem;
  color: #4a5568;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}
.section-desc.muted { color: var(--text-muted); }

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(10, 22, 40, 0.97);
  padding: 12px 0;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.logo-line {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}

.logo-sub {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.18em;
  font-family: var(--font-sans);
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links li a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 4px 0;
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links li a:hover { color: var(--white); }
.nav-links li a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-deep) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  /*
   * TO ADD YOUR OWN HERO PHOTO:
   * background-image: url('../images/hero-bg.jpg');
   * background-size: cover;
   * background-position: center;
   */
  background:
    radial-gradient(ellipse at 25% 60%, rgba(0, 100, 200, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 40%, rgba(0, 60, 140, 0.14) 0%, transparent 50%),
    linear-gradient(150deg, #0d1f3c 0%, #0a1628 40%, #071120 100%);
}

/* Subtle texture overlay */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(201,168,76,0.025) 79px,
      rgba(201,168,76,0.025) 80px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(201,168,76,0.025) 79px,
      rgba(201,168,76,0.025) 80px
    );
  pointer-events: none;
}

.hero-overlay {
  display: none; /* enable if using a background image */
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.72);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 120px 24px 60px;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s ease forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s ease forwards;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  color: var(--gold-light);
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s ease forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s ease forwards;
}

.hero-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.06);
  border-top: 1px solid rgba(201,168,76,0.15);
  backdrop-filter: blur(4px);
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-meta-item svg { color: var(--gold); flex-shrink: 0; }
.hero-meta-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.15); }

.hero-scroll-indicator {
  position: absolute;
  bottom: 80px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================================
   ABOUT / FEATURES
   ============================================================ */
#about {
  padding: var(--section-pad) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10, 22, 40, 0.12);
  border-color: rgba(201, 168, 76, 0.3);
}

.feature-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--gold-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background var(--transition);
}
.feature-card:hover .feature-icon-wrap {
  background: rgba(201, 168, 76, 0.2);
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.92rem;
  color: #5a6a80;
  line-height: 1.75;
}

/* ============================================================
   MENU
   ============================================================ */
#menu {
  padding: var(--section-pad) 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.menu-category {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
}

.menu-cat-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-cat-icon {
  font-size: 0.7rem;
  color: var(--gold);
}

.menu-list li {
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition), padding-left var(--transition);
}
.menu-list li:last-child { border-bottom: none; }
.menu-list li:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

.badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold-subtle);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  padding: 2px 7px;
  vertical-align: middle;
  margin-left: 6px;
}

.menu-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================================
   PRICING
   ============================================================ */
#pricing {
  padding: var(--section-pad) 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10,22,40,0.12);
}

.pricing-card.featured {
  background: var(--navy-deep);
  border: 2px solid var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(10,22,40,0.3);
}
.pricing-card.featured:hover { transform: translateY(-12px); }

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-tag {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 6px;
}
.pricing-card.featured .pricing-tag { color: var(--gold); }

.pricing-days {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 2px;
}
.pricing-card.featured .pricing-days { color: var(--text-muted); }

.pricing-time {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 28px;
}

.pricing-amount {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  margin-bottom: 4px;
}

.price-dollar {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-top: 8px;
  margin-right: 2px;
}
.pricing-card.featured .price-dollar { color: var(--gold); }

.price-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1;
}
.pricing-card.featured .price-number { color: var(--white); }

.price-cents {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-top: 8px;
}
.pricing-card.featured .price-cents { color: var(--gold); }

.pricing-sub {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 20px;
}

.pricing-detail {
  font-size: 0.85rem;
  color: #64748b;
  padding: 10px 0;
  border-top: 1px solid rgba(10,22,40,0.08);
}
.pricing-card.featured .pricing-detail {
  color: var(--text-muted);
  border-color: rgba(255,255,255,0.1);
}

.pricing-highlight {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 8px;
}

.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
}

/* ============================================================
   PARTY TRAYS
   ============================================================ */
#party-trays {
  padding: var(--section-pad) 0;
}

.party-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.party-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin: 10px 0 16px;
}

.party-desc {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 1rem;
  line-height: 1.8;
}

.party-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.party-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.party-feature-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}

.party-feature h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.party-feature p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.party-visual {
  position: relative;
}

.party-visual-inner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--navy-border);
  aspect-ratio: 4/3;
}

.party-visual-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.party-placeholder {
  width: 100%;
  height: 100%;
  background: var(--navy-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  min-height: 320px;
  border: 2px dashed rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
}
.party-placeholder small {
  font-size: 0.75rem;
  color: var(--gold);
  opacity: 0.6;
  font-family: monospace;
}

/* ============================================================
   COUPONS
   ============================================================ */
#coupons {
  padding: var(--section-pad) 0;
}

.coupon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
}

.coupon-card {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 16px rgba(10,22,40,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.coupon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10,22,40,0.14);
}

.coupon-left {
  background: var(--navy-deep);
  color: var(--white);
  padding: 32px 28px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.coupon-tag-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.coupon-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
}
.coupon-value span {
  color: var(--gold);
  display: block;
}

.coupon-left p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* The notch effect */
.coupon-holes {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  position: relative;
  width: 0;
}
.coupon-holes::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(10,22,40,0.08) 0,
    rgba(10,22,40,0.08) 6px,
    transparent 6px,
    transparent 12px
  );
}
.hole {
  width: 20px;
  height: 20px;
  background: var(--off-white);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  margin: -10px -10px;
}
.hole.top { margin-top: -10px; }
.hole.bottom { margin-bottom: -10px; }

.coupon-right {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.coupon-validity {
  font-weight: 600;
  color: var(--navy-deep);
  font-size: 0.9rem;
}

.coupon-terms {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.6;
}

.coupon-expiry {
  font-size: 0.78rem;
  font-weight: 700;
  color: #c0392b;
  letter-spacing: 0.03em;
}
.coupon-expiry::before {
  content: '⚠ ';
}

.coupon-disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: #64748b;
  font-style: italic;
}

/* ============================================================
   HOURS & LOCATION
   ============================================================ */
#location {
  padding: var(--section-pad) 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.hours-card,
.map-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}

.hours-card h3,
.map-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 28px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
}

.hours-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}
.hours-table tr:last-child { border-bottom: none; }
.hours-table tr.today { background: rgba(201,168,76,0.08); }
.hours-table tr.today .day-name { color: var(--gold); font-weight: 600; }
.hours-table tr.day-closed .day-name,
.hours-table tr.day-closed .day-hours { color: #4a5568; opacity: 0.5; }
.hours-table tr.day-closed .day-hours { font-style: italic; }

.day-name {
  padding: 12px 0;
  font-size: 0.9rem;
  color: var(--text-light);
  width: 50%;
}
.day-hours {
  padding: 12px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: right;
}

.hours-note {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hours-note-item {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-left: 12px;
  position: relative;
}
.hours-note-item::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.6;
}

.address-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.map-embed-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--navy-border);
}

.map-embed-wrap iframe {
  display: block;
  filter: grayscale(30%) contrast(1.05);
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  padding: var(--section-pad) 0;
}

.reservation-notice {
  background: rgba(10, 22, 40, 0.06);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 16px 20px;
  margin-bottom: 48px;
}

.reservation-notice p {
  margin: 0;
  color: var(--navy-mid);
  font-size: 0.95rem;
  line-height: 1.6;
}

.reservation-notice p + p {
  margin-top: 6px;
}

.reservation-notice strong {
  color: var(--gold);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--gold-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.2);
}

.contact-item h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-item a,
.contact-item p {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.6;
}
.contact-item a:hover { color: var(--gold); }

.contact-hours-summary {
  background: var(--gold-subtle);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.contact-hours-summary h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-hours-summary p {
  font-size: 0.88rem;
  color: #4a5568;
  line-height: 1.7;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #374151;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid #d1d5db;
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--navy-deep);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 14px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  color: #92660a;
  font-weight: 500;
  font-size: 0.9rem;
}
.form-success.show { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--navy-border);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--navy-border);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.footer-logo span { color: var(--gold); }

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 280px;
}

.footer-links h4,
.footer-contact-col h4,
.footer-hours-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links li a:hover { color: var(--gold-light); }

.footer-contact-col p,
.footer-contact-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: block;
  line-height: 1.75;
  transition: color var(--transition);
}
.footer-contact-col a:hover { color: var(--gold-light); }

.footer-hours-col p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 4px;
}
.footer-hours-detail {
  font-size: 0.8rem !important;
  color: var(--text-muted) !important;
  margin-bottom: 2px !important;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 0.9; transform: scaleY(1.2); }
}

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

/* Tablet: 1024px */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  .features-grid,
  .menu-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured { transform: translateY(0); }

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

  .contact-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
  }
}

/* Mobile: 768px */
@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  /* Nav */
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(16px);
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
  }

  /* Hero */
  .hero-meta { display: none; }
  .hero-scroll-indicator { display: none; }

  /* Sections */
  .features-grid { grid-template-columns: 1fr; gap: 20px; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .party-grid { grid-template-columns: 1fr; gap: 40px; }
  .party-visual { order: -1; }
  .coupon-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Small mobile: 480px */
@media (max-width: 480px) {
  .menu-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .coupon-card { flex-direction: column; }
  .coupon-holes { display: none; }
  .coupon-right { border-top: 1px dashed rgba(10,22,40,0.15); }

  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 280px; }
}

/* ============================================================
   COUPON PRINT BUTTON
   ============================================================ */
.coupon-print-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}

.coupon-print-hint {
  font-size: 0.8rem;
  color: #94a3b8;
  font-style: italic;
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  @page {
    size: Letter;
    margin: 0.55in;
  }

  /* Explicitly hide every section except coupons */
  #navbar,
  #hero,
  #about,
  #menu,
  #pricing,
  #party-trays,
  #location,
  #contact,
  footer {
    display: none !important;
  }

  /* Coupons section */
  #coupons {
    background: #fff !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  #coupons > .container {
    max-width: 100% !important;
    padding: 0 !important;
  }

  /* Print header */
  #coupons > .container::before {
    content: 'Seaside Buffet — Coupons & Special Offers';
    display: block !important;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 18pt;
    font-weight: bold;
    text-align: center;
    color: #0a1628;
    border-bottom: 2px solid #c9a84c;
    padding-bottom: 10pt;
    margin-bottom: 28pt;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  /* Reset reveal animation state so coupons aren't invisible */
  #coupons .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Hide elements inside coupons we don't want printed */
  .section-header,
  .coupon-disclaimer,
  .coupon-print-wrap {
    display: none !important;
  }

  /* Coupon grid: two per row, extra margin so scissors sit outside */
  .coupon-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20pt !important;
    margin: 0 !important;
    padding: 10pt !important; /* room for scissors at outer edges */
  }

  /* Coupon card — dashed cut border, overflow visible so scissors stick out */
  .coupon-card {
    display: flex !important;
    flex-direction: row !important;
    position: relative !important;
    border: 1.5px dashed #888 !important;
    border-radius: 6pt !important;
    overflow: visible !important;
    break-inside: avoid !important;
    page-break-inside: avoid !important;
    box-shadow: none !important;
    margin: 10pt !important; /* breathing room outside the dashed border */
  }

  /* Scissors top-left: points right along the top cut line */
  .coupon-card::before {
    content: '✂' !important;
    position: absolute !important;
    top: -13pt !important;
    left: -8pt !important;
    font-size: 13pt !important;
    color: #555 !important;
    line-height: 1 !important;
    /* ✂ naturally points right — sits at the start of the top dashed line */
  }

  /* Scissors bottom-right: rotated 180° to point left along the bottom cut line */
  .coupon-card::after {
    content: '✂' !important;
    position: absolute !important;
    bottom: -13pt !important;
    right: -8pt !important;
    font-size: 13pt !important;
    color: #555 !important;
    line-height: 1 !important;
    transform: rotate(180deg) !important;
  }

  /* Left panel */
  .coupon-left {
    background: #0a1628 !important;
    color: #fff !important;
    padding: 10pt 14pt !important;
    min-width: 120pt !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 4pt !important;
    border-radius: 4pt 0 0 4pt !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  .coupon-tag-label {
    font-size: 6.5pt !important;
    letter-spacing: 0.15em !important;
    color: #c9a84c !important;
    font-weight: bold !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  .coupon-value {
    font-size: 14pt !important;
    font-weight: bold !important;
    color: #fff !important;
    line-height: 1.1 !important;
  }

  .coupon-value span {
    color: #c9a84c !important;
    display: block !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  .coupon-left p {
    font-size: 7.5pt !important;
    color: #ccc !important;
  }

  /* Internal dashed divider between left and right panels */
  .coupon-holes {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 0 !important;
    position: relative !important;
    overflow: visible !important;
  }

  .coupon-holes::before {
    content: '' !important;
    position: absolute !important;
    left: -1px !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 0 !important;
    border-left: 1.5px dashed #bbb !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  .hole {
    display: none !important;
  }

  /* Right panel */
  .coupon-right {
    padding: 10pt 14pt !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 5pt !important;
    flex: 1 !important;
    background: #fff !important;
  }

  .coupon-validity {
    font-size: 8.5pt !important;
    font-weight: bold !important;
    color: #0a1628 !important;
  }

  .coupon-terms {
    font-size: 7pt !important;
    color: #444 !important;
    line-height: 1.5 !important;
  }

  .coupon-expiry {
    font-size: 7.5pt !important;
    font-weight: 700 !important;
    color: #c0392b !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
}
