/* * LUMINA HERO - FUTURISTIC & RESPONSIVE FIX */

:root {
  --lumina-green: #0f2826;
  --lumina-green-deep: #051413;
  --lumina-gold: #d4af37;
  --lumina-gold-glow: rgba(212, 175, 55, 0.6);
  --lumina-white: #ffffff;
  --glass-border: rgba(255, 255, 255, 0.15);
}

body,
html {
  margin: 0;
  padding: 0;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  background-color: var(--lumina-green);
  overflow-x: hidden; /* Prevents horizontal scroll/overflow */
}

a {
  text-decoration: none;
}

/* --- FUTURISTIC HERO --- */
.lumina-hero {
  position: relative;
  /* Dynamic height for mobile browsers */
  height: 100vh;
  height: 100dvh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 0 2rem 0;

  /* Background Image */
  background-image: url("images/1.jpeg");
  background-size: cover;
  background-position: center;
}

/* The Overlay - Now a futuristic gradient map */
.lumina-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 40, 38, 0.8) 0%,
    rgba(5, 20, 19, 0.95) 100%
  );
  z-index: 1;
}

/* A subtle radial glow in the center behind text (The "Lumina" effect) */
.lumina-hero::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 70%;
  background: radial-gradient(
    circle,
    rgba(15, 40, 38, 0) 0%,
    rgba(15, 40, 38, 0.8) 80%
  );
  pointer-events: none;
  z-index: 1;
  border-radius: 5rem 0 5rem 0;
}

/* --- GLOBAL LAYOUT FIX --- */
.container {
  width: 100%;
  max-width: 1100px; /* Ensures consistent width across sections */
  margin-left: auto !important; /* Force centering */
  margin-right: auto !important; /* Force centering */
  padding-left: 2rem;
  padding-right: 2rem;
  box-sizing: border-box;
}

/* Optional: Ensure the text alignment inside sections isn't forced to center */
.lumina-intro .container,
.lumina-footer .container {
  text-align: left;
}

/* --- FIX HERO FADING --- */
.lumina-hero .container {
  position: relative !important;
  z-index: 10 !important; /* Forces text to sit on top of the dark overlay */
  text-align: center; /* Ensures text stays centered in hero */
}
/* Typography */
.hero-logo {
  display: block;
  max-width: 15rem; /* Adjust based on your logo shape */
  height: auto;
  margin: 0 auto 0 auto; /* Centers logo and adds space below */
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3)); /* Adds depth against bg */
}

.headline {
  font-family: "Playfair Display", serif;
  font-size: 4rem; /* Kept Large as requested */
  line-height: 1.1;
  margin: 0 0 1.5rem 0;
  color: var(--lumina-white);
  /* Subtle glow on text */
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.sub-headline {
  font-size: 1.4rem; /* Kept Large */
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.9);
  max-width: 750px;
  margin: 0 auto 1.5rem auto;
  font-weight: 300;
}

/* Futuristic Tag */
.opening-line {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.5rem;
  /* Glassmorphism */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 50px; /* Pill shape */
  color: var(--lumina-gold);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* --- BUTTONS (The Fix) --- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px; /* Futuristic Pill Shape */
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
  white-space: nowrap;
}

/* Gold Glow Button */
.btn-primary {
  background: linear-gradient(135deg, #d4af37 0%, #f2d06b 100%);
  color: var(--lumina-green-deep);
  border: none;
  box-shadow: 0 0 20px var(--lumina-gold-glow); /* Outer Glow */
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px var(--lumina-gold-glow);
}

/* Glass Button */
.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--lumina-white);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--lumina-gold);
  color: var(--lumina-gold);
}

/* --- HAMBURGER MENU STYLES (Preserved) --- */
.menu-toggle {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 100;
  background: rgba(15, 40, 38, 0.4);
  backdrop-filter: blur(8px);
  padding: 10px 15px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
}

.menu-toggle:hover {
  background: rgba(15, 40, 38, 0.8);
}

.menu-text {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--lumina-gold);
  letter-spacing: 0.1em;
}

