@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #C2185B;       /* Fuchsia accent */
  --secondary: #1E293B;     /* Slate Charcoal for headers and main text */
  --accent: #C5A880;        /* Champagne Gold */
  --accent-gold: #C5A880;
  
  --bg: #FFFFFF;            /* White Base */
  --bg-sand: #F5F2EB;       /* Warm Sand lounge color */
  --border-color: rgba(30, 41, 59, 0.08);
  
  --text-dark: #1E293B;     /* Slate Dark Text */
  --text-light: #FFFFFF;
  --text-gray: #64748B;
  
  --font-title: 'Outfit', sans-serif;
  --font-sans: 'Inter', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

input, textarea, button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-sand);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  width: 30px;
  height: 30px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10000;
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}
.custom-cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10001;
}

@media (max-width: 1024px) {
  .custom-cursor, .custom-cursor-dot {
    display: none;
  }
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 20px 0;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  color: var(--primary);
  transition: var(--transition-fast);
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-main {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  text-transform: lowercase;
  color: var(--secondary);
  line-height: 1;
}
.navbar.scrolled .logo-main {
  color: var(--primary);
}
.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 2px;
  color: var(--text-gray);
  margin-top: 2px;
  font-weight: 700;
}
.nav-menu {
  display: flex;
  gap: 32px;
}
.nav-link {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1rem;
  color: var(--secondary);
  position: relative;
  padding: 8px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition-fast);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link.active {
  color: var(--primary) !important;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language Selector */
.lang-selector {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--secondary);
  padding: 6px 12px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
}
.lang-btn:hover {
  background: var(--bg-sand);
}
.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: none;
  flex-direction: column;
  width: 180px;
  overflow: hidden;
}
.lang-dropdown.show {
  display: flex;
}
.lang-dropdown li {
  padding: 12px 16px;
  cursor: pointer;
  transition: var(--transition-fast);
  font-weight: 500;
  font-size: 0.9rem;
}
.lang-dropdown li:hover {
  background: var(--bg-sand);
}
.lang-dropdown li.active {
  color: var(--primary);
  font-weight: 700;
  background: rgba(194, 24, 91, 0.03);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 24px;
}
.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition-fast);
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #FFFFFF;
    flex-direction: column;
    padding: 100px 40px;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
  }
  .nav-menu.active {
    right: 0;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Hero Section (Minimalist Sand & White Lounge) */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--bg-sand);
}
.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-fallback-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.35) 0%, rgba(30, 41, 59, 0.7) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}
.logo-wrapper {
  margin-bottom: 24px;
  color: var(--primary);
}
.hero-logo {
  animation: float 4s ease-in-out infinite;
}
.hero-title {
  font-family: var(--font-title);
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  letter-spacing: -1px;
}
.hero-subtitle {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 5px;
  margin-top: 12px;
  text-transform: uppercase;
}
.hero-tagline {
  font-size: 1.15rem;
  color: var(--text-gray);
  margin-top: 24px;
  font-weight: 500;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 36px;
}
.btn {
  font-family: var(--font-title);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--border-radius-sm);
  display: inline-block;
  transition: var(--transition-fast);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
  border: 1px solid var(--primary);
}
.btn-primary:hover {
  background-color: #A3124C;
  border-color: #A3124C;
  box-shadow: 0 8px 20px rgba(194, 24, 91, 0.15);
}
.btn-secondary {
  border: 1px solid var(--secondary);
  color: var(--secondary);
}
.btn-secondary:hover {
  background-color: var(--secondary);
  color: var(--text-light);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Scroll Down */
.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  display: block;
  width: 2px;
  height: 50px;
  background: rgba(30, 41, 59, 0.2);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  animation: scrollDown 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(-100%); }
  80% { transform: translateY(100%); }
  100% { transform: translateY(100%); }
}

