/* ============================================
   ESPACE BEACH AHOUÉ - DESIGN SYSTEM
   Premium One-Page Website
   ============================================ */

/* ============================================
   VARIABLES CSS & DESIGN TOKENS
   ============================================ */
:root {
  /* Palette de couleurs - Akan / Kente Inspiration */
  /* Fond Sombre */
  --color-bg-main: #121212;
  /* Noir Profond */
  --color-bg-card: #1E1E1E;
  /* Gris très sombre */
  --color-bg-alt: #1A1A1A;
  /* Noir alternatif */

  /* Accents Pagne Akan */
  --color-gold: #FFD700;
  /* Or vibrant */
  --color-gold-dark: #B8860B;
  /* Or sombre */

  --color-green: #00A859;
  /* Vert Akan */
  --color-red: #E31B23;
  /* Rouge Akan */

  /* Text */
  --color-text-main: #F5EDE5;
  /* Blanc cassé / Sable clair */
  --color-text-muted: #D4C4B0;
  /* Sable sombre */

  /* Legacy mapping for compatibility */
  --color-sand: var(--color-bg-alt);
  --color-sand-light: var(--color-bg-card);
  --color-ochre: var(--color-gold);
  --color-palm: var(--color-green);
  --color-lagoon: var(--color-red);
  /* Remplacement du bleu par le rouge */
  --color-charcoal: var(--color-text-main);
  --color-white: var(--color-bg-card);
  --color-off-white: var(--color-bg-main);

  /* Gradients */
  --gradient-sunset: linear-gradient(135deg, var(--color-gold) 0%, #FFA500 50%, var(--color-red) 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  --gradient-sand: linear-gradient(135deg, var(--color-bg-card) 0%, var(--color-bg-alt) 100%);

  /* Typography */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --spacing-xxl: 8rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.7);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.8);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Z-index */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-tooltip: 500;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: var(--color-bg-main);
  line-height: 1.7;
  overflow-x: hidden;
  /* Safety net to ensure y-scroll is always possible unless explicitly hidden by checking specifically for 'hidden' style */
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 2px solid var(--color-gold);
  /* Bordure dorée demandée */
  border-radius: var(--radius-sm);
}

/* Remove border for specific images like logo or hero background if needed */
.hero-background,
.logo-img {
  border: none;
}

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

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition-normal);
}

/* Icons */
.ph {
  vertical-align: middle;
}

.event-icon {
  font-size: 3rem;
  color: var(--color-gold);
  margin-bottom: var(--spacing-sm);
  display: block;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--color-gold);
  min-width: 2rem;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-gold);
}

h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  margin-bottom: var(--spacing-md);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--spacing-md);
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: var(--spacing-sm);
}

p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: var(--spacing-sm);
}

.subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--color-ochre);
  font-weight: 500;
  margin-bottom: var(--spacing-sm);
}

.text-accent {
  color: var(--color-ochre);
}

.text-palm {
  color: var(--color-palm);
}

/* ============================================
   LAYOUT & CONTAINERS
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

.section-alt {
  background-color: var(--color-bg-alt);
}

/* ============================================
   BUTTONS & CTAs
   ============================================ */
/* ============================================
   BUTTONS & CTAs
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-normal);
  font-size: 0.9rem;
  white-space: nowrap;
}

.btn-icon {
  font-size: 1.25rem;
  margin-right: 0.25rem;
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-bg-main);
  border: 1px solid var(--color-gold);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text-main);
  border: 1px solid var(--color-text-main);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--color-text-main);
  color: var(--color-bg-main);
  transform: translateY(-2px);
}

.btn-rounded {
  border-radius: 50px;
}

.btn-whatsapp {
  background-color: var(--color-green);
  border-color: var(--color-green);
  color: #FFFFFF;
}

.btn-whatsapp:hover {
  background-color: transparent;
  color: var(--color-green);
  transform: translateY(-2px);
}

.btn-facebook {
  background-color: #1877F2;
  border-color: #1877F2;
  color: #FFFFFF;
}

.btn-facebook:hover {
  background-color: transparent;
  color: #1877F2;
  transform: translateY(-2px);
}

/* Icons */
.ph {
  vertical-align: middle;
}

