/* ============================================================
   MR STEAK HAMMERSMITH — Immersive Aquarium Landing Page
   Luxury + Underwater Immersion — Inspired by Nobu, Zuma, Sexy Fish
   ============================================================ */

/* --- 1. RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #e0e8f0;
  background: #0C2D48;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='1.5'/%3E%3Ccircle cx='12' cy='12' r='3' fill='rgba(255,255,255,0.4)'/%3E%3C/svg%3E") 12 12, auto;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; outline: none; border: none; background: none; }
button { cursor: pointer; }
::selection { background: #C8A97E; color: #FFFFFF; }

.text-gold { color: #C8A97E; }

/* --- 2. TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
}
h1 { font-size: 3.5rem; }
h2 { font-size: 2.6rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.3rem; }
p { color: rgba(255,255,255,0.7); }

/* --- 3. AQUARIUM BACKGROUND SYSTEM --- */
.aquarium-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -3;
  background: linear-gradient(180deg, #134E6F 0%, #0E3B5E 20%, #0C2D48 45%, #091E33 70%, #061525 100%);
}

/* Animated light rays */
.aquarium-bg::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,120,200,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(0,100,180,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(0,80,160,0.08) 0%, transparent 50%);
  animation: lightRays 15s ease-in-out infinite;
}

@keyframes lightRays {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 1; }
  33% { transform: translate(2%, -1%) rotate(1deg); opacity: 0.8; }
  66% { transform: translate(-1%, 1%) rotate(-0.5deg); opacity: 0.9; }
}

/* Caustics water light overlay */
.caustics-overlay {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    repeating-conic-gradient(
      from 0deg at 50% 50%,
      rgba(0,120,200,0.02) 0deg 10deg,
      transparent 10deg 20deg
    );
  animation: causticsMove 12s ease-in-out infinite alternate;
  mix-blend-mode: screen;
}

@keyframes causticsMove {
  0% { transform: scale(1) rotate(0deg); opacity: 0.4; }
  50% { transform: scale(1.1) rotate(3deg); opacity: 0.7; }
  100% { transform: scale(1) rotate(-2deg); opacity: 0.5; }
}

/* Bubbles container */
.bubbles-container {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bubble-particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(100,180,255,0.3), rgba(50,120,200,0.05));
  border: 1px solid rgba(100,180,255,0.12);
  animation: bubbleRise linear infinite;
}

@keyframes bubbleRise {
  0% { transform: translateY(100vh) translateX(0) scale(0.5); opacity: 0; }
  10% { opacity: 0.6; }
  50% { opacity: 0.4; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-100px) translateX(var(--drift, 30px)) scale(1); opacity: 0; }
}

/* --- 4. WAVE SEPARATORS --- */
.wave-separator {
  position: relative;
  z-index: 1;
  margin-top: -1px;
  line-height: 0;
}

.wave-separator svg {
  display: block;
  width: 100%;
  height: 40px;
}

.wave-separator.wave-flip {
  transform: scaleY(-1);
  margin-top: 0;
  margin-bottom: -1px;
}

/* --- 5. CONTAINER --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* --- 6. BUTTONS --- */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Ripple effect */
.btn-ripple::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
  opacity: 0;
  pointer-events: none;
}

.btn-ripple.ripple-active::after {
  width: 400px;
  height: 400px;
  opacity: 0;
}

.btn-primary {
  background: #DC3545;
  color: #FFFFFF;
  border: 2px solid #DC3545;
}

.btn-primary:hover {
  background: #c82333;
  box-shadow: 0 8px 30px rgba(220, 53, 69, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-secondary:hover {
  border-color: #C8A97E;
  color: #C8A97E;
  box-shadow: 0 8px 30px rgba(200, 169, 126, 0.2);
  transform: translateY(-2px);
}

.btn-gold {
  background: #C8A97E;
  color: #0A1628;
  border: 2px solid #C8A97E;
}

.btn-gold:hover {
  background: #b8965e;
  box-shadow: 0 8px 30px rgba(200, 169, 126, 0.4);
  transform: translateY(-2px);
}

.btn-book {
  padding: 12px 28px;
  font-size: 0.75rem;
  animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5); }
  50% { box-shadow: 0 0 20px 4px rgba(220, 53, 69, 0); }
}

/* --- 7. PRELOADER --- */
.preloader {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, #134E6F 0%, #0C2D48 50%, #091E33 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.preloader.fade-out {
  opacity: 0;
  transform: translateY(100vh);
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.preloader-logo {
  display: flex;
  justify-content: center;
}

.preloader-logo img {
  height: 70px;
  margin: 0 auto;
  animation: preloaderPulse 1.8s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(200,169,126,0.3));
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.5; transform: scale(0.92); filter: drop-shadow(0 0 15px rgba(200,169,126,0.2)); }
  50% { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 40px rgba(200,169,126,0.5)); }
}

