/* ============================================================
   KAHUNA'S RESTAURANT — MAIN STYLESHEET
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Nunito:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ===== CSS Custom Properties ===== */
:root {
  --ocean:        #3BBCE3;
  --ocean-light:  #7DD4EE;
  --deep:         #0D7EA0;
  --deeper:       #074f6e;
  --darkest:      #052c3f;
  --gold:         #F5C517;
  --gold-dark:    #c9a200;
  --coral:        #FF6B35;
  --coral-dark:   #e05527;
  --sand:         #FFF5E4;
  --sand-mid:     #f0e6cc;
  --sand-dark:    #e8d9b8;
  --dark:         #1E1208;
  --text:         #2d2010;
  --text-mid:     #5a4030;
  --text-light:   #8a7060;
  --white:        #ffffff;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow:     0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.18);
  --shadow-xl:  0 20px 60px rgba(0,0,0,0.25);

  --radius:     16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--sand);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb { background: var(--ocean); border-radius: 4px; }

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--deep);
  margin-bottom: 14px;
  padding: 6px 18px;
  background: rgba(59,188,227,0.12);
  border-radius: 50px;
  border: 1px solid rgba(59,188,227,0.3);
}

.section-title {
  font-family: 'Pacifico', cursive;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto;
}

.section-header.light .section-title    { color: var(--white); }
.section-header.light .section-sub      { color: rgba(255,255,255,0.75); }
.section-header.light .section-eyebrow  {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: var(--gold);
}

/* ===== Buttons ===== */
.btn-order {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral);
  color: var(--white);
  padding: 14px 34px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 18px rgba(255,107,53,0.4);
}
.btn-order:hover {
  background: var(--coral-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(255,107,53,0.5);
}

.btn-order-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--coral);
  color: var(--white);
  padding: 20px 52px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 6px 28px rgba(255,107,53,0.5);
}
.btn-order-lg:hover {
  background: var(--coral-dark);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(255,107,53,0.6);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--deep);
  padding: 13px 30px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--deep);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-secondary:hover {
  background: var(--deep);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-secondary-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ===== Floating Order Button ===== */
.float-order {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  background: var(--coral);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 6px 28px rgba(255,107,53,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  animation: floatPulse 3s ease-in-out infinite;
}
.float-order:hover {
  background: var(--coral-dark);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(255,107,53,0.6);
  animation: none;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  padding: 12px 0;
}
.nav.scrolled .nav-logo    { color: var(--darkest); text-shadow: none; }
.nav.scrolled .nav-link    { color: var(--text); }
.nav.scrolled .nav-link:hover,
.nav.scrolled .nav-link.active { color: var(--deep); background: rgba(59,188,227,0.1); }
.nav.scrolled .nav-toggle  { color: var(--dark); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  font-family: 'Pacifico', cursive;
  font-size: 1.7rem;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
  flex-shrink: 0;
  transition: color var(--transition);
}

.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  padding: 8px 18px;
  border-radius: 50px;
  transition: all var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.18);
}

.nav-order {
  flex-shrink: 0;
  padding: 10px 26px;
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  transition: color var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(168deg,
    var(--darkest)  0%,
    var(--deeper)   28%,
    var(--deep)     62%,
    var(--ocean)    100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

/* Glow orb */
.hero::before {
  content: '';
  position: absolute;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(59,188,227,0.22) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: orbPulse 5s ease-in-out infinite;
}

/* Dot-grid texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  opacity: 0.3;
  animation: floatParticle var(--dur, 8s) ease-in-out infinite;
  animation-delay: var(--del, 0s);
}
.p1 { font-size: 2.8rem; top: 12%; left: 7%;  --dur: 7s;  --del: 0s; }
.p2 { font-size: 1.8rem; top: 72%; left: 5%;  --dur: 9s;  --del: 1s; }
.p3 { font-size: 2.4rem; top: 18%; right: 8%; --dur: 6s;  --del: 2s; }
.p4 { font-size: 2rem;   top: 68%; right: 6%; --dur: 8s;  --del: 0.5s; }
.p5 { font-size: 1.6rem; top: 42%; left: 3%;  --dur: 7.5s;--del: 3s; }
.p6 { font-size: 1.6rem; top: 35%; right: 3%; --dur: 10s; --del: 1.5s; }
.p7 { font-size: 1.4rem; top: 55%; left: 15%; --dur: 6.5s;--del: 0.8s; }
.p8 { font-size: 1.4rem; top: 25%; right: 18%;--dur: 9.5s;--del: 2.5s; }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 130px 24px 100px;
  max-width: 820px;
}

.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.hero-title {
  font-family: 'Pacifico', cursive;
  font-size: clamp(4.5rem, 14vw, 10rem);
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 16px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.5s;
}

.hero-tagline {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.2rem, 3.5vw, 2rem);
  color: var(--gold);
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.7s;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 44px;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.9s;
}

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

.hero-scroll {
  display: block;
  margin-top: 48px;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color var(--transition);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.3s;
}
.hero-scroll:hover { color: rgba(255,255,255,0.9); }

.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 90px; }

/* Beach background overlay */
.hero-beach-bg {
  position: absolute;
  inset: 0;
  background: url('/photos/beach.png') center bottom / cover no-repeat;
  opacity: 0.10;
  z-index: 0;
  pointer-events: none;
}

/* Burger photos flanking hero content */
.hero-food-left,
.hero-food-right {
  position: absolute;
  bottom: 80px;
  width: clamp(160px, 18vw, 280px);
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.35));
  opacity: 0.92;
}
.hero-food-left  { left: 0; }
.hero-food-right { right: 0; transform: scaleX(-1); }