.event-icon {
  font-size: 2.5rem;
  color: var(--color-gold);
  margin-bottom: var(--spacing-sm);
  display: block;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--color-gold);
  min-width: 2rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-xl);
  z-index: var(--z-fixed);
  transition: all var(--transition-normal);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20BA5A;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  50% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/kente_bg.jpg');
  background-size: cover;
  background-position: center;
  backdrop-filter: blur(3px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  z-index: var(--z-fixed);
  transition: all var(--transition-normal);
  border-bottom: 2px solid var(--color-gold);
}

.navbar.scrolled {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/kente_bg.jpg');
  box-shadow: var(--shadow-md);
}

.navbar .container-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem var(--spacing-md);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo span {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.logo-img {
  height: 50px;
  width: auto;
  border-radius: 50%;
  transition: transform var(--transition-normal);
}

.logo:hover .logo-img {
  transform: rotate(5deg) scale(1.05);
}

.header-phone {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.header-phone a {
  color: var(--color-text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition-fast);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
}

.header-phone a:hover {
  color: var(--color-gold);
}

.header-phone i {
  font-size: 1rem;
}

.nav-menu {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.nav-visual {
  display: none;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  list-style: none;
  white-space: nowrap;
}

.nav-link {
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--color-text-main);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  /* Ajout d'une ombre pour la lisibilité */
}

.nav-link:hover {
  color: var(--color-gold);
  background-color: rgba(255, 215, 0, 0.1);
}

/* ============================================
   NAVIGATION DROPDOWN
   ============================================ */
.nav-item-dropdown {
  position: relative;
}

.caret-icon {
  font-size: 0.8rem;
  margin-left: 0.25rem;
  vertical-align: middle;
  transition: transform var(--transition-normal);
}

.nav-item-dropdown:hover .caret-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--color-bg-card);
  min-width: 220px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  list-style: none;
  z-index: var(--z-dropdown);
  pointer-events: none;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--color-text-main);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  transition: all var(--transition-fast);
  font-size: 1rem;
  text-align: left;
}

.dropdown-link:hover {
  background-color: rgba(255, 215, 0, 0.1);
  color: var(--color-gold);
  padding-left: 1.75rem;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--color-charcoal);
  border-radius: 8px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
  padding-top: 80px;
}

/* Hero background utilisé par les sous-pages (menu, hébergement, événements) */
.hero-carousel .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  will-change: opacity;
  transition: opacity 2s ease-in-out;
}

.hero-carousel .hero-background.active {
  opacity: 1;
  z-index: 1;
}

.hero-static-layer {
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  height: calc(100% - 120px);
  object-fit: contain;
  object-position: left bottom;
  z-index: 1;
  border: none;
  outline: none;
  pointer-events: none;
  will-change: transform;
  transform: translateZ(0);
}

.hero-logo-layer {
  position: absolute;
  top: 140px;
  right: 40px;
  width: 200px;
  height: auto;
  z-index: 1;
  border: none;
  outline: none;
  box-shadow: none;
  pointer-events: none;
}

/* Multi-layer overlay: vignette radiale + gradient directionnel + teinte dorée */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.5) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(15, 10, 0, 0.5) 100%);
  z-index: -1;
}

/* Gold accent lines – top & bottom cinematic bars */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  z-index: 10;
  opacity: 0.6;
}

.hero::before {
  top: 0;
}

.hero::after {
  bottom: 68px;
}

/* Glass morphism content card */
/* Titre hors du cadre */
.hero-title {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--spacing-md);
}

/* Staggered word reveal */
.hero-title .hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeInWord 0.5s ease forwards;
}

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

.hero .subtitle {
  color: rgba(240, 240, 240, 0.9);
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 300;
  margin-bottom: 0;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-text {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
  color: #F0F0F0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
  position: relative;
  z-index: 2;
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn-primary {
  position: relative;
  background-color: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  overflow: hidden;
  transition: all 0.4s ease;
}

.hero-buttons .btn-primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 0deg, transparent, var(--color-gold), transparent, var(--color-gold), transparent);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: inherit;
}