.preloader-text {
  margin-top: 24px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(200,169,126,0.6);
  text-align: center;
}

.preloader-text .pword {
  display: inline-block;
  opacity: 0;
  animation: preloaderWordFade 0.5s ease forwards;
}

@keyframes preloaderWordFade {
  to { opacity: 0.8; }
}

/* Preloader bubbles — generated by JS, positioned absolute to the preloader */
.preloader-bubble-anim {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), rgba(100,180,255,0.05));
  border: 1px solid rgba(255,255,255,0.08);
  animation: preloaderBubbleFloat linear infinite;
  z-index: 1;
}

@keyframes preloaderBubbleFloat {
  0% { transform: translateY(0) scale(0.5); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.15; }
  100% { transform: translateY(-110vh) scale(1); opacity: 0; }
}

/* --- 8. HEADER --- */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: transparent;
}

.header.scrolled {
  background: rgba(4, 11, 20, 0.92);
  padding: 10px 0;
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(100,180,255,0.06);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.logo img {
  height: 48px;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 10px rgba(200,169,126,0.2));
}

.header.scrolled .logo img {
  height: 36px;
}

.nav { display: flex; align-items: center; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-list a {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, #C8A97E, rgba(200,169,126,0.3));
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-list a:hover,
.nav-list a.active {
  color: #C8A97E;
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px; height: 30px;
  cursor: pointer;
  z-index: 1001;
  justify-content: center;
}

.hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile menu */
body.mobile-menu-open { overflow: hidden; }

.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 100%; height: 100vh;
  background: linear-gradient(135deg, #020810 0%, #0a1e38 50%, #040b14 100%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

body.mobile-menu-open .mobile-menu { right: 0; }

.mobile-menu-close {
  position: absolute;
  top: 24px; right: 30px;
  font-size: 2.4rem;
  color: #FFFFFF;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover { color: #C8A97E; }

.mobile-menu-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-menu-list a {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s ease;
}

.mobile-menu-list a:hover { color: #C8A97E; }

.mobile-menu-list .btn-book {
  margin-top: 16px;
}

/* --- 9. HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-iframe-desktop {
  position: absolute;
  top: 50%; left: 50%;
  width: 120vw; height: 120vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* Mobile video: poster + play button */
.hero-video-mobile {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-mobile-poster {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.85;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}

.hero-play-btn:hover {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.15);
}

/* Mobile YouTube iframe (injected by JS) */
.hero-video-mobile iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,11,20,0.3) 0%, rgba(4,11,20,0.5) 50%, rgba(4,11,20,0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 30px;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #C8A97E;
  border: 1px solid rgba(200,169,126,0.4);
  padding: 8px 24px;
  margin-bottom: 24px;
  animation: fadeInDown 1s 0.3s both;
}

.hero-title {
  font-size: 4.5rem;
  color: #FFFFFF;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
  margin-bottom: 1rem;
  animation: fadeInDown 1s 0.5s both;
}

.hero-title span {
  color: #C8A97E;
  position: relative;
}

.hero-title span::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, rgba(200,169,126,0.4), transparent);
}

.hero-tagline {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.9;
  animation: fadeInDown 1s 0.7s both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInDown 1s 0.9s both;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2.5s infinite;
}

.scroll-indicator .arrow {
  font-size: 1.4rem;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(12px); }
}

/* --- 10. SECTIONS --- */
.section {
  position: relative;
  padding: 100px 0;
}

.section-glass {
  background: rgba(12, 45, 72, 0.5);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(100,180,255,0.08);
  border-bottom: 1px solid rgba(100,180,255,0.08);
}

.section-deeper {
  background: rgba(9, 30, 51, 0.7);
  border-top: 1px solid rgba(100,180,255,0.06);
}

.section-title {
  font-size: 2.6rem;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 1rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, #C8A97E, transparent);
  margin: 16px auto 0;
}

.section-subtitle {
  text-align: center;
  color: #C8A97E;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 0.75rem;
}

.section-text {
  text-align: center;
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* --- 11. SCROLL REVEAL ANIMATIONS --- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.scroll-reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.scroll-reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Text reveal word by word */
.word-reveal .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.word-reveal.visible .word {
  opacity: 1;
  transform: translateY(0);
}

/* --- 12. EXPERIENCE SECTION --- */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.exp-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(100,180,255,0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.exp-card:hover {
  transform: translateY(-10px);
  border-color: rgba(200,169,126,0.4);
  box-shadow: 0 25px 70px rgba(0,0,0,0.4), 0 0 40px rgba(0,80,160,0.1);
}

.exp-card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.exp-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(4,11,20,0.6) 100%);
  transition: background 0.4s ease;
}

/* Blue overlay on hover */
.exp-card:hover .exp-card-img::after {
  background: linear-gradient(180deg, rgba(0,60,120,0.2) 0%, rgba(4,11,20,0.7) 100%);
}

.exp-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.exp-card:hover .exp-card-img img {
  transform: scale(1.12);
}

.exp-card-body {
  padding: 28px;
}

.exp-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #C8A97E;
}