.hamburger-icon span {
  display: block;
  height: 2px;
  width: 24px;
  background-color: var(--lumina-gold);
  margin-bottom: 5px;
  border-radius: 2px;
}
.hamburger-icon span:last-child {
  margin-bottom: 0;
}

/* --- NEW SIDE DRAWER STYLES --- */

/* 1. Scroll Lock Class (Added to BODY via JS) */
body.no-scroll {
  overflow: hidden; /* Freezes the main page */
  height: 100vh;
}

/* 2. Drawer Container */
.side-drawer {
  position: fixed;
  top: 0;
  right: -100%; /* Hidden */
  width: 100%;
  max-width: 450px; /* Slightly wider for modern feel */
  height: 100%; /* Full viewport height */

  /* Deep Green Gradient Background */
  background: linear-gradient(to bottom, #0f2826 0%, #051413 100%);
  border-left: 1px solid rgba(212, 175, 55, 0.3); /* Subtle Gold Border */
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);

  z-index: 2001; /* Above everything */
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);

  /* Layout for pinned header/footer + scrollable middle */
  display: flex;
  flex-direction: column;
}

.side-drawer.open {
  right: 0;
}

/* 3. Drawer Sections */
.drawer-top {
  padding: 0 2rem 0 2rem;
  flex-shrink: 0; /* Never shrinks */
}

.drawer-logo {
  display: block;
  max-width: 140px;
  margin-top: 1rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* The Middle Section - SCROLLABLE */
.drawer-scroll-area {
  flex-grow: 1;
  overflow-y: auto; /* Enables scrolling only here */
  padding: 0 2rem;

  /* Hide Scrollbar visually but keep functionality */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE */
}
.drawer-scroll-area::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

/* 4. Navigation Links */
.nav-links {
  list-style: none;
  padding: 0;
  /* margin: 1rem 0 1rem 0; */
}

.nav-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-links a,
.dropdown-header {
  display: block;
  padding: 0.5rem 0;
  color: var(--lumina-white);
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 400;
  transition: all 0.3s;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links a:hover,
.dropdown-header:hover {
  color: var(--lumina-gold);
  padding-left: 10px; /* Slight movement */
}

.aktive {
  color: var(--gold-primary);
}

/* 5. Dropdown/Accordion Styles */
.dropdown-header .chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  opacity: 0.7;
}

/* When active (Class added via JS) */
.dropdown-item.active .chevron {
  transform: rotate(180deg);
  color: var(--lumina-gold);
}

.sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.2); /* Darker inset */
  max-height: 0; /* Hidden by default */
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}

.dropdown-item.active .sub-menu {
  max-height: 300px; /* Arbitrary large height to allow expansion */
}

.sub-menu li {
  border-bottom: none; /* Remove lines for sub-items */
}

.sub-menu a {
  font-size: 1.1rem; /* Smaller font */
  padding: 0.8rem 0 0.8rem 1.5rem; /* Indented */
  color: rgba(255, 255, 255, 0.7);
  font-family: "Inter", sans-serif; /* Clean font for sub-items */
}

.sub-menu a:hover {
  color: var(--lumina-white);
  background: rgba(255, 255, 255, 0.05);
}

/* 6. Footer (Pinned Button) */
.drawer-footer {
  padding: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  background: #051413;
  flex-shrink: 0;
}

