/* ================================================
   PELICAN & THE SHARK — style.css
   Aesthetic: Blazing Gulf Sunset · Neon Beach Party
   Palette: Warm golden sky, hot pink horizon, bright
   teal water — light and vivid throughout
   ================================================ */

:root {
  /* Sky & sunset — these dominate large backgrounds */
  --sky-top:     #1a0533;   /* deep purple at zenith */
  --sky-mid:     #8b1a6b;   /* magenta band */
  --sky-hor:     #e8472a;   /* red-orange at horizon */
  --sky-gold:    #ffad00;   /* golden glow */
  --sky-yellow:  #ffe566;   /* bright gold near horizon */

  /* Gulf water tones */
  --gulf-top:    #005a8e;
  --gulf-mid:    #0094c6;
  --gulf-light:  #38d6f5;
  --gulf-foam:   #c8f5ff;

  /* Neon accents */
  --neon-pink:   #ff2d78;
  --neon-cyan:   #00e8ff;
  --neon-yellow: #ffe600;
  --neon-green:  #39ff14;
  --neon-orange: #ff6600;

  /* Light surface tones for cards/sections */
  --surf-light:  rgba(255,255,255,0.18);
  --surf-mid:    rgba(255,255,255,0.12);
  --surf-dark:   rgba(0,0,0,0.18);
  --border-warm: rgba(255,180,0,0.35);
  --border-cool: rgba(0,232,255,0.35);

  --white: #ffffff;
  --ink:   #1a0a2e;
  --muted-light: rgba(255,255,255,0.82);
  --muted-dark:  rgba(30,10,60,0.75);

  --font-title:  'Boogaloo', cursive;
  --font-marker: 'Permanent Marker', cursive;
  --font-body:   'Nunito', sans-serif;

  --radius:    8px;
  --radius-lg: 18px;
  --radius-xl: 26px;

  --glow-pink:   0 0 20px rgba(255,45,120,0.7),  0 0 50px rgba(255,45,120,0.3);
  --glow-cyan:   0 0 20px rgba(0,232,255,0.7),   0 0 50px rgba(0,232,255,0.25);
  --glow-gold:   0 0 20px rgba(255,200,0,0.8),   0 0 50px rgba(255,200,0,0.3);
  --glow-orange: 0 0 20px rgba(255,102,0,0.7),   0 0 50px rgba(255,102,0,0.3);

  --nav-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--sky-top);
  color: var(--white);
  font-size: 16.5px;
  line-height: 1.72;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
img { max-width: 100%; display: block; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 96px 0; }

/* ── TYPOGRAPHY ── */
.label {
  display: block;
  font-size: 0.73rem; font-weight: 800;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--neon-cyan);
  text-shadow: 0 0 12px rgba(0,232,255,0.8);
  margin-bottom: 0.65rem;
}
h2 {
  font-family: var(--font-title);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 400; line-height: 1.08;
  color: var(--white); margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
h2 em { font-style: italic; color: var(--neon-pink); text-shadow: var(--glow-pink); }
h3 { font-family: var(--font-title); font-size: 1.55rem; }
p { color: var(--muted-light); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.88rem 2.1rem; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: all 0.25s ease; border: none;
}
.btn-neon {
  background: linear-gradient(135deg, var(--neon-pink) 0%, #ff6a00 100%);
  color: var(--white); box-shadow: var(--glow-pink);
}
.btn-neon:hover { filter: brightness(1.12); transform: translateY(-2px); box-shadow: 0 0 36px rgba(255,45,120,0.9), 0 0 70px rgba(255,45,120,0.35); }
.btn-outline {
  background: rgba(255,255,255,0.15); color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);
}
.btn-outline:hover { background: rgba(255,255,255,0.28); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; z-index: 200;
  transition: background 0.35s, box-shadow 0.35s;
}
.nav.scrolled {
  background: rgba(26,5,51,0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255,180,0,0.2), 0 4px 24px rgba(0,0,0,0.4);
}
.nav-logo img {
  height: 50px; width: auto; object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.nav-links { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(255,255,255,0.9); transition: color 0.2s; position: relative;
}
.nav-links a:hover { color: var(--neon-yellow); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px; background: var(--neon-yellow); transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-orange)) !important;
  color: white !important; padding: 0.45rem 1.1rem;
  border-radius: var(--radius); box-shadow: var(--glow-pink);
}
.nav-cta::after { display: none !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  /* Vivid layered sunset — purple sky → hot pink → orange → gold → bright teal gulf */
  background: linear-gradient(180deg,
    #1a0533  0%,
    #3d0b6e  8%,
    #8b1a6b 18%,
    #c92060 28%,
    #e8472a 40%,
    #f77f00 52%,
    #ffcc00 62%,
    #ffe566 68%,
    #38d6f5 76%,
    #0094c6 86%,
    #005a8e 100%
  );
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }

