/* ================================================================
   CASA BAY BEACH CLUB — MAIN STYLESHEET
   Color Palette:
     Deep Sea Blue:   #0a1628  /  #1a2e4a  /  #2c4a6e
     Sand Beige:      #f5efe6  /  #e8d5b7  /  #c9a87c
     Sunset Orange:   #e8692a  /  #f0884a  /  #ffa64d
     Accent White:    #ffffff  /  #f8f6f2
================================================================ */

/* ──────────────────────────────────────
   0. CSS Custom Properties / Reset
────────────────────────────────────── */
:root {
  --blue-dark:    #0a1628;
  --blue-mid:     #1a2e4a;
  --blue-light:   #2c4a6e;
  --blue-soft:    #3d6491;
  --sand-light:   #f5efe6;
  --sand-mid:     #e8d5b7;
  --sand-dark:    #c9a87c;
  --sand-deep:    #9a7d5a;
  --orange:       #e8692a;
  --orange-light: #f0884a;
  --orange-glow:  #ffa64d;
  --white:        #ffffff;
  --off-white:    #f8f6f2;
  --text-dark:    #1a1a1a;
  --text-mid:     #4a4a4a;
  --text-light:   #7a7a7a;

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;
  --font-display: 'Montserrat', system-ui, sans-serif;

  --nav-h: 80px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(10, 22, 40, 0.15);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.25);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

.section {
  padding: 100px 0;
}

.mt-4 { margin-top: 2rem; }
.w-full { width: 100%; }


/* ──────────────────────────────────────
   1. LOADER
────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--sand-mid);
  margin-bottom: 24px;
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-glow));
  animation: loaderFill 1.6s ease forwards;
}

@keyframes loaderFill {
  from { width: 0; }
  to   { width: 100%; }
}


/* ──────────────────────────────────────
   2. NAVIGATION
────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}

#navbar.scrolled {
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  height: 64px;
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--white);
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--sand-mid);
  text-transform: uppercase;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 8px 12px;
  border-radius: 4px;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--orange-light);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.lang-btn {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  padding: 5px 8px;
  border-radius: 4px;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.lang-btn:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}

.lang-btn.active {
  color: var(--orange-glow);
  border-color: var(--orange-glow);
  background: rgba(232, 105, 42, 0.1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ──────────────────────────────────────
   3. HERO SECTION — SLIDER VERSION
────────────────────────────────────── */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

/* Slide stack */
.hero-slides {
  position: absolute;
  inset: 0;
  background-color: var(--blue-dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: none;
  will-change: auto;
}

/* Ảnh bìa Casa Bay neon sign: căn giữa để thấy toàn bộ bar + sign */
.hero-slide:nth-child(1) img {
  object-position: center 40%;
}

.hero-slide.active {
  opacity: 1;
}

/* Slider dots */
.hero-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.hero-dot.active {
  background: var(--orange-glow);
  transform: scale(1.4);
  width: 24px;
  border-radius: 4px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 18, 32, 0.10) 0%,
    rgba(8, 18, 32, 0.20) 40%,
    rgba(8, 18, 32, 0.72) 100%
  );
  z-index: 1;
}

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

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--sand-mid);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300;
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title span {
  display: block;
  letter-spacing: 0.12em;
}

.hero-title em {
  display: block;
  font-style: italic;
  font-weight: 300;
  font-size: 0.55em;
  letter-spacing: 0.08em;
  color: var(--sand-mid);
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

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

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll-indicator span {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--sand-mid));
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero-scroll-indicator p {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50%       { opacity: 1; transform: scaleY(1); }
}

/* Hero Info Bar */
.hero-info-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 24px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.75);
}

.info-item i {
  color: var(--orange-light);
  font-size: 0.85rem;
}

.info-item a {
  color: rgba(255,255,255,0.75);
  transition: color var(--transition-fast);
}
.info-item a:hover { color: var(--orange-glow); }

.info-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.15);
}