/* Sections */
.section {
  padding: 100px 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-header {
  margin-bottom: 60px;
}
.text-center {
  text-align: center;
}
.section-title {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.5px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-top: 12px;
}

/* Atmosphere Section (Split Sand Layout) */
.atmosphere-section {
  background-color: var(--bg);
}
.atmosphere-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.atmosphere-text {
  position: relative;
}
.atmosphere-number {
  font-family: var(--font-title);
  font-size: 8rem;
  font-weight: 800;
  color: rgba(30, 41, 59, 0.03);
  line-height: 1;
  position: absolute;
  top: -80px;
  left: -20px;
  z-index: 0;
}
.atmosphere-tagline {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.atmosphere-body {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.atmosphere-img-frame {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}
.atmosphere-img-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.atmosphere-img-frame:hover img {
  transform: scale(1.03);
}

/* Curated Showcase Grid */
.showcase-section {
  background-color: var(--bg-sand);
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.showcase-card {
  background: #FFFFFF;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  transition: var(--transition-smooth);
}
.showcase-img-container {
  height: 280px;
  overflow: hidden;
  position: relative;
}
.showcase-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.showcase-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 6px 12px;
  letter-spacing: 1px;
  border-radius: var(--border-radius-sm);
}
.showcase-content {
  padding: 24px;
}
.showcase-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}
.showcase-desc {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
}
.showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(194, 24, 91, 0.05);
}
.showcase-card:hover .showcase-img-container img {
  transform: scale(1.05);
}

/* Video Showcase & Players (Framed Layout) */
.video-showcase-section {
  background-color: var(--bg);
  padding: 100px 0;
}
.video-card-frame {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  padding: 12px;
  background: var(--bg-sand);
  box-shadow: 0 15px 40px rgba(0,0,0,0.03);
}
.framed-video {
  width: 100%;
  height: 480px;
  display: block;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
  background-color: #000;
}

.promo-video-section {
  background-color: var(--bg-sand);
}
.video-player-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  padding: 12px;
  background: #FFFFFF;
  box-shadow: 0 15px 40px rgba(0,0,0,0.03);
}
.promo-video {
  width: 100%;
  height: 480px;
  display: block;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
  background-color: #000;
}

/* Sunset Section */
.sunset-highlight-section {
  background-color: var(--primary);
  color: #FFFFFF;
}
.sunset-highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sunset-highlight-image {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.sunset-highlight-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.sunset-highlight-image:hover img {
  transform: scale(1.02);
}
.sunset-highlight-text {
  position: relative;
}
.sunset-ritual-num {
  font-family: var(--font-title);
  font-size: 8rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  position: absolute;
  top: -80px;
  left: -20px;
}
.sunset-highlight-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 1;
}
.btn-secondary-light {
  border: 1px solid var(--accent-gold) !important;
  color: var(--accent-gold) !important;
  background: transparent !important;
}
.btn-secondary-light:hover {
  background: var(--accent-gold) !important;
  color: var(--primary) !important;
  box-shadow: 0 8px 20px rgba(197, 168, 128, 0.2);
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: 0 8px 24px rgba(0,0,0,0.02);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.gallery-item.size-tall {
  grid-row: span 2;
  height: 540px;
}
.gallery-item.size-wide {
  grid-column: span 2;
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(194, 24, 91, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-fast);
  color: #FFFFFF;
}
.gallery-tag {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.gallery-icon {
  margin-top: 12px;
  font-size: 1.3rem;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Instagram Feed */
.instagram-feed {
  background-color: var(--bg-sand);
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.insta-item {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: 0 8px 24px rgba(0,0,0,0.02);
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 41, 59, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-fast);
  color: #FFFFFF;
}
.insta-overlay i {
  font-size: 2rem;
}
.insta-likes {
  margin-top: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}
.insta-item:hover img {
  transform: scale(1.05);
}
.insta-item:hover .insta-overlay {
  opacity: 1;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(30, 41, 59, 0.95);
  backdrop-filter: blur(8px);
}
.lightbox-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--border-radius-sm);
  animation: zoom 0.3s ease;
}
@keyframes zoom {
  from {transform:scale(0.9); opacity: 0;} 
  to {transform:scale(1); opacity: 1;}
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 35px;
  color: #FFFFFF;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition-fast);
}
.lightbox-close:hover {
  color: var(--primary);
}
.lightbox-caption {
  margin: auto;
  display: block;
  width: 80%;
  text-align: center;
  color: #ccc;
  padding: 15px 0;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
}

/* About Page (Lounge structure) */
.about-tag {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--primary);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: inline-block;
}
.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 24px;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.why-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: var(--border-radius-md);
  display: flex;
  gap: 16px;
  transition: var(--transition-smooth);
}
.why-icon {
  font-size: 1.6rem;
}
.why-content h4 {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.why-content p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.5;
}

/* Reviews Slider */
.reviews-section {
  margin-top: 100px;
}
.reviews-slider-wrapper {
  max-width: 800px;
  margin: 40px auto 0 auto;
  overflow: hidden;
  position: relative;
}
.reviews-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.review-slide {
  min-width: 100%;
  padding: 40px;
  background: var(--bg-sand);
  border-radius: var(--border-radius-lg);
  text-align: center;
}
.review-stars {
  font-size: 1rem;
  margin-bottom: 20px;
}
.review-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}
.review-author {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
}
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.reviews-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(30, 41, 59, 0.15);
  cursor: pointer;
  transition: var(--transition-fast);
}
.reviews-dots .dot.active {
  width: 20px;
  border-radius: 4px;
}