/* Sun disc */
.hero-bg::before {
  content: '';
  position: absolute;
  bottom: 30%; left: 50%; transform: translateX(-50%);
  width: 260px; height: 260px;
  background: radial-gradient(circle, #fff8c0 0%, #ffe566 20%, #ffaa00 45%, rgba(255,100,0,0.4) 65%, transparent 80%);
  border-radius: 50%; opacity: 1; filter: blur(4px);
  animation: sunPulse 4s ease-in-out infinite;
  box-shadow: 0 0 80px 30px rgba(255,180,0,0.5), 0 0 160px 60px rgba(255,100,0,0.2);
}
@keyframes sunPulse {
  0%,100% { transform: translateX(-50%) scale(1); opacity: 0.95; }
  50%      { transform: translateX(-50%) scale(1.05); opacity: 1; }
}

/* Sun reflection on water */
.hero-bg::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 220px; height: 30%;
  background: linear-gradient(to bottom, rgba(255,210,0,0.5), rgba(255,150,0,0.2), transparent);
  clip-path: polygon(38% 0, 62% 0, 78% 100%, 22% 100%);
}

/* Glow blobs */
.bubble { position: absolute; border-radius: 50%; filter: blur(100px); animation: bubbleDrift 14s ease-in-out infinite; }
.b1 { width: 700px; height: 700px; background: rgba(200,30,100,0.35); top: -200px; left: -250px; opacity: 0.5; animation-delay: 0s; }
.b2 { width: 500px; height: 500px; background: rgba(255,120,0,0.3);  top: 5%; right: -150px; opacity: 0.45; animation-delay: -5s; }
.b3 { width: 400px; height: 400px; background: rgba(0,180,230,0.35); bottom: 5%; right: 5%; opacity: 0.4; animation-delay: -9s; }
@keyframes bubbleDrift {
  0%,100% { transform: translate(0,0) scale(1); }
  40%     { transform: translate(20px,-20px) scale(1.05); }
  70%     { transform: translate(-15px,15px) scale(0.97); }
}

/* Gulf waves */
.wave-wrap { position: absolute; bottom: 0; left: 0; right: 0; height: 220px; }
.hw { position: absolute; bottom: 0; left: 0; width: 200%; border-radius: 50%; }
.hw1 { height: 100%; background: rgba(0,148,198,0.25); animation: waveRoll 8s linear infinite; }
.hw2 { height: 75%;  background: rgba(56,214,245,0.18); animation: waveRoll 12s linear infinite reverse; }
.hw3 { height: 50%;  background: rgba(0,60,100,0.45);   animation: waveRoll 6s linear infinite; }
@keyframes waveRoll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Neon horizon line */
.hero::after {
  content: ''; position: absolute; bottom: 30%; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 5%, rgba(255,230,100,0.9) 30%, #fff 50%, rgba(255,230,100,0.9) 70%, transparent 95%);
  box-shadow: 0 0 30px 6px rgba(255,210,0,0.7);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 820px; padding: 0 2rem; padding-top: var(--nav-h);
  animation: fadeUp 1s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(36px); } to { opacity: 1; transform: translateY(0); } }