.exp-card-body p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* --- 13. CHEF SECTION --- */
.chef-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.chef-image {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.chef-image img {
  width: 100%;
  border-radius: 4px;
  transition: transform 0.7s ease;
}

.chef-image:hover img {
  transform: scale(1.05);
}

.chef-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200,169,126,0.2);
  border-radius: 4px;
  pointer-events: none;
  transition: border-color 0.4s ease;
}

.chef-image:hover::after {
  border-color: rgba(200,169,126,0.5);
}

.chef-content .section-subtitle {
  text-align: left;
}

.chef-content h2 {
  text-align: left;
  margin-bottom: 1.5rem;
  font-size: 2.4rem;
}

.chef-content h2::after { display: none; }

.chef-content p {
  color: rgba(255,255,255,0.65);
  line-height: 1.9;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.chef-signature {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: #C8A97E;
  margin-top: 1.5rem;
}

/* --- 14. SIGNATURE DISHES --- */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.dish-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(100,180,255,0.08);
  border-radius: 4px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

.dish-card:hover {
  border-color: rgba(200,169,126,0.4);
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
  background: rgba(255,255,255,0.05);
}

.dish-card-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.4s ease;
}

.dish-card:hover .dish-card-icon {
  transform: scale(1.2) rotate(5deg);
}

.dish-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.dish-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #C8A97E;
  margin-bottom: 12px;
}

.dish-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.dish-card-badge {
  position: absolute;
  top: -1px; right: 20px;
  background: linear-gradient(135deg, #C8A97E, #b8965e);
  color: #0A1628;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 0 0 4px 4px;
}

/* --- 15. REVIEWS --- */
.reviews-header {
  text-align: center;
  margin-bottom: 2rem;
}

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 0.5rem;
}

.reviews-stars {
  color: #C8A97E;
  font-size: 1.2rem;
  letter-spacing: 4px;
}

.reviews-score {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFFFFF;
}

.reviews-count {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
}

.reviews-carousel {
  overflow: hidden;
  position: relative;
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(100,180,255,0.08);
  border-radius: 4px;
  padding: 32px;
  min-width: 340px;
  flex-shrink: 0;
  transition: all 0.4s ease;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.review-card:hover {
  border-color: rgba(200,169,126,0.25);
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
}

.review-stars {
  color: #C8A97E;
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
}

.review-author {
  font-weight: 600;
  color: #FFFFFF;
  font-size: 0.9rem;
}

.review-source {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2rem;
}

.reviews-dots .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}

.reviews-dots .dot.active {
  background: #C8A97E;
  box-shadow: 0 0 10px rgba(200,169,126,0.4);
}

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

.location-info h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: #C8A97E;
}

.location-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.location-icon {
  font-size: 1.2rem;
  color: #C8A97E;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}

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

.location-detail strong {
  color: #FFFFFF;
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}

.hours-grid {
  display: grid;
  gap: 6px;
  margin-top: 4px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hours-row .day { color: rgba(255,255,255,0.5); }
.hours-row .time { color: #FFFFFF; font-weight: 500; }

.location-map {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(100,180,255,0.1);
  height: 100%;
  min-height: 400px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  filter: saturate(0.7) brightness(0.8) contrast(1.1);
  transition: filter 0.4s ease;
}

.location-map:hover iframe {
  filter: saturate(1) brightness(1) contrast(1);
}

/* --- 17. CTA SECTION --- */
.cta-section {
  position: relative;
  padding: 140px 0;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.1s linear;
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,11,20,0.8), rgba(4,11,20,0.92));
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 30px;
}

.cta-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* --- 18. FOOTER --- */
.footer {
  background: rgba(2, 6, 12, 0.95);
  border-top: 1px solid rgba(100,180,255,0.06);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-col .footer-logo-img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: #C8A97E;
}

.footer-links li { margin-bottom: 8px; }

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #C8A97E;
  padding-left: 6px;
}