/* Contact page elements */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
}
.info-card {
  padding: 40px;
  border-radius: var(--border-radius-lg);
}
.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}
.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition-fast);
}
.info-content h5 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--secondary);
  margin-bottom: 4px;
}
.info-content p {
  color: var(--text-gray);
  font-size: 0.95rem;
}
.social-links-wrapper {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}
.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}
.contact-form {
  padding: 40px;
  border-radius: var(--border-radius-lg);
}
.form-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-color);
  font-family: var(--font-sans);
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}
.form-feedback {
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.9rem;
  display: none;
}
.form-feedback.success {
  color: #10B981;
}
.form-feedback.error {
  color: #EF4444;
}
.map-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  border: 1px solid var(--border-color);
}

/* Menu Page Design */
.menu-controls {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}
.search-wrapper {
  position: relative;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}
.search-icon {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  color: var(--text-gray);
}
.search-wrapper input {
  width: 100%;
  padding: 16px 50px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  background: var(--bg-sand);
  color: var(--text-dark);
  font-size: 1rem;
  transition: var(--transition-fast);
}
.clear-search {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: var(--text-gray);
  display: none;
}
.clear-search.show {
  display: block;
}
.filter-tabs-wrapper {
  overflow-x: auto;
  padding-bottom: 12px;
}
.filter-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  min-width: max-content;
  margin: 0 auto;
}
.filter-tab {
  font-family: var(--font-title);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.menu-card {
  background: #FFFFFF;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.02);
  transition: var(--transition-smooth);
}
.menu-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.menu-card-icon-wrapper {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: var(--transition-smooth);
}
.menu-card-info {
  padding: 24px;
}
.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.menu-card-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--secondary);
}
.menu-card-price {
  font-family: var(--font-title);
  font-weight: 800;
  color: var(--primary);
  font-size: 1.15rem;
}
.menu-card-desc {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.5;
}
.no-results {
  grid-column: span 3;
  text-align: center;
  padding: 80px 0;
  color: var(--text-gray);
}

/* Floating Controls */
.floating-controls {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transition: var(--transition-fast);
}
.float-btn:hover {
  transform: translateY(-5px);
}
.float-call {
  background-color: var(--accent-gold);
}
.float-top {
  background-color: var(--secondary);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
}
.float-top.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* Luxury Minimalist Footer */
.footer {
  background-color: var(--bg-sand);
  padding: 80px 0 40px 0;
  border-top: 1px solid var(--border-color);
  color: var(--secondary);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-brand-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: 0.5px;
  text-transform: lowercase;
  color: var(--secondary);
  line-height: 1;
}
.footer-brand-subtitle {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--text-gray);
  margin-top: 4px;
  font-weight: 700;
}
.footer-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 24px;
}
.footer-text {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-text a:hover {
  color: var(--primary);
}
.footer-social-icons {
  display: flex;
  gap: 12px;
}
.footer-social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  transition: var(--transition-fast);
}
.footer-social-icons a:hover {
  background-color: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
}
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  color: var(--text-gray) !important;
  font-size: 0.85rem;
}

/* Responsive Editorial Layouts */
@media (max-width: 1024px) {
  .atmosphere-grid,
  .sunset-highlight-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .atmosphere-image,
  .sunset-highlight-image {
    order: -1;
  }
  .atmosphere-img-frame img,
  .sunset-highlight-image img {
    height: 380px;
  }
  .showcase-grid,
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 40px;
  }
  .framed-video,
  .promo-video {
    height: 360px;
  }
}
@media (max-width: 768px) {
  .showcase-grid,
  .menu-grid,
  .gallery-grid,
  .insta-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item.size-tall {
    grid-row: span 1;
    height: 260px;
  }
  .gallery-item.size-wide {
    grid-column: span 1;
  }
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-brand {
    align-items: center;
    text-align: center;
  }
  .footer-social-icons {
    justify-content: center;
  }
  .footer-text {
    justify-content: center;
  }
  .framed-video,
  .promo-video {
    height: 260px;
  }
}

/* Video Background & Responsive Hero Image */
.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
}
.hero-bg-image {
  display: none;
}

/* PC/Desktop Layout Overrides: Show Image, Hide Video */
@media (min-width: 769px) {
  .hero-bg-video {
    display: none;
  }
  .hero-bg-image {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(245, 242, 235, 0.4) 0%, rgba(245, 242, 235, 0.8) 100%) !important;
  }
  .hero-title {
    color: var(--secondary) !important;
    text-shadow: none !important;
  }
  .hero-subtitle {
    color: var(--primary) !important;
    text-shadow: none !important;
  }
  .hero-tagline {
    color: var(--text-gray) !important;
    text-shadow: none !important;
  }
  .hero-buttons .btn-secondary {
    border-color: var(--secondary) !important;
    color: var(--secondary) !important;
  }
  .logo-wrapper {
    color: var(--primary) !important;
  }
}