.hero-logo {
  max-width: 340px; width: 78%; margin: 0 auto 0.5rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 0 3px rgba(255,255,255,0.15);
  animation: fadeUp 1s 0.1s both cubic-bezier(0.22,1,0.36,1);
}
.hero-tagline {
  font-size: 0.73rem; font-weight: 800; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--neon-yellow); text-shadow: var(--glow-gold);
  margin-bottom: 0.75rem;
  animation: fadeUp 1s 0.2s both cubic-bezier(0.22,1,0.36,1);
}
.hero-title {
  font-family: var(--font-title);
  font-size: clamp(3.8rem, 10vw, 7.5rem);
  font-weight: 400; line-height: 1; color: var(--white); margin-bottom: 1rem;
  text-shadow: 0 0 60px rgba(255,100,0,0.4), 0 3px 0 rgba(0,0,0,0.35);
  animation: fadeUp 1s 0.3s both cubic-bezier(0.22,1,0.36,1);
}
.hero-title em { color: var(--neon-yellow); font-style: normal; text-shadow: var(--glow-gold); }
.hero-sub {
  font-size: 1.12rem; color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  margin-bottom: 1.5rem;
  animation: fadeUp 1s 0.4s both cubic-bezier(0.22,1,0.36,1);
}
.hero-pills {
  display: flex; flex-wrap: wrap; gap: 0.55rem;
  justify-content: center; margin-bottom: 2.2rem;
  animation: fadeUp 1s 0.5s both cubic-bezier(0.22,1,0.36,1);
}
.hero-pills span {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white); font-weight: 800;
  padding: 0.4rem 0.95rem; border-radius: 100px; font-size: 0.8rem;
  backdrop-filter: blur(6px);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 1s 0.6s both cubic-bezier(0.22,1,0.36,1);
}
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: rgba(255,230,100,0.7); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  animation: fadeUp 1.5s 0.9s both cubic-bezier(0.22,1,0.36,1);
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,220,80,0.7), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }

/* ── ABOUT ── */
/* Warm sunset-to-dusk gradient — still bright and colourful */
.about {
  background: linear-gradient(160deg, #2d0a55 0%, #7b1fa2 25%, #c2185b 55%, #e64a19 80%, #f57c00 100%);
  position: relative; overflow: hidden;
}
/* Retro grid overlay */
.about::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 48px 48px; pointer-events: none;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 4rem; align-items: center; position: relative;
}
.about-chars {
  position: relative; display: flex; align-items: flex-end; justify-content: center;
}
.char-img {
  width: 50%; object-fit: contain; transition: transform 0.4s ease;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 0 2px rgba(255,255,255,0.15);
}
.pelican-img { transform: rotate(-5deg) translateY(10px); }
.shark-img   { transform: rotate(5deg)  translateY(10px); margin-left: -24px; }
.char-img:hover { transform: scale(1.08) rotate(0deg) translateY(0) !important; z-index: 2; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-perks {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.6rem; margin: 1.5rem 0 2rem;
}
.about-perks li {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.95rem; color: rgba(255,255,255,0.92); font-weight: 700;
}
.rating-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 1.1rem 2rem; text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.rating-stars { font-size: 1.4rem; color: var(--neon-yellow); letter-spacing: 0.05em; text-shadow: var(--glow-gold); }
.rating-score { font-family: var(--font-title); font-size: 2.8rem; line-height: 1.1; color: var(--white); }
.rating-sub { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.85); }

/* ── MENU ── */
/* Bright teal gulf water gradient */
.menu {
  background: linear-gradient(160deg, #005a8e 0%, #0094c6 35%, #00b8d9 60%, #38d6f5 80%, #7ee8ff 100%);
  position: relative; overflow: hidden;
}
.menu::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 12px);
  pointer-events: none;
}
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 { color: var(--white); text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.seasonal-note {
  color: var(--neon-yellow) !important; font-size: 0.95rem; font-weight: 800;
  margin-top: 0.5rem; text-shadow: 0 0 12px rgba(255,220,0,0.6);
}
.menu-tabs { display: flex; gap: 1rem; justify-content: center; margin-bottom: 3rem; }
.tab-btn {
  padding: 0.78rem 2.2rem; border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.15); color: var(--white);
  font-family: var(--font-body); font-size: 0.92rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
  backdrop-filter: blur(6px); transition: all 0.25s;
}
.tab-btn.active, .tab-btn:hover {
  background: rgba(255,255,255,0.35); border-color: var(--white);
  color: var(--ink); box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.menu-categories { display: flex; flex-direction: column; gap: 3rem; }
.menu-category-title {
  font-family: var(--font-title); font-size: 2rem;
  color: var(--white); text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.35);
  padding-bottom: 0.5rem; margin-bottom: 1.25rem;
}
.menu-items-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px,1fr)); gap: 1rem; }
.menu-item {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-lg); padding: 1.25rem 1.5rem;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.menu-item:hover {
  background: rgba(255,255,255,0.28);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.2);
}
.menu-item-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.35rem; }
.menu-item-name { font-size: 1rem; font-weight: 800; color: var(--white); line-height: 1.3; text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.menu-item-price { font-family: var(--font-title); font-size: 1.25rem; color: var(--neon-yellow); text-shadow: var(--glow-gold); white-space: nowrap; flex-shrink: 0; }
.menu-item-desc { font-size: 0.84rem; color: rgba(255,255,255,0.78); line-height: 1.5; margin: 0; }
.seasonal-badge {
  position: absolute; top: -1px; right: 14px;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-orange));
  color: white; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 2px 9px; border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 10px rgba(255,45,120,0.5);
}