/* ──────────────────────────────────────
   4. BUTTONS
────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 40px;
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 105, 42, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

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

.btn-light {
  background: var(--white);
  color: var(--blue-dark);
  border-color: var(--white);
}

.btn-light:hover {
  background: var(--sand-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--blue-mid);
  border-color: var(--blue-mid);
}

.btn-outline:hover {
  background: var(--blue-mid);
  color: var(--white);
}


/* ──────────────────────────────────────
   5. SECTION TYPOGRAPHY
────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-eyebrow.light {
  color: var(--sand-mid);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--blue-dark);
  margin-bottom: 20px;
}

.section-title.light {
  color: var(--white);
}

.section-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}


/* ──────────────────────────────────────
   6. ABOUT SECTION
────────────────────────────────────── */
.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

/* Image Block */
.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-img-main:hover img {
  transform: scale(1.04);
}

.about-img-overlay {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 55%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  aspect-ratio: 4/3;
}

.about-img-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-img-overlay:hover img {
  transform: scale(1.06);
}

.about-badge {
  position: absolute;
  top: 24px;
  right: -24px;
  width: 80px;
  height: 80px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(232, 105, 42, 0.4);
  z-index: 2;
}

.badge-year {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.badge-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

/* Text Block */
.about-text {
  padding-top: 40px;
}

.about-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin: 40px 0;
  padding: 32px 0;
  border-top: 1px solid var(--sand-mid);
  border-bottom: 1px solid var(--sand-mid);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--blue-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}

/* Feature Strips */
.feature-strips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--sand-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--sand-mid);
  transition: background var(--transition-fast);
}

.feature-strip:last-child { border-right: none; }

.feature-strip:hover {
  background: var(--sand-light);
}

.feature-strip i {
  font-size: 1.5rem;
  color: var(--orange);
}

.feature-strip span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-dark);
}


/* ──────────────────────────────────────
   7. MENU SECTION
────────────────────────────────────── */
.menu-section {
  background: var(--sand-light);
  position: relative;
  overflow: hidden;
}

.menu-bg-strip {
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 100%;
  opacity: 0.04;
  overflow: hidden;
  pointer-events: none;
}

.menu-bg-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tabs */
.menu-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.tab-btn {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 30px;
  color: var(--text-mid);
  background: var(--white);
  border: 1px solid var(--sand-mid);
  transition: all var(--transition-fast);
}

.tab-btn:hover {
  background: var(--blue-mid);
  color: var(--white);
  border-color: var(--blue-mid);
}

.tab-btn.active {
  background: var(--blue-dark);
  color: var(--white);
  border-color: var(--blue-dark);
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(10,22,40,0.06);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  animation: cardIn 0.4s ease both;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-card-header {
  height: 8px;
}

.menu-card.coffee    .menu-card-header { background: linear-gradient(90deg, #6f4e37, #a0724a); }
.menu-card.juice     .menu-card-header { background: linear-gradient(90deg, #4caf50, #8bc34a); }
.menu-card.beer      .menu-card-header { background: linear-gradient(90deg, #f9a825, #ff8f00); }
.menu-card.spirits   .menu-card-header { background: linear-gradient(90deg, var(--blue-mid), var(--blue-soft)); }
.menu-card.cocktails .menu-card-header { background: linear-gradient(90deg, var(--orange), var(--orange-glow)); }

.menu-card-body {
  padding: 20px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.menu-card.coffee    .menu-card-icon { background: rgba(111,78,55,0.1); color: #6f4e37; }
.menu-card.juice     .menu-card-icon { background: rgba(76,175,80,0.1); color: #388e3c; }
.menu-card.beer      .menu-card-icon { background: rgba(249,168,37,0.15); color: #f9a825; }
.menu-card.spirits   .menu-card-icon { background: rgba(44,74,110,0.1); color: var(--blue-mid); }
.menu-card.cocktails .menu-card-icon { background: rgba(232,105,42,0.1); color: var(--orange); }

.menu-card-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--blue-dark);
  margin-bottom: 6px;
}

.menu-card-desc {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-light);
  flex: 1;
  margin-bottom: 16px;
}

.menu-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--sand-light);
}

.menu-card-price {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
}

.menu-card-tag {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--sand-light);
  color: var(--text-light);
}

/* Menu Board */
.menu-board-wrap {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.menu-board-inner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.menu-board-inner img {
  width: 100%;
  object-fit: cover;
}

.menu-board-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10,22,40,0.75);
  backdrop-filter: blur(4px);
  color: rgba(255,255,255,0.75);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 12px 20px;
}


/* ──────────────────────────────────────
   8. COCKTAIL SPOTLIGHT
────────────────────────────────────── */

.spotlight-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.spotlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.92) 0%,
    rgba(44, 74, 110, 0.82) 100%
  );
  z-index: 1;
}

.spotlight-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.spotlight-desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}