.footer-location {
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

.footer-location strong {
  display: block;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  margin-bottom: 2px;
}

.hours-list { padding: 0; }

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.hours-list li span:first-child { color: rgba(255,255,255,0.4); }
.hours-list li span:last-child { color: rgba(255,255,255,0.8); font-weight: 500; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: all 0.4s ease;
}

.footer-social a:hover {
  background: #C8A97E;
  border-color: #C8A97E;
  color: #0A1628;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(200,169,126,0.3);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

.footer-bottom-links a:hover { color: #C8A97E; }

/* --- 19. BACK TO TOP --- */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  background: rgba(200,169,126,0.15);
  border: 1px solid rgba(200,169,126,0.3);
  border-radius: 50%;
  color: #C8A97E;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #C8A97E;
  color: #0A1628;
  box-shadow: 0 8px 25px rgba(200,169,126,0.3);
}

/* --- 20. COUNTERS --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  padding: 60px 0;
  border-top: 1px solid rgba(100,180,255,0.06);
  border-bottom: 1px solid rgba(100,180,255,0.06);
}

.counter-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #C8A97E;
  display: block;
  text-shadow: 0 0 30px rgba(200,169,126,0.2);
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}

/* --- 22. AQUARIUM SHOW SECTION --- */
.section-aquarium-show {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.aquarium-show-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.aquarium-show-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
}

.aquarium-show-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,11,20,0.75) 0%, rgba(4,11,20,0.6) 40%, rgba(4,11,20,0.75) 100%);
}

.section-aquarium-show .container {
  position: relative;
  z-index: 1;
}

.aquarium-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2rem;
}

.aquarium-video-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(100,180,255,0.15);
  aspect-ratio: 9/16;
  max-height: 450px;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.aquarium-video-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(200,169,126,0.5);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 40px rgba(0,80,160,0.15);
}

.aquarium-video-card video {
  width: 100%; height: 100%;
  object-fit: cover;
}

.aquarium-video-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(4,11,20,0.9));
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #C8A97E;
  font-weight: 600;
}

/* --- 23. INFLUENCER SECTION --- */
.influencer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.influencer-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(100,180,255,0.1);
  aspect-ratio: 9/16;
  max-height: 500px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.influencer-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200,169,126,0.4);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.influencer-card video {
  width: 100%; height: 100%;
  object-fit: cover;
}

.influencer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 60%, rgba(4,11,20,0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.influencer-card:hover .influencer-overlay {
  opacity: 1;
}

.influencer-icon {
  width: 50px; height: 50px;
  background: rgba(200,169,126,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A1628;
  font-size: 1.2rem;
  box-shadow: 0 8px 30px rgba(200,169,126,0.4);
}

/* --- 24. RESTAURANT VIDEO BACKGROUND --- */
.section-restaurant-bg {
  position: relative;
  overflow: hidden;
}

.restaurant-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.restaurant-video-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
}

.restaurant-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2,6,12,0.88) 0%, rgba(2,6,12,0.7) 50%, rgba(2,6,12,0.88) 100%);
}

.section-restaurant-bg .container {
  position: relative;
  z-index: 1;
}

/* --- 25. MOBILE HERO VIDEO (local mp4) --- */
video.hero-video-mobile {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* --- 26. SECTION BUBBLES (local bubbles per section) --- */
.section-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.section-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), rgba(100,180,255,0.05));
  border: 1px solid rgba(255,255,255,0.08);
  animation: sectionBubbleRise linear infinite;
}

@keyframes sectionBubbleRise {
  0% { transform: translateY(100%) translateX(0) scale(0.4); opacity: 0; }
  15% { opacity: 0.5; }
  85% { opacity: 0.2; }
  100% { transform: translateY(-20px) translateX(var(--drift, 20px)) scale(1); opacity: 0; }
}

/* --- 27. TRIPADVISOR BADGE --- */
.reviews-platforms {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.platform-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 30px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(100,180,255,0.08);
  border-radius: 8px;
  transition: all 0.4s ease;
  min-width: 200px;
}

.platform-badge:hover {
  border-color: rgba(200,169,126,0.3);
  background: rgba(255,255,255,0.06);
  transform: translateY(-3px);
}