@media (max-width: 1000px) {
  .hero-food-left, .hero-food-right { width: clamp(100px, 13vw, 180px); opacity: 0.7; }
}
@media (max-width: 700px) {
  .hero-food-left, .hero-food-right { display: none; }
}

/* ===== FEATURED ITEMS ===== */
.featured {
  background: var(--sand);
  padding: 100px 0 80px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 52px;
}

/* Item card (shared between featured and menu) */
.item-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
}
.item-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.item-card-img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: contain;
  object-position: center;
  background: #1a1a1a;
}

.item-card-placeholder {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  background: linear-gradient(135deg, var(--deeper) 0%, var(--ocean) 55%, var(--ocean-light) 100%);
}

.item-cat-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}

.item-card-body { padding: 20px 24px 26px; }

.item-card-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.item-card-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.item-card-price {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--coral);
}

.featured-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Skeleton */
.skeleton-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-height: 380px;
}
.skeleton-img {
  height: 220px;
  background: linear-gradient(90deg, #e0e8ef 25%, #eef4f8 50%, #e0e8ef 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.skeleton-body { padding: 20px 24px; }
.skeleton-line {
  height: 14px;
  border-radius: 7px;
  background: linear-gradient(90deg, #e0e8ef 25%, #eef4f8 50%, #e0e8ef 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  margin-bottom: 12px;
}
.skeleton-line.wide  { width: 70%; }
.skeleton-line.short { width: 45%; }
.skeleton-line.tiny  { width: 30%; margin-top: 8px; }

/* ===== ABOUT / TIMELINE ===== */
.about {
  background: var(--white);
  padding: 100px 0;
  overflow: hidden;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--ocean) 0%, var(--deep) 40%, var(--coral) 100%);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 64px;
  position: relative;
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.timeline-item.revealed { opacity: 1; transform: none !important; }

.timeline-left  { flex-direction: row;         transform: translateX(-50px); }
.timeline-right { flex-direction: row-reverse; transform: translateX(50px); }

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 22px;
  transform: translateX(-50%);
  width: 46px; height: 46px;
  background: var(--white);
  border: 3px solid var(--ocean);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  z-index: 2;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.timeline-item:hover .timeline-dot {
  background: var(--ocean);
  transform: translateX(-50%) scale(1.12);
}

.timeline-card {
  width: calc(50% - 52px);
  background: var(--sand);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.timeline-left  .timeline-card { margin-right: auto; border-right: 4px solid var(--ocean); }
.timeline-right .timeline-card { margin-left: auto;  border-left:  4px solid var(--coral); }
.timeline-card:hover { box-shadow: var(--shadow); transform: scale(1.02); }

.timeline-year {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--deep);
  background: rgba(59,188,227,0.15);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.timeline-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.timeline-card p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.about-order-wrap { text-align: center; margin-top: 64px; }

/* ===== VIDEO PREVIEW ===== */
.videos-preview {
  background: linear-gradient(162deg, var(--darkest) 0%, var(--deeper) 55%, var(--deep) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.videos-preview::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(59,188,227,0.18) 0%, transparent 65%);
  top: 50%; right: -80px;
  transform: translateY(-50%);
  pointer-events: none;
}

.video-wrapper { max-width: 820px; margin: 0 auto 52px; }

.video-player-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 4px rgba(59,188,227,0.25);
  aspect-ratio: 16/9;
  position: relative;
  background: var(--darkest);
}

.video-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(7,79,110,0.85), rgba(13,126,160,0.65));
  position: relative;
}
.video-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