.btn-drawer-gold {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: 1px solid var(--lumina-gold);
  color: var(--lumina-gold);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-drawer-gold:hover {
  background: var(--lumina-gold);
  color: #051413;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); /* Glow effect */
}

.btn-drawer-gold svg {
  width: 18px;
  height: 18px;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--lumina-white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  z-index: 10;
}
.close-btn:hover {
  color: var(--lumina-gold);
}

/* * PROMOTION BANNER STYLES (PUSH EFFECT) */

/* 1. The Banner Itself */
.promo-banner {
  position: fixed;
  top: -50px; /* Hidden above screen initially */
  left: 0;
  width: 100%;
  height: 50px; /* Fixed height for calculations */
  background: linear-gradient(90deg, #d4af37 0%, #e6c252 100%);
  color: var(--lumina-green);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0 1rem;
  box-sizing: border-box;

  /* Smooth Transition for the slide */
  transition: top 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* State: When banner is visible */
.promo-banner.visible {
  top: 0;
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.banner-icon {
  width: 16px;
  height: 16px;
  animation: swing 2s infinite ease-in-out;
}

.banner-close {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--lumina-green);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.banner-close:hover {
  opacity: 1;
}

/* 2. PUSH DOWN ANIMATIONS */

/* Animate the BODY/Content margin to prevent jumpiness */
body {
  transition: padding-top 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Animate the FIXED Menu Button */
.menu-toggle {
  transition: top 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- THE ACTIVE STATE --- */
/* When JavaScript adds 'banner-active' to the body: */

body.banner-active {
  padding-top: 50px; /* Pushes the page flow down */
}

body.banner-active .menu-toggle {
  top: calc(2rem + 50px); /* Pushes the fixed menu button down */
}

/* body.banner-active .lumina-hero {
  background-position: center calc(50% + 25px);
} */

@keyframes swing {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(10deg);
  }
  30% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(5deg);
  }
  70% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* --- 1. ABOUT SECTION --- */
/* --- NEW INTRO SECTION STYLES --- */

.lumina-intro {
  background-color: #f9faf9; /* Very soft warm white */
  padding: 7rem 0;
  overflow: hidden; /* Prevents image stack from spilling */
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-content {
  text-align: left;
}

/* 1. TYPOGRAPHY & DECORATION */
.fancy-heading {
  position: relative;
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: var(--lumina-green);
  margin-bottom: 2rem;
  padding-left: 1.5rem; /* Space for the line */
}

/* The vertical gold line design */
.fancy-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 4px;
  background: var(--lumina-gold);
  border-radius: 2px;
}

/* The gold dot */
.fancy-heading .dot {
  color: var(--lumina-gold);
}

.lead-text {
  font-size: 1.3rem;
  color: #2c3e3c;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: left;
}

.lead-text .highlight {
  color: var(--lumina-gold-hover); /* Darker gold for text */
  font-weight: 600;
}

.body-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* 2. FEATURE LIST WITH ICONS */
.intro-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
}

.intro-features li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 1.5rem;
}

.feature-icon {
  background: rgba(212, 175, 55, 0.1);
  color: var(--lumina-gold-hover);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-text strong {
  color: var(--lumina-green);
  font-size: 1.05rem;
  margin-bottom: 3px;
}

.feature-text span {
  font-size: 0.9rem;
  color: #777;
}

/* 3. READ MORE BUTTON */
.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2rem;
  background-color: transparent;
  border: 2px solid var(--lumina-green);
  color: var(--lumina-green);
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-read-more:hover {
  background-color: var(--lumina-green);
  color: #fff;
  transform: translateX(5px);
}

.arrow-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn-read-more:hover .arrow-icon {
  transform: translateX(5px);
}

/* 4. PICTURE STACK (THE "SELL") */
.image-stack {
  position: relative;
  width: 100%;
  /* Aspect ratio mainly for height reservation */
  height: 500px;
}

.image-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* The Big Back Image */
.img-back {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  height: 85%;
  z-index: 1;
}

/* The Smaller Front Image */
.img-front {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 55%;
  z-index: 2;
  border: 5px solid #f9faf9; /* White border to separate from back img */
  border-radius: 16px; /* Slightly rounder */
}

/* The Floating Quote Badge */
.floating-badge {
  position: absolute;
  bottom: 40px;
  right: -20px; /* Overhangs slightly for modern look */
  width: 260px;
  background: rgba(15, 40, 38, 0.95); /* Deep green */
  backdrop-filter: blur(10px);
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
  z-index: 3;
  border-left: 4px solid var(--lumina-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.badge-icon {
  color: var(--lumina-gold);
  width: 24px;
  height: 24px;
  margin-bottom: 0.8rem;
}

.badge-text {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0;
}

/* --- FEATURES SECTION (Why Lumina) --- */
.lumina-features {
  background-color: var(--lumina-green); /* Deep Brand Green */
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

/* --- SECTION TITLE STYLES --- */

.section-title {
  font-family: "Playfair Display", serif; /* The prestigious school font */
  font-size: 3rem; /* Large and authoritative */
  font-weight: 700; /* Bold */
  margin: 0 0 1rem 0; /* Reset margins */
  text-align: center; /* Ensure it's centered */
  letter-spacing: -0.02em; /* Tighten slightly for modern look */
}

/* Metallic Gold Text Effect */
.text-gold {
  color: #d4af37; /* Fallback for older browsers */

  /* Create the Gold Gradient */
  background: linear-gradient(
    135deg,
    #f2d06b 0%,
    /* Light Gold */ #d4af37 50%,
    /* True Gold */ #b5952f 100% /* Dark Gold Shadow */
  );

  /* Clip the background to the text shape */
  -webkit-background-clip: text;
  background-clip: text;

  /* Make the text transparent so the gradient shows through */
  -webkit-text-fill-color: transparent;

  /* Optional: Subtle drop shadow to lift it off the dark background */
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.lumina-features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(212, 175, 55, 0.05) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.features-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.features-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: -1rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

/* --- THE CARD DESIGN --- */
.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  /* IMPORTANT: Changed from hidden to visible so icon can float */
  overflow: visible;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative; /* Acts as anchor for the icon */
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* 1. Image Area */
.card-image-wrapper {
  position: relative;
  height: 200px;
  width: 100%;
  /* Clips the zooming image, but NOT the icon anymore */
  overflow: hidden;
  border-radius: 12px 12px 0 0; /* Only top corners rounded */
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-card:hover .card-img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 40, 38, 0.2),
    rgba(15, 40, 38, 0.9)
  );
}

/* 2. Floating Icon Badge (Corrected) */
.floating-icon {
  position: absolute;
  /* 175px = 200px (Image Height) - 25px (Half Icon Height) */
  top: 175px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d4af37 0%, #b5952f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: var(--lumina-green);
  z-index: 10; /* Ensures it sits on top of everything */
  border: 4px solid var(--lumina-green); /* Matches section bg */
}

.floating-icon svg {
  width: 24px;
  height: 24px;
}

/* 3. Text Content */
.card-content {
  padding: 2.5rem 2rem 2rem 2rem;
  flex-grow: 1;
  border-radius: 0 0 12px 12px;
}

.feature-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--lumina-white);
  margin: 0 0 1rem 0;
}

.feature-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

/* --- BRIGHT GOLD CTA SECTION --- */
.lumina-cta-bright {
  position: relative;
  padding: 3rem 0;
  /* The Golden Horizon Gradient */
  background: linear-gradient(135deg, #f9e398 0%, #d4af37 40%, #b5952f 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #051413; /* Deep Green Text */
}

/* 1. Texture & Glow for Depth */
.horizon-texture {
  position: absolute;
  inset: 0;
  /* Subtle noise to prevent banding */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.15'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.horizon-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% -20%,
    rgba(255, 255, 255, 0.8) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.relative-z {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* 2. The Bright Card Container */
.cta-card-bright {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem;

  /* Glassmorphism tuned for light background */
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(181, 149, 47, 0.3); /* Golden Shadow */
}

/* 3. Typography & Tags */
.exclusive-tag-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(5, 20, 19, 0.08); /* Subtle dark backing */
  border: 1px solid rgba(5, 20, 19, 0.1);
  border-radius: 50px;
  color: #051413;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.pulsing-dot-dark {
  width: 8px;
  height: 8px;
  background-color: #051413; /* Green dot */
  border-radius: 50%;
  animation: pulse-dark 2s infinite;
}

.bright-heading {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  line-height: 1.1;
  color: #051413;
  margin: 0 auto 1.5rem auto;
}

/* Highlights the text in deep green with a shadow */
.text-highlight-green {
  color: #0f2826;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.3);
  display: block;
}

.bright-sub {
  font-size: 1.25rem;
  color: #2a3b39; /* Softer green-grey */
  max-width: 600px;
  margin: 0 auto 1rem auto;
  line-height: 1.6;
  font-weight: 500;
}

/* 4. The Action Button (Inverted) */
.btn-bright-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 1.2rem 3.5rem;
  background-color: #0f2826;
  color: #d4af37; /* Gold Text */
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 10px 30px rgba(5, 20, 19, 0.25);
  text-decoration: none;
}

.btn-bright-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(5, 20, 19, 0.35);
  background-color: #0f2826; /* Slightly lighter green on hover */
  color: #fff;
}

.btn-bright-primary svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.btn-bright-primary:hover svg {
  transform: translateX(5px);
}

.availability-note-dark {
  font-size: 0.9rem;
  color: #051413;
  opacity: 0.7;
  font-style: italic;
  font-weight: 500;
}

@keyframes pulse-dark {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
}

/* --- 4. FOOTER --- */
.lumina-footer {
  background-color: #051413; /* Very dark green */
  color: #888;
  padding: 4rem 0 2rem 0;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: "Playfair Display", serif;
  color: var(--lumina-white);
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

.footer-col h4 {
  color: var(--lumina-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.footer-col {
  text-align: left;
}

.footer-col .center {
  text-align: center;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--lumina-gold);
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-icon {
  width: 16px;
  height: 16px;
  color: var(--lumina-gold);
}

/* Footer Form */
.footer-form {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-form input {
  background: transparent;
  border: none;
  padding: 10px 15px;
  color: white;
  width: 100%;
  outline: none;
  font-family: inherit;
}

.footer-form button {
  background: var(--lumina-gold);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--lumina-green);
  transition: background 0.2s;
}

.footer-form button:hover {
  background: #fff;
}

.form-note {
  font-size: 0.75rem;
  margin-top: 0.5rem;
  opacity: 0.5;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  /* padding-top: 2rem; */
  opacity: 0.5;
}

/* --- Footer Social Icons --- */
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #888;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-socials a:hover {
  background: var(--lumina-gold);
  border-color: var(--lumina-gold);
  color: var(--lumina-green-deep);
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
}

/* * FLOATING MENU & DRAWER STYLES */

/* The Trigger Button */
.menu-toggle {
  position: fixed; /* Fixed so it stays whilst scrolling */
  top: 2rem;
  right: 2rem;
  z-index: 100;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--lumina-white);
  font-family: "Inter", sans-serif;
  transition: opacity 0.3s ease;
}

.menu-toggle:hover {
  opacity: 0.8;
}

.menu-text {
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  color: var(--lumina-gold); /* Gold text for luxury feel */
}

/* Custom Hamburger Icon using spans */
.hamburger-icon {
  width: 30px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--lumina-gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* The Slide-out Drawer */
.side-drawer {
  position: fixed;
  top: 0;
  right: -400px; /* Hidden off-screen initially */
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--lumina-green); /* Brand Green Background */
  z-index: 2000;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  padding: 3rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* Active State (Open) */
.side-drawer.open {
  right: 0;
}

/* Close Button (X) */
.close-btn {
  position: absolute;
  top: 4rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--lumina-white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

.close-btn:hover {
  color: var(--lumina-gold);
}

/* Drawer Content Styling */
.drawer-header {
  font-family: "Playfair Display", serif;
  color: var(--lumina-gold);
  font-size: 1.5rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 1rem;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links li {
  margin: 0.5rem 0;
}

.nav-links a {
  color: var(--lumina-white);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 300;
  transition: color 0.2s;
  font-family: "Playfair Display", serif;
}

.nav-links a:hover {
  color: var(--lumina-gold);
  padding-left: 10px; /* Subtle movement on hover */
}

.drawer-footer {
  margin-top: auto; /* Pushes to bottom */
}

.btn-small {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border: 1px solid var(--lumina-gold);
  color: var(--lumina-gold);
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.btn-small:hover {
  background: var(--lumina-gold);
  color: var(--lumina-green);
}

/* Dark overlay behind drawer */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}