.platform-badge-name {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

.platform-badge-score {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
}

.platform-badge-stars {
  color: #C8A97E;
  font-size: 1rem;
  letter-spacing: 3px;
}

.platform-badge-count {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.tripadvisor-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ============================================================
   21. RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .nav-list { gap: 18px; }
  .nav-list a { font-size: 0.75rem; }
  .hero-title { font-size: 3.5rem; }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .dishes-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  body {
    cursor: auto;
    overflow-x: hidden;
  }

  .hamburger { display: flex; }
  .nav { display: none; }
  .header .btn-book { display: none; }
  .header { padding: 14px 0; }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 2rem; }

  /* Global mobile: containers max width, padding, centering */
  .container { max-width: 100%; padding: 0 16px; }
  .section { padding: 60px 0; text-align: center; }
  .section-title { font-size: 2rem; text-align: center; }
  .section-text { text-align: center; }
  .section-subtitle { text-align: center; }

  /* All images/videos full width */
  img, video { max-width: 100%; height: auto; }

  /* All grids 1 column */
  .experience-grid,
  .dishes-grid,
  .aquarium-video-grid,
  .influencer-grid,
  .chef-grid,
  .location-grid,
  .footer-grid { grid-template-columns: 1fr; }

  /* Hero mobile */
  .hero-title { font-size: 2.6rem; }
  .hero-tagline { font-size: 1rem; text-align: center; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-content { padding: 0 16px; }
  .hero-iframe-desktop { display: none; }
  video.hero-video-mobile { display: block; }

  /* Experience — full width cards */
  .experience-grid { max-width: 100%; gap: 20px; }
  .exp-card { text-align: center; }
  .exp-card-body { text-align: center; }
  .exp-card-body h3 { text-align: center; }

  /* Chef — centered */
  .chef-grid { gap: 30px; }
  .chef-image { max-width: 100%; margin: 0 auto; }
  .chef-content { text-align: center; }
  .chef-content .section-subtitle,
  .chef-content h2 { text-align: center; }
  .chef-content p { text-align: center; }
  .chef-content .btn { margin: 1.5rem auto 0; display: inline-block; }

  /* Dishes — full width */
  .dishes-grid { max-width: 100%; gap: 20px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .counter-number { font-size: 2.2rem; }

  /* Aquarium show — landscape video cards on mobile */
  .aquarium-video-grid { max-width: 100%; gap: 16px; margin-top: 1.5rem; }
  .aquarium-video-card {
    aspect-ratio: 16/9;
    max-height: none;
    width: 100%;
    height: auto;
  }
  .aquarium-video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .aquarium-video-label { text-align: center; padding: 12px; font-size: 0.95rem; }
  .section-aquarium-show { padding: 60px 0; }

  /* Influencers — FULL WIDTH on mobile, keep portrait ratio */
  .influencer-grid { max-width: 100%; gap: 16px; }
  .influencer-card {
    max-height: 480px;
    width: 100%;
    aspect-ratio: 9/16;
  }
  .influencer-card video { width: 100%; height: 100%; object-fit: cover; }

  /* Reviews — STACKED vertically, no carousel on mobile */
  .reviews-carousel { overflow: visible; }
  .reviews-track {
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: none !important;
  }
  /* Hide reviews 4 and 5 on mobile (show max 3) */
  .review-card:nth-child(n+4) { display: none; }
  .review-card {
    min-width: unset !important;
    width: 100% !important;
    max-width: 100% !important;
    flex-shrink: 1;
    text-align: center;
    padding: 24px 20px;
    box-sizing: border-box;
  }
  .review-text {
    font-size: 14px !important;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }
  .review-stars {
    font-size: 1rem;
    letter-spacing: 4px;
    display: block;
    text-align: center;
  }
  .review-author {
    font-size: 0.85rem;
    text-align: center;
  }
  .review-source {
    text-align: center;
  }
  .reviews-dots { display: none; }
  .reviews-platforms { flex-direction: column; align-items: center; gap: 16px; }
  .platform-badge { width: 100%; max-width: 100%; }

  /* Location — centered */
  .location-info { text-align: center; }
  .location-info h3 { text-align: center; }
  .location-detail { justify-content: center; text-align: left; }
  .location-info .btn { margin: 1.5rem auto 0; display: inline-block; }
  .location-map { min-height: 300px; }
  .location-map iframe { min-height: 300px; }

  /* Footer — centered */
  .footer-grid { text-align: center; gap: 30px; }
  .footer-col { text-align: center; }
  .footer-col .footer-logo-img { margin: 0 auto 16px; }
  .footer-heading::after { left: 50%; transform: translateX(-50%); }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .footer-social { justify-content: center; }

  /* Wave */
  .wave-separator svg { height: 25px; }

  /* CTA */
  .cta-content { text-align: center; padding: 0 16px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-badge { font-size: 0.6rem; letter-spacing: 2.5px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .btn { padding: 14px 30px; font-size: 0.75rem; }
  .review-card { padding: 20px 16px; }
}