.video-play-btn {
  width: 86px; height: 86px;
  background: rgba(255,107,53,0.88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 0 0 18px rgba(255,107,53,0.18);
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: all var(--transition);
}
.video-play-btn:hover {
  background: var(--coral);
  transform: scale(1.1);
  box-shadow: 0 0 0 24px rgba(255,107,53,0.12);
}

.video-placeholder .video-label {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.video-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--darkest);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 36px;
  position: relative;
}
.footer-wave {
  position: absolute;
  top: -1px; left: 0; right: 0;
  line-height: 0;
  transform: rotate(180deg);
}
.footer-wave svg { width: 100%; height: 60px; }

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

.footer-logo {
  font-family: 'Pacifico', cursive;
  font-size: 2.2rem;
  color: var(--white);
  display: block;
  margin-bottom: 10px;
}
.footer-tagline {
  color: var(--gold);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; font-weight: 500; transition: color var(--transition); }
.footer-links a:hover { color: var(--ocean-light); }

.footer-info p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 99px;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.social-btn:hover {
  background: var(--ocean);
  border-color: var(--ocean);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(59,188,227,0.35);
}
.social-icon { font-size: 1rem; line-height: 1; }
.social-name { font-size: 0.82rem; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(162deg, var(--darkest) 0%, var(--deeper) 55%, var(--deep) 100%);
  padding: 140px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-hero h1 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: var(--white);
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  position: relative; z-index: 1;
}
.page-hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}
.page-hero-wave svg { width: 100%; height: 60px; }

/* ===== MENU PAGE ===== */
.menu-section { padding: 80px 0 100px; background: var(--sand); }

.menu-header-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.category-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  background: var(--white);
  padding: 8px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.category-tab {
  flex: 1;
  min-width: 80px;
  padding: 11px 20px;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: var(--text-mid);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.93rem;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.category-tab:hover { background: var(--sand); color: var(--deep); }
.category-tab.active { background: var(--deep); color: var(--white); box-shadow: var(--shadow-sm); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-light);
}
.empty-state .empty-icon { font-size: 4rem; margin-bottom: 16px; }
.empty-state h3 { font-size: 1.4rem; font-weight: 800; color: var(--text-mid); margin-bottom: 8px; }

.menu-cta-band {
  margin-top: 64px;
  background: linear-gradient(135deg, var(--deeper) 0%, var(--ocean) 100%);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  color: var(--white);
}
.menu-cta-band h3 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 10px;
}
.menu-cta-band p { color: rgba(255,255,255,0.78); margin-bottom: 28px; font-size: 1.05rem; }

/* ===== VIDEOS PAGE ===== */
.videos-section { padding: 80px 0 100px; background: var(--sand); }

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
  margin-bottom: 56px;
}

.video-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.video-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-xl); }

.video-card-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--deeper), var(--ocean));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.video-thumb-play {
  width: 58px; height: 58px;
  background: rgba(255,107,53,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.video-card-body { padding: 22px 24px; }
.video-card-body h3 { font-weight: 800; font-size: 1.05rem; color: var(--dark); margin-bottom: 6px; }
.video-card-body p  { font-size: 0.9rem; color: var(--text-light); }

.videos-cta-band {
  background: linear-gradient(135deg, var(--deeper), var(--ocean));
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  color: var(--white);
}
.videos-cta-band h3 {
  font-family: 'Pacifico', cursive;
  font-size: 2rem;
  margin-bottom: 10px;
}
.videos-cta-band p { color: rgba(255,255,255,0.78); margin-bottom: 28px; }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== KEYFRAMES ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatParticle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-22px) rotate(6deg); }
  66%       { transform: translateY(-10px) rotate(-6deg); }
}
@keyframes floatPulse {
  0%, 100% { transform: translateY(0);   box-shadow: 0 6px 28px rgba(255,107,53,0.55); }
  50%       { transform: translateY(-7px); box-shadow: 0 16px 40px rgba(255,107,53,0.42); }
}
@keyframes orbPulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%,-50%) scale(1.08); }
}
@keyframes shimmer {
  0%   { background-position:  200% 0; }
  100% { background-position: -200% 0; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links .nav-link { color: var(--text); padding: 12px 16px; border-radius: 12px; }
  .nav-links .nav-link:hover,
  .nav-links .nav-link.active { background: var(--sand); color: var(--deep); }
  .nav-order { display: none; }
  .nav-toggle { display: block; }

  .timeline::before { left: 20px; }
  .timeline-item,
  .timeline-left,
  .timeline-right {
    flex-direction: column;
    padding-left: 58px;
    transform: translateY(20px) !important;
  }
  .timeline-dot { left: 20px; top: 0; }
  .timeline-card,
  .timeline-left  .timeline-card,
  .timeline-right .timeline-card {
    width: 100%;
    margin: 0;
    border-left:  4px solid var(--ocean) !important;
    border-right: none !important;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .float-order { bottom: 20px; right: 20px; padding: 12px 22px; font-size: 0.88rem; }
  .menu-cta-band, .videos-cta-band { padding: 40px 28px; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .featured-cta, .video-cta { flex-direction: column; align-items: center; }
  .category-tabs { flex-direction: column; }
  .category-tab { flex: none; }
}

/* ===== NAV LOGO IMAGE ===== */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
  transition: all var(--transition);
}
.nav.scrolled .nav-logo-img {
  filter: none;
}
.nav-logo-img:hover { transform: scale(1.04); }

/* Footer logo image */
.footer-logo-img-wrap { display: inline-block; margin-bottom: 12px; }
.footer-logo-img { height: 70px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)); }