/* ──────────────────────────────────────
   9. BOOKING SECTION
────────────────────────────────────── */
.booking-section {
  background: var(--white);
}

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

.booking-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 28px;
}

.booking-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.booking-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.booking-perks i {
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
}

.call-btn {
  background: var(--blue-dark) !important;
  border-color: var(--blue-dark) !important;
}

.call-btn:hover {
  background: var(--blue-mid) !important;
  border-color: var(--blue-mid) !important;
}

/* Form */
.booking-form-wrap {
  background: var(--sand-light);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.form-group label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-mid);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--white);
  border: 1px solid var(--sand-mid);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange-light);
  box-shadow: 0 0 0 3px rgba(232, 105, 42, 0.12);
}

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

/* Guest Counter */
.guest-counter {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--sand-mid);
  border-radius: 8px;
  overflow: hidden;
}

.counter-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-mid);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.counter-btn:hover {
  background: var(--sand-mid);
  color: var(--blue-dark);
}

.guest-counter input {
  border: none !important;
  border-radius: 0 !important;
  text-align: center;
  font-weight: 600;
  flex: 1;
  box-shadow: none !important;
  padding: 12px 8px;
}

/* Booking Success */
.booking-success {
  text-align: center;
  padding: 48px 20px;
}

.booking-success[hidden] { display: none; }

.success-icon {
  font-size: 3.5rem;
  color: var(--orange);
  margin-bottom: 16px;
  animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes successPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.booking-success h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--blue-dark);
  margin-bottom: 12px;
}

.booking-success p {
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.7;
}


/* ──────────────────────────────────────
   10. CONTACT SECTION
────────────────────────────────────── */
.contact-section {
  background: var(--sand-light);
}

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

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 500px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

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

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: 0 2px 12px rgba(10,22,40,0.06);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(10,22,40,0.1);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(232, 105, 42, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 4px;
}

.contact-details p,
.contact-link {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-mid);
}

.contact-link {
  color: var(--orange);
  font-weight: 500;
  font-size: 1.1rem;
  transition: color var(--transition-fast);
}

.contact-link:hover { color: var(--orange-light); }

/* Social Links */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background: var(--sand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-mid);
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.call-cta-btn {
  justify-content: center;
}


/* ──────────────────────────────────────
   11. FOOTER
────────────────────────────────────── */
.site-footer {
  background: var(--blue-dark);
  padding: 56px 24px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--sand-mid);
}

.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: -16px;
}

.footer-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition-fast);
}

.footer-nav a:hover { color: var(--sand-mid); }

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  width: 100%;
}

/* Footer Social Icons */
.footer-social {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: -8px;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-social-icon:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(232, 105, 42, 0.4);
}


/* ──────────────────────────────────────
   12. FLOATING ELEMENTS
────────────────────────────────────── */
.fab-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(232, 105, 42, 0.5);
  z-index: 800;
  transition: all var(--transition);
  animation: fabPulse 2.5s ease-in-out infinite;
}

.fab-call:hover {
  background: var(--orange-light);
  transform: scale(1.1);
  animation: none;
}

/* Floating Facebook Button */
.fab-facebook {
  position: fixed;
  bottom: 92px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #1877f2;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 4px 20px rgba(24, 119, 242, 0.45);
  z-index: 800;
  transition: all var(--transition);
}