.hero-buttons .btn-primary:hover::before {
  opacity: 0.4;
}

.hero-buttons .btn-primary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  color: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: 0 0 24px rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
}

.hero-buttons .btn-secondary {
  border: 1px solid rgba(255, 215, 0, 0.4);
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  transition: all 0.4s ease;
}

.hero-buttons .btn-secondary:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(255, 215, 0, 0.08);
  transform: translateY(-2px);
}

/* Carousel progress dots */
.hero-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.15);
}

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

.hero-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--color-gold);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.hero-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.6);
}

/* Scroll-down indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.7;
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.6);
}

.hero-scroll-indicator svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-gold);
  stroke-width: 2;
  fill: none;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.5;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(6px);
  }
}

@keyframes fadeInWord {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   HERO TICKER (Scrolling Banner)
   ============================================ */
.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, rgba(20, 18, 12, 0.95) 0%, rgba(35, 30, 20, 0.95) 50%, rgba(20, 18, 12, 0.95) 100%);
  color: var(--color-gold);
  padding: 0.85rem 0;
  z-index: 10;
  overflow: hidden;
  border-top: 1px solid rgba(255, 215, 0, 0.3);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
}

.hero-ticker-track {
  display: flex;
  width: fit-content;
  animation: ticker 45s linear infinite;
  white-space: nowrap;
}