/* ===== HERO LOGO IMAGE ===== */
.hero-logo-wrap {
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.2s;
}
.hero-logo-wrap img {
  height: clamp(100px, 20vw, 180px);
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.45));
}

/* ===== REVIEWS SECTION ===== */
.reviews {
  background: var(--sand);
  padding: 100px 0;
  position: relative;
}
.reviews-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
  margin-bottom: 0;
  flex-wrap: wrap;
}
.reviews-score {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: 50px;
  padding: 8px 20px;
  box-shadow: var(--shadow-sm);
}
.reviews-score .score-stars {
  color: #FBBC04;
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.reviews-score .score-num {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--dark);
}
.reviews-score .score-platform {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-light);
}
.reviews-badge {
  background: rgba(59,188,227,0.12);
  border: 1px solid rgba(59,188,227,0.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--deep);
  letter-spacing: 0.5px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
  border-top: 4px solid transparent;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-top-color: var(--ocean);
}
.review-quote-mark {
  font-size: 4rem;
  line-height: 0.6;
  color: var(--ocean-light);
  font-family: Georgia, serif;
  margin-bottom: 16px;
  display: block;
}
.review-stars {
  color: #FBBC04;
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.review-text {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--sand-mid);
  padding-top: 16px;
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--deep), var(--ocean));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.review-name {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--dark);
  display: block;
}
.review-source {
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}
.google-g {
  display: inline-block;
  width: 14px; height: 14px;
  background: linear-gradient(135deg, #4285F4 0%, #34A853 25%, #FBBC04 50%, #EA4335 75%, #4285F4 100%);
  border-radius: 50%;
  flex-shrink: 0;
}

.reviews-cta-line {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-mid);
}
.reviews-cta-line strong { color: var(--deep); }

/* ===== STORY PAGE SPECIFIC ===== */
.story-hero { padding: 120px 0 70px; }
.story-hero-logo {
  margin: 0 auto 24px;
  max-width: 220px;
}
.story-hero-logo img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
}

.story-intro { background: var(--white); padding: 80px 0; }
.story-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.story-intro-text p { font-size: 1.05rem; color: var(--text-mid); line-height: 1.8; }
.story-intro-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.story-timeline-section { background: var(--sand); }

/* ===== GALLERY ===== */
.gallery-section {
  background: var(--white);
  padding: 100px 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.gallery-item.visible {
  opacity: 1;
  transform: scale(1);
}
.gallery-item.gallery-large { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,44,63,0.82) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px 18px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* ===== OWNERS SECTION ===== */
.owners-section {
  background: var(--sand);
  padding: 80px 0;
}
.owners-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto;
}
.owners-logo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.owners-text h3 {
  font-family: 'Pacifico', cursive;
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.owners-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--deep);
  margin-bottom: 16px;
  display: block;
}
.owners-text p { font-size: 0.97rem; color: var(--text-mid); line-height: 1.8; }
.owners-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }

/* Responsive gallery + owners + story */
@media (max-width: 960px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .story-intro-inner { grid-template-columns: 1fr; gap: 32px; }
  .owners-card { grid-template-columns: 1fr; text-align: center; }
  .owners-logo { max-width: 200px; margin: 0 auto; }
  .owners-cta { justify-content: center; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-item.gallery-large { grid-column: span 2; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
  .reviews-grid { grid-template-columns: 1fr; }
}