/* ── SPECIALS ── */
/* Rich magenta-to-orange sunset band */
.specials {
  background: linear-gradient(135deg, #8b1a6b 0%, #c2185b 30%, #e64a19 60%, #f77f00 85%, #ffad00 100%);
  position: relative; overflow: hidden;
}
.specials::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,0.07) 3px, rgba(0,0,0,0.07) 4px);
  pointer-events: none;
}
.specials .section-header h2 { color: var(--white); }
.specials-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
  gap: 1.25rem; margin-top: 1rem; position: relative;
}
.special-card {
  background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-lg); padding: 1.6rem; text-align: center;
  backdrop-filter: blur(8px); transition: all 0.3s ease;
}
.special-card:hover {
  transform: translateY(-5px) scale(1.03);
  background: rgba(255,255,255,0.3);
  border-color: var(--white);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.special-day { font-family: var(--font-title); font-size: 1.65rem; color: var(--white); margin-bottom: 0.5rem; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.special-deal { font-size: 0.92rem; color: rgba(255,255,255,0.9); font-weight: 700; line-height: 1.6; }

/* ── DIRECTIONS ── */
/* Dusk purple-to-deep-blue */
.directions {
  background: linear-gradient(160deg, #1a0533 0%, #3d0b6e 30%, #005a8e 70%, #003d6b 100%);
}
.directions-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: start; }
.directions-info h2 { margin-bottom: 2rem; }
.addr-line { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; font-size: 0.96rem; color: rgba(255,255,255,0.82); line-height: 1.6; }
.addr-line svg { flex-shrink: 0; margin-top: 3px; color: var(--neon-cyan); }
.addr-line a { color: var(--neon-cyan); }
.addr-line a:hover { text-decoration: underline; }
.directions-steps { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.15); }
.directions-steps h3 { font-family: var(--font-body); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--neon-cyan); margin-bottom: 1rem; }
.directions-steps ol { padding-left: 1.25rem; margin-bottom: 2rem; }
.directions-steps li { font-size: 0.91rem; color: rgba(255,255,255,0.78); margin-bottom: 0.65rem; }
.map-wrap {
  border-radius: var(--radius-lg); overflow: hidden; height: 480px;
  border: 2px solid rgba(0,232,255,0.4);
  box-shadow: var(--glow-cyan);
}