.hero-ticker-track span {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding-right: 4rem;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ============================================
   HERO CAROUSEL – Ken Burns Animations
   ============================================ */
.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

.hero-carousel-slide {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  will-change: opacity, transform;
  transform: scale(1);
  filter: brightness(1.15);
  overflow: hidden;
  /* Crossfade ultra-smooth */
  transition: opacity 2.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

/* --- Animations Ken Burns --- */

.hero-carousel-slide.kb-zoomIn {
  animation: kbZoomIn 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes kbZoomIn {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.hero-carousel-slide.kb-zoomOut {
  animation: kbZoomOut 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes kbZoomOut {
  from { transform: scale(1.1); }
  to   { transform: scale(1); }
}

.hero-carousel-slide.kb-panLeft {
  animation: kbPanLeft 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes kbPanLeft {
  from { transform: scale(1) translateX(0); }
  to   { transform: scale(1) translateX(-3%); }
}

.hero-carousel-slide.kb-panRight {
  animation: kbPanRight 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes kbPanRight {
  from { transform: scale(1) translateX(0); }
  to   { transform: scale(1) translateX(3%); }
}

.hero-carousel-slide.kb-zoomInPan {
  animation: kbZoomInPan 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes kbZoomInPan {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.04) translate(-1.5%, -0.5%); }
}

.hero-carousel-slide.kb-zoomOutPan {
  animation: kbZoomOutPan 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes kbZoomOutPan {
  from { transform: scale(1.06) translate(1.5%, 0.5%); }
  to   { transform: scale(1) translate(0, 0); }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

.section-header h2 {
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-sunset);
  border-radius: var(--radius-full);
}

/* ============================================
   CARDS & FEATURES
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.feature-card {
  background-color: var(--color-white);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  text-align: center;
}

.feature-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  transition: transform var(--transition-normal);
}

.feature-card:hover .feature-card-img {
  transform: scale(1.03);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.info-callout {
  background: var(--color-bg-card);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--color-gold);
}

.info-callout i {
  vertical-align: middle;
  margin-right: 6px;
  color: var(--color-gold);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: var(--transition-normal);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 44, 44, 0.3);
  opacity: 0;
  transition: var(--transition-normal);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 2;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-extra {
  display: none;
}

.gallery-extra.gallery-visible {
  display: block;
  animation: fadeInUp 0.5s ease forwards;
}

.gallery-cta {
  text-align: center;
  margin-top: var(--spacing-lg);
}

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

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  align-items: center;
}

.content-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.content-text ul {
  list-style: none;
  margin-top: var(--spacing-md);
}

.content-text li {
  padding: var(--spacing-xs) 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.125rem;
}

.content-text li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-palm);
  font-weight: bold;
  font-size: 1.25rem;
}

/* ============================================
   EVENTS SECTION
   ============================================ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.event-card {
  background-color: var(--color-white);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-normal);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.event-emoji {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
  display: block;
}

.event-card h3 {
  font-size: 1.25rem;
  color: var(--color-palm);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.testimonial-card {
  background-color: var(--color-white);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 215, 0, 0.15);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 215, 0, 0.35);
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: var(--spacing-sm);
}

.testimonial-text {
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.8;
  flex: 1;
  margin-bottom: var(--spacing-md);
  position: relative;
  padding-left: 1.25rem;
  border-left: 3px solid var(--color-gold);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--spacing-sm);
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.testimonial-author strong {
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.testimonial-date {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  opacity: 0.7;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
  background-color: var(--color-sand-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: #0A0A0A;
  color: var(--color-text-main);
  padding: var(--spacing-xl) 0 var(--spacing-md);
  border-top: 1px solid rgba(255, 215, 0, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
}

.footer-col h4 {
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.footer-links, .footer-info-list {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

.footer-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-info-list i {
  color: var(--color-gold);
  font-size: 1.2rem;
  margin-top: 2px;
}

.footer-info-list a {
  color: var(--color-text-main);
  text-decoration: underline;
  text-decoration-color: rgba(255, 215, 0, 0.3);
}

.footer-info-list a:hover {
  color: var(--color-gold);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: var(--color-bg-card);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 50%;
  font-size: 1.3rem;
  color: var(--color-gold);
  transition: all var(--transition-normal);
}

.social-link:hover {
  background-color: var(--color-gold);
  color: var(--color-bg-main);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--spacing-md);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-align: center;
}

.footer-bottom a {
  color: var(--color-gold);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
}

.social-link:hover {
  background-color: var(--color-ochre);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--color-bg-card);
  padding-top: var(--spacing-md);
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

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

.mb-sm {
  margin-bottom: var(--spacing-sm);
}

.mb-md {
  margin-bottom: var(--spacing-md);
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

.mt-sm {
  margin-top: var(--spacing-sm);
}

.mt-md {
  margin-top: var(--spacing-md);
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
  }

  .navbar .container-wide {
    padding: 0.5rem var(--spacing-sm);
    gap: 0.5rem;
  }

  .logo {
    gap: 0.4rem;
    min-width: 0;
    flex: 1;
  }

  .logo span {
    display: block;
    font-size: 1.1rem;
    line-height: 1.15;
  }

  .logo-img {
    height: 48px;
    flex-shrink: 0;
  }

  .header-phone {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.6rem;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    position: relative;
    z-index: 10001;
    background: transparent;
    border: 2px solid var(--color-gold);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }

  .mobile-menu-toggle:hover {
    transform: scale(1.05);
    background-color: rgba(255, 215, 0, 0.15);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: row;
    z-index: 10000;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
    pointer-events: none;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links {
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 5rem 2rem 3rem;
    gap: 0;
    overflow-y: auto;
  }

  .nav-links .nav-link {
    color: var(--color-text-main);
    text-shadow: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 1.1rem 0;
    text-align: left;
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 0;
    transition: color 0.3s ease, padding-left 0.3s ease;
    opacity: 0;
    transform: translateX(20px);
  }

  .nav-menu.active .nav-links .nav-link {
    animation: navLinkFadeIn 0.4s ease forwards;
  }

  .nav-menu.active .nav-links > *:nth-child(1) .nav-link,
  .nav-menu.active .nav-links > .nav-link:nth-child(1) { animation-delay: 0.1s; }
  .nav-menu.active .nav-links > *:nth-child(2) .nav-link,
  .nav-menu.active .nav-links > .nav-link:nth-child(2) { animation-delay: 0.15s; }
  .nav-menu.active .nav-links > *:nth-child(3) .nav-link,
  .nav-menu.active .nav-links > .nav-link:nth-child(3) { animation-delay: 0.2s; }
  .nav-menu.active .nav-links > *:nth-child(4) .nav-link,
  .nav-menu.active .nav-links > .nav-link:nth-child(4) { animation-delay: 0.25s; }
  .nav-menu.active .nav-links > *:nth-child(5) .nav-link,
  .nav-menu.active .nav-links > .nav-link:nth-child(5) { animation-delay: 0.3s; }
  .nav-menu.active .nav-links > *:nth-child(6) .nav-link,
  .nav-menu.active .nav-links > .nav-link:nth-child(6) { animation-delay: 0.35s; }
  .nav-menu.active .nav-links > *:nth-child(7) .nav-link,
  .nav-menu.active .nav-links > .nav-link:nth-child(7) { animation-delay: 0.4s; }
  .nav-menu.active .nav-links > *:nth-child(8) .nav-link,
  .nav-menu.active .nav-links > .nav-link:nth-child(8) { animation-delay: 0.45s; }

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

  .nav-links .nav-link:hover,
  .nav-links .nav-link:active {
    color: var(--color-gold);
    padding-left: 0.5rem;
    background: transparent;
  }

  .nav-item-dropdown {
    width: 100%;
    text-align: left;
  }

  .nav-item-dropdown > .nav-link {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
  }

  .nav-item-dropdown .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    list-style: none;
    padding: 0.25rem 0 0.25rem 1rem;
    margin: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    min-width: 0;
    text-align: left;
  }

  .nav-item-dropdown.open .dropdown-menu {
    display: block;
    animation: navLinkFadeIn 0.3s ease forwards;
  }

  .nav-item-dropdown .caret-icon {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
  }

  .nav-item-dropdown.open .caret-icon {
    transform: rotate(180deg);
  }

  .nav-item-dropdown .dropdown-link {
    padding: 0.5rem 0;
    color: #6bbf7a;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    transition: color 0.2s ease, padding-left 0.3s ease;
    border-bottom: none;
  }

  .nav-item-dropdown .dropdown-link:hover {
    color: #a8e6b0;
    padding-left: 0.5rem;
    background: transparent;
  }

  .nav-menu::before {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }

  .hero .subtitle {
    font-size: clamp(0.85rem, 3vw, 1rem);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
  }

  .hero-text {
    font-size: clamp(0.85rem, 3vw, 1rem);
    line-height: 1.5;
    margin-bottom: 0.75rem;
  }

  .hero-static-layer {
    top: auto;
    bottom: 0;
    height: 50%;
    object-position: center bottom;
    opacity: 0.25;
  }

  .hero-content {
    padding: 1.5rem 1.25rem;
    max-width: 95%;
    border-radius: 12px;
  }

  .hero-ticker {
    font-size: 0.7rem;
    padding: 0.5rem 0;
  }

  .hero::after {
    bottom: 58px;
  }

  .hero-dots {
    bottom: 68px;
    gap: 6px;
    padding: 6px 10px;
  }

  .hero-dot.active {
    width: 18px;
  }

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

  .hero {
    min-height: 480px;
  }

  .btn {
    width: 100%;
  }

  .content-split {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 55px;
    height: 55px;
    font-size: 1.75rem;
  }

  .section {
    padding: var(--spacing-lg) 0;
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero {
    min-height: 0;
    height: calc(100vh - 70px);
    padding-top: 80px;
    padding-bottom: 3.5rem;
  }

  .hero-title {
    font-size: 1.4rem;
    letter-spacing: 1px;
  }

  .hero .subtitle {
    font-size: 0.8rem;
  }

  .hero-text {
    font-size: 0.85rem;
    display: none;
  }

  .hero-static-layer {
    opacity: 0.15;
    height: 45%;
  }

  .hero-content {
    padding: 1.2rem 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
  }

  .hero-dots {
    bottom: 48px;
    gap: 5px;
    padding: 5px 8px;
  }

  .hero-dot {
    width: 6px;
    height: 6px;
  }

  .hero-dot.active {
    width: 16px;
  }

  .hero::after {
    bottom: 42px;
  }

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

  .hero-buttons .btn {
    font-size: 0.75rem;
    padding: 0.6rem 0.85rem;
  }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {

  .navbar,
  .whatsapp-float,
  .btn {
    display: none;
  }
}

/* ============================================
   MENU PAGE STYLES
   ============================================ */
.menu-hero {
  background-size: cover;
  background-position: center;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.menu-tab {
  padding: 0.75rem 2rem;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
}

.menu-tab.active,
.menu-tab:hover {
  background-color: var(--color-gold);
  color: var(--color-bg-main);
}

.menu-section-title {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.menu-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--color-gold);
  margin: 1rem auto 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.menu-card {
  background-color: var(--color-bg-card);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: var(--color-gold);
}

.menu-card-img-container {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.menu-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img {
  transform: scale(1.05);
}

.menu-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  gap: 1rem;
}

.menu-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text-main);
  margin: 0;
}

.menu-card-price {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-gold);
  font-size: 1.1rem;
  white-space: nowrap;
}

.menu-card-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.menu-category-separator {
  grid-column: 1 / -1;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-gold-dark);
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-gold);
}

/* ============================================
   LIGHTBOX STYLES
   ============================================ */
/* ============================================
   LIGHTBOX STYLES
   ============================================ */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
  animation: modalFadeIn 0.3s ease;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  z-index: 10;
  max-width: 90%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: transform 0.25s ease;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: var(--color-gold);
  color: var(--color-bg-main);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--color-gold);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: all 0.3s ease;
}

.lightbox-nav:hover {
  background: var(--color-gold);
  color: var(--color-bg-main);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

.lightbox-info {
  margin-top: 1rem;
  text-align: center;
  color: var(--color-text-main);
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
}

.lightbox-counter {
  font-size: 0.85rem;
  color: var(--color-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.lightbox-caption-text {
  font-size: 1rem;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .lightbox-prev {
    left: 0.5rem;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  .lightbox-next {
    right: 0.5rem;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}


/* ============================================
   MENU MODAL STYLES
   ============================================ */
.menu-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
  animation: modalFadeIn 0.3s ease;
}

.menu-modal.closing {
  animation: modalFadeOut 0.3s ease forwards;
}

.menu-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.menu-modal-content {
  position: relative;
  background-color: var(--color-bg-card);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-gold-dark);
  display: flex;
  flex-direction: column;
}

.menu-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.menu-modal-close:hover {
  background: var(--color-gold);
  color: var(--color-bg-main);
  transform: rotate(90deg);
}

.menu-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}

.menu-modal-img {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

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

.menu-modal-info {
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}

.menu-modal-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.menu-modal-price {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-bg-alt);
}

.menu-modal-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes modalFadeOut {
  from {
    opacity: 1;
    transform: scale(1);
  }

  to {
    opacity: 0;
    transform: scale(0.95);
  }
}

/* Responsive Modal */
@media (max-width: 768px) {
  .menu-modal-grid {
    grid-template-columns: 1fr;
  }

  .menu-modal-img {
    height: 250px;
    min-height: 200px;
  }

  .menu-modal-info {
    padding: var(--spacing-md);
  }

  .menu-modal-title {
    font-size: 1.75rem;
  }
}

/* ============================================
   EXTRA MENU LISTS (Text only)
   ============================================ */
.extra-menu-container {
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  margin-bottom: 6rem;
}

.extra-menu-title {
  font-family: var(--font-heading);
  color: var(--color-gold);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Drink Category Banners */
.category-banner-container {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 215, 0, 0.1);
  box-shadow: var(--shadow-md);
}

.category-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-banner-container:hover .category-banner-img {
  transform: scale(1.05);
}

.extra-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem 4rem;
}

.extra-menu-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.extra-menu-item-name {
  font-family: var(--font-body);
  color: var(--color-light);
  font-weight: 500;
  flex-shrink: 0;
}

.extra-menu-item-dots {
  flex-grow: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
  height: 1px;
}

.extra-menu-item-price {
  font-family: var(--font-body);
  color: var(--color-gold);
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .extra-menu-container {
    padding: 1.5rem 1rem;
  }

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

/* ============================================
   HEBERGEMENT SPECIAL STYLES
   ============================================ */
.virtual-tour-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--color-gold);
  z-index: 5;
  transition: all var(--transition-normal);
}

.virtual-tour-badge a {
  color: var(--color-gold);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.virtual-tour-badge:hover {
  background: var(--color-gold);
  transform: translateY(-2px);
}

.virtual-tour-badge:hover a {
  color: var(--color-charcoal);
}

.tour-modal-content {
  padding: 0 !important;
  background: black !important;
  overflow: hidden;
}

.room-features {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  border-top: 1px dashed rgba(255, 215, 0, 0.2);
  padding-top: 1rem;
}

.room-features span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.room-features i {
  color: var(--color-gold);
}

.info-notice {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.1);
  padding: 2rem;
  border-radius: var(--radius-md);
  margin-top: 3rem;
}

.info-notice h3 {
  color: var(--color-gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-notice ul {
  list-style: none;
  padding: 0;
}

.info-notice li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.info-notice li::before {
  content: "•";
  color: var(--color-gold);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* ============================================
   PREMIUM CONTACT FORM REDESIGN
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
  margin-top: 4rem;
}

.contact-info {
  background: rgba(255, 255, 255, 0.02);
  padding: 3.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 215, 0, 0.05);
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  height: 100%;
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.03);
  padding: 4rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 215, 0, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.contact-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.contact-form .form-group {
  margin-bottom: 2.5rem;
}

.contact-form label {
  display: block;
  font-family: var(--font-heading);
  color: var(--color-gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.contact-form .form-control {
  width: 100% !important;
  background: rgba(0, 0, 0, 0.4) !important;
  border: none !important;
  border-bottom: 2px solid rgba(255, 215, 0, 0.15) !important;
  border-radius: 0 !important;
  padding: 1.2rem 0 !important;
  color: white !important;
  font-family: var(--font-body) !important;
  font-size: 1.1rem !important;
  transition: all 0.3s ease !important;
}

.contact-form .form-control:focus {
  outline: none !important;
  border-bottom-color: var(--color-gold) !important;
  background: rgba(255, 215, 0, 0.03) !important;
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.2) !important;
  font-size: 1rem !important;
}

.contact-form textarea.form-control {
  min-height: 140px !important;
}

.contact-form .btn-primary {
  margin-top: 1rem;
  height: 65px;
  font-size: 1.2rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  width: 100%;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  transition: transform 0.3s ease;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item:hover {
  transform: translateX(8px);
}

.contact-icon {
  width: 65px;
  height: 65px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-item div strong {
  color: var(--color-gold);
  font-family: var(--font-heading);
  display: block;
  margin-bottom: 0.6rem;
  font-size: 1.3rem;
}

.contact-item div {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.5;
}

.contact-item a {
  color: white;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.contact-item a:hover {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

@media (max-width: 1100px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}

@media (max-width: 768px) {
  .contact-form-container {
    padding: 3rem 2rem;
  }

  .contact-info {
    padding: 2.5rem 2rem;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* ============================================
   TABS - SEO FRIENDLY VISIBILITY
   ============================================ */
.tab-panel {
  display: none;
}

.tab-panel.tab-active {
  display: block;
}

/* ============================================
   VERY SMALL SCREENS (≤ 360px - ~7cm width)
   ============================================ */
@media (max-width: 360px) {
  .nav-links {
    padding: 4rem 1.5rem 2rem;
  }

  .nav-links .nav-link {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
  }

  .nav-item-dropdown .dropdown-link {
    font-size: 0.7rem;
  }

  .logo span {
    font-size: 0.95rem;
  }

  .logo-img {
    height: 38px;
  }

  .mobile-menu-toggle {
    width: 42px;
    height: 42px;
    font-size: 1.4rem;
  }
}