.fab-facebook:hover {
  background: #1467d3;
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(24, 119, 242, 0.6);
}

/* Tooltip on hover */
.fab-facebook::before {
  content: 'Facebook';
  position: absolute;
  right: 68px;
  background: rgba(10, 22, 40, 0.88);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  transform: translateX(6px);
}

.fab-facebook:hover::before {
  opacity: 1;
  transform: translateX(0);
}

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(232,105,42,0.5); }
  50%       { box-shadow: 0 4px 40px rgba(232,105,42,0.8), 0 0 0 10px rgba(232,105,42,0.1); }
}

.back-to-top {
  position: fixed;
  bottom: 168px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--blue-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: var(--shadow);
  z-index: 800;
  transition: all var(--transition-fast);
  opacity: 0;
}

.back-to-top:not([hidden]) {
  opacity: 1;
}

.back-to-top[hidden] { display: none; }

.back-to-top:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
}


/* ──────────────────────────────────────
   13. SCROLL ANIMATIONS
────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }


/* ──────────────────────────────────────
   14. RESPONSIVE DESIGN
────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  .about-grid {
    gap: 48px;
  }

  .about-img-overlay {
    right: -20px;
    bottom: -20px;
  }

  .booking-grid {
    gap: 48px;
  }

  .contact-grid {
    gap: 40px;
  }

  .feature-strips {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-strip:nth-child(2) { border-right: none; }
  .feature-strip:nth-child(1),
  .feature-strip:nth-child(2) {
    border-bottom: 1px solid var(--sand-mid);
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .section { padding: 72px 0; }

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

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 24px 0;
    transform: translateY(-100vh);
    transition: transform var(--transition);
    z-index: 999;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-link {
    padding: 16px 24px;
    width: 100%;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
  }

  .nav-link::after { display: none; }

  .lang-switcher {
    gap: 2px;
  }

  .lang-btn { padding: 4px 6px; font-size: 0.58rem; }

  /* Hero */
  .hero-title {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .hero-info-bar {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .info-divider { display: none; }

  .hero-scroll-indicator { display: none; }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-images {
    max-width: 480px;
    margin: 0 auto;
  }

  .about-img-overlay {
    right: -16px;
    bottom: -16px;
  }

  .about-badge {
    right: -12px;
  }

  .about-text { padding-top: 0; }

  .about-stats { gap: 24px; }

  .feature-strips {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Menu */
  .menu-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  /* Booking */
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-form-wrap {
    padding: 28px 20px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-map {
    height: 300px;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.5rem, 16vw, 4rem); }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

  .feature-strips {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    border-right: none !important;
    border-bottom: 1px solid var(--sand-mid);
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    padding: 20px 24px;
  }

  .feature-strip:last-child { border-bottom: none; }

  .section-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}


/* ──────────────────────────────────────
   14b. WAVE DIVIDERS
────────────────────────────────────── */
.wave-divider {
  position: relative;
  height: 60px;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

/* Hero section bottom border glow */
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 56px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,105,42,0.3), transparent);
  pointer-events: none;
}

/* Menu card hover glow effect for cocktail category */
.menu-card.cocktails:hover {
  box-shadow: 0 12px 40px rgba(232,105,42,0.15);
}

/* Typing cursor effect on hero title */
.hero-title span::after {
  content: '';
}

/* Mobile nav overlay backdrop */
@media (max-width: 768px) {
  .nav-links.open::before {
    content: '';
    position: fixed;
    inset: 0;
    top: var(--nav-h);
    background: rgba(0,0,0,0.5);
    z-index: -1;
  }
}

/* ──────────────────────────────────────
   15. UTILITY / MISC
────────────────────────────────────── */

/* Smooth focus styles for accessibility */
:focus-visible {
  outline: 2px solid var(--orange-light);
  outline-offset: 3px;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--sand-light); }
::-webkit-scrollbar-thumb {
  background: var(--sand-dark);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--blue-light); }

/* Selection */
::selection {
  background: var(--orange);
  color: var(--white);
}