/* ── CONTACT ── */
/* Warm sunset orange-to-pink */
.contact {
  background: linear-gradient(160deg, #f77f00 0%, #e64a19 30%, #c2185b 60%, #8b1a6b 85%, #3d0b6e 100%);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.contact-text h2 { margin-bottom: 1.25rem; }
.event-types { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0; }
.event-card {
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-lg); padding: 1.25rem;
  display: flex; gap: 1rem; align-items: flex-start;
  backdrop-filter: blur(8px); transition: background 0.25s;
}
.event-card:hover { background: rgba(255,255,255,0.25); }
.event-icon { font-size: 2rem; flex-shrink: 0; }
.event-card h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 800; color: var(--neon-yellow); text-shadow: var(--glow-gold); margin-bottom: 0.25rem; }
.event-card p { font-size: 0.86rem; margin: 0; color: rgba(255,255,255,0.85); }
.social-links { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.social-link { display: flex; align-items: center; gap: 0.75rem; font-size: 0.92rem; font-weight: 700; color: rgba(255,255,255,0.82); transition: color 0.2s; }
.social-link:hover { color: var(--neon-yellow); }
.social-link svg { color: var(--neon-yellow); }

/* Contact form */
.contact-form-wrap {
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-lg); padding: 2.5rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 50px rgba(0,0,0,0.25);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-group { margin-bottom: 1.15rem; }
.field-group label { display: block; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--neon-yellow); text-shadow: var(--glow-gold); margin-bottom: 0.4rem; }
.field-group input,
.field-group select,
.field-group textarea {
  width: 100%; background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4); border-radius: var(--radius);
  padding: 0.72rem 0.95rem; font-family: var(--font-body); font-size: 0.93rem;
  color: var(--white); outline: none; appearance: none;
  transition: border-color 0.22s, box-shadow 0.22s;
}
.field-group input::placeholder, .field-group textarea::placeholder { color: rgba(255,255,255,0.5); }
.field-group input:focus, .field-group select:focus, .field-group textarea:focus {
  border-color: var(--white); box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.28);
}
.field-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23fff'%3E%3Cpath d='M5 7l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 16px; padding-right: 2.5rem;
}
.field-group select option { background: #3d0b6e; color: var(--white); }
.field-group textarea { resize: vertical; min-height: 120px; }
.field-err { display: block; font-size: 0.73rem; color: var(--neon-yellow); margin-top: 0.3rem; min-height: 1em; }
.field-group.error input, .field-group.error textarea { border-color: var(--neon-yellow); }
.form-success {
  display: none; align-items: center; gap: 0.5rem; margin-top: 1rem;
  background: rgba(57,255,20,0.15); border: 1px solid var(--neon-green);
  border-radius: var(--radius); padding: 0.85rem 1rem;
  color: var(--white); font-size: 0.9rem; font-weight: 700;
}
.form-success.visible { display: flex; }

/* ── FOOTER ── */
.footer {
  background: linear-gradient(180deg, #1a0533 0%, #08020f 100%);
  position: relative; padding: 4rem 0 2.5rem;
}
.footer-wave-top {
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg,
    var(--neon-pink), var(--neon-orange), var(--neon-yellow),
    var(--neon-green), var(--neon-cyan), var(--neon-pink));
  background-size: 300% 100%;
  animation: rainbowSlide 5s linear infinite;
  box-shadow: 0 2px 20px rgba(255,45,120,0.6);
}
@keyframes rainbowSlide { 0% { background-position: 0% 50%; } 100% { background-position: 300% 50%; } }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 3rem; align-items: start; }
.footer-logo-img {
  height: 90px; width: auto; margin-bottom: 1rem;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 0.2rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); transition: color 0.22s; }
.footer-links a:hover { color: var(--neon-yellow); }
.footer-copy { text-align: right; }
.footer-copy p { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin-bottom: 0.25rem; }
.footer-copy p:first-child { font-family: var(--font-title); font-size: 1.05rem; color: rgba(255,255,255,0.55); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="100"] { transition-delay: 0.1s; }
.reveal[data-delay="200"] { transition-delay: 0.2s; }
.reveal[data-delay="300"] { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .about-grid, .directions-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-chars { order: -1; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-logo-img { margin: 0 auto 1rem; }
  .footer-copy { text-align: center; }
  .map-wrap { height: 360px; }
}
@media (max-width: 640px) {
  .nav { padding: 0 1.25rem; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(26,5,51,0.98); flex-direction: column;
    padding: 1.5rem 1rem; gap: 0;
    transform: translateY(-110%);
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
    border-bottom: 1px solid rgba(255,180,0,0.2);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.85rem 0.5rem; font-size: 1rem; }
  .nav-toggle { display: flex; }
  .section { padding: 65px 0; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-pills span { font-size: 0.72rem; padding: 0.3rem 0.7rem; }
  .field-row { grid-template-columns: 1fr; }
  .about-perks { grid-template-columns: 1fr; }
  .specials-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 1.5rem; }
}
@media (max-width: 400px) { .specials-grid { grid-template-columns: 1fr; } }