/* Menu Page Controls & Card Overhaul (Luxury Price Badge) */
.menu-controls {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}
.search-wrapper {
  position: relative;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}
.search-icon {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  color: var(--text-gray);
}
.search-wrapper input {
  width: 100%;
  padding: 16px 50px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  background: var(--bg-sand);
  color: var(--text-dark);
  font-size: 1rem;
  transition: var(--transition-fast);
}
.clear-search {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: var(--text-gray);
  display: none;
}
.clear-search.show {
  display: block;
}
.filter-tabs-wrapper {
  overflow-x: auto;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}
.filter-tabs-wrapper::-webkit-scrollbar {
  display: none;
}
.filter-tabs-wrapper {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.filter-tabs {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  min-width: max-content;
  padding: 0 20px;
  margin: 0 auto;
}
.filter-tab {
  font-family: var(--font-title);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  background: var(--bg-sand);
  color: var(--text-gray);
  border: 1px solid var(--border-color);
  transition: var(--transition-fast);
}
.filter-tab:hover {
  background: #FFFFFF;
  color: var(--primary);
  border-color: var(--primary);
}
.filter-tab.active {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(194, 24, 91, 0.25);
}
@media (min-width: 992px) {
  .filter-tabs {
    justify-content: center;
    padding: 0;
  }
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.menu-card {
  position: relative;
  background: #FFFFFF;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0,0,0,0.01);
  overflow: hidden;
  transition: var(--transition-smooth);
}
.menu-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(194, 24, 91, 0.08);
}
.menu-card-price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #B0926A 100%);
  color: #FFFFFF;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 30px;
  z-index: 10;
  box-shadow: 0 6px 15px rgba(197, 168, 128, 0.35);
  border: 1.5px solid #FFFFFF;
}
.menu-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.menu-card:hover .menu-card-img {
  transform: scale(1.05);
}
.menu-card-icon-wrapper {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  background: radial-gradient(circle at center, rgba(245, 242, 235, 0.8) 0%, rgba(194, 24, 91, 0.03) 100%);
  color: var(--primary);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}
.menu-card:hover .menu-card-icon-wrapper {
  background: radial-gradient(circle at center, rgba(194, 24, 91, 0.08) 0%, rgba(194, 24, 91, 0.15) 100%);
  color: #A3124C;
}
.menu-card-icon-wrapper i {
  filter: drop-shadow(0 4px 6px rgba(194, 24, 91, 0.15));
}
.menu-card-info {
  padding: 20px;
}
.menu-card-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--secondary);
  margin-bottom: 8px;
}
.menu-card-desc {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.5;
}
.no-results {
  grid-column: span 3;
  text-align: center;
  padding: 80px 0;
  color: var(--text-gray);
}

/* Floating Controls */
.floating-controls {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transition: var(--transition-fast);
}
.float-btn:hover {
  transform: translateY(-5px);
}
.float-call {
  background-color: var(--accent-gold);
}
.float-top {
  background-color: var(--secondary);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
}
.float-top.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* Luxury Minimalist Footer */
.footer {
  background-color: var(--bg-sand);
  padding: 80px 0 40px 0;
  border-top: 1px solid var(--border-color);
  color: var(--secondary);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-brand-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: 0.5px;
  text-transform: lowercase;
  color: var(--secondary);
  line-height: 1;
}
.footer-brand-subtitle {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--text-gray);
  margin-top: 4px;
  font-weight: 700;
}
.footer-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 24px;
}
.footer-text {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-text a:hover {
  color: var(--primary);
}
.footer-social-icons {
  display: flex;
  gap: 12px;
}
.footer-social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  transition: var(--transition-fast);
}
.footer-social-icons a:hover {
  background-color: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
}
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  color: var(--text-gray) !important;
  font-size: 0.85rem;
}

/* Responsive Editorial Layouts */
@media (max-width: 1024px) {
  .atmosphere-grid,
  .sunset-highlight-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .atmosphere-image,
  .sunset-highlight-image {
    order: -1;
  }
  .atmosphere-img-frame img,
  .sunset-highlight-image img {
    height: 380px;
  }
  .showcase-grid,
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 40px;
  }
  .framed-video,
  .promo-video {
    height: 360px;
  }
}
@media (max-width: 768px) {
  .showcase-grid,
  .menu-grid,
  .gallery-grid,
  .insta-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item.size-tall {
    grid-row: span 1;
    height: 260px;
  }
  .gallery-item.size-wide {
    grid-column: span 1;
  }
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-brand {
    align-items: center;
    text-align: center;
  }
  .footer-social-icons {
    justify-content: center;
  }
  .footer-text {
    justify-content: center;
  }
  .framed-video,
  .promo-video {
    height: 260px;
  }
}
