html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.footer {
  margin-top: 0;
}
/* ================= RESET & LENIS ================= */
html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #0c0c0c;
  color: white;
  overscroll-behavior: none;
}

/* ================= NAVBAR ================= */
/* ================= PREMIUM GLASS NAVBAR ================= */
.navbar {
  position: fixed;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);

  opacity: 0;

  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);

  z-index: 1000;

  width: 100%;
  max-width: 1200px;
  height: 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 14px 28px;
  border-radius: 50px;

  /* 🔥 GLASS BASE */
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.02)
  );

  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);

  /* 🔥 BORDER GLOW */
  border: 1px solid rgba(255, 255, 255, 0.18);

  /* 🔥 DEPTH SHADOW */
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);

  z-index: 1000;

  transition: all 0.4s ease;
}
/* 🔥 TOP LIGHT REFLECTION */
.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.25),
    transparent 40%
  );

  opacity: 0.4;
  pointer-events: none;
}
/* OPTIONAL: subtle warm luxury tint */
.navbar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;

  background: linear-gradient(
    90deg,
    rgba(200,160,60,0.08),
    rgba(255,140,0,0.06)
  );

  pointer-events: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  letter-spacing: 0.02em;

  transition: 0.3s;
}

.nav-links a:hover {
  color: white;
  text-shadow: 0 0 8px rgba(255,255,255,0.4);
}


.navbar.show {
  top: 20px;
  opacity: 1; /* 🔥 REQUIRED */
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
}
.logo .ocean-text,
.logo .paradise-text {
  font-size: 26px;
  line-height: 1;
}

.logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: 0.4s;
}

.logo:hover img {
  transform: scale(1.1) rotate(5deg);
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 55px;
  margin-left: -140px;
}


.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: white;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* BUTTON */
.btn-primary {
  background: rgba(255, 255, 255, 0.386);
  color: black;
  padding: 8px 18px;
  border-radius: 30px;
  border: none;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
  width: 120px;
  height: 55px ;
}
.btn-primary a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  position: relative;
  transition: 0.3s;
  font-size: 20px;
}

.btn-primary:hover {
  transform: scale(1.05);
  background: #e4c359;
}

/* ================= HERO ================= */
.scroll-container {
  height: 300vh; 
  position: relative;
  z-index: 1; /* Keep hero below the content sections */
}

.sticky-hero {
  position: sticky;
  top: 0;
  height: 100vh;
}

canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-text h1 {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;

  font-size: 6rem;
  font-family: 'Playfair Display', serif;
  

  opacity: 1;
  transition: 0.8s;
}

/* ================= SECTION ================= */
.section {
  position: relative;
  z-index: 10; /* Higher than scroll-container */
  background: #ffffff00; /* Matches your body background */
  padding: 120px 20px;
  text-align: center;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  margin-bottom: 20px;
}

.section-subtitle {
  color: rgba(255,255,255,0.6);
  margin-bottom: 100px;
}

/* ================= CARDS ================= */
/* ================= CARDS CONTAINER ================= */
.cards {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================= CARD ================= */
/* ================= GLASS CARD (UPDATED) ================= */

.card {
  width: 500px;
  height: 600px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  transition: 0.4s;

  /* 🔥 REAL GLASS */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);

  border: 1px solid rgba(255,255,255,0.15);

  box-shadow:
    0 10px 40px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

/* IMAGE */
.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: 0.6s ease;
}


/* 🔥 CONTENT (NO WHITE BACKGROUND) */
.villa-card {
  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  padding: 30px;

  background: transparent; /* ❌ removed white */
  color: white;

  z-index: 2;
}

/* TITLE */
.villa-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: white;
}

/* PRICE */
.villa-info .price {
  color: rgba(255,255,255,0.7);
}

/* DESCRIPTION */
.villa-info .desc {
  color: rgba(255,255,255,0.6);
}

/* 🔥 SMOOTH BLEND OVERLAY (KEY FIX) */
.card::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,0.4) 70%,
    rgba(0,0,0,0.7) 100%
  );

  pointer-events: none;
}

/* ARROW */
.arrow {
  position: absolute;
  bottom: -25px;
  right: -25px;

  width: 90px;
  height: 90px;

  background: black;
  color: white;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  transition: 0.3s;
}

/* HOVER */
.card:hover {
  transform: translateY(-10px) scale(1.02);
}

.card:hover img {
  transform: scale(1.08);
}

.card:hover .arrow {
  transform: translate(-8px, -8px);
  background: #e4c359;
  color: black;
}

/* ================= DESTINATIONS ================= */
.destinations {
  padding: 120px 40px;
}

.dest-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
}


.dest-header span {
  color: inherit;
}

.dest-header .line {
  width: 250px;
  height: 3px;
  background: #e4c359;
  margin-bottom: 150px;
}

/* GRID */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 20px;
}

/* CARD */
.dest-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.4s;
}

.dest-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

/* VIDEO */
.dest-card video {
  width: 110%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}


/* DARK OVERLAY */
.dest-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  transition: 0.5s;
}

/* ✨ FIXED GLASS EFFECT */
.overlay-glass {
  position: absolute;
  inset: 10px;
  border-radius: 20px;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.15);

  opacity: 0;
  transition: 0.5s;
}

/* CONTENT */
.dest-card .content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;

  transform: translateY(20px);
  opacity: 0.8;
  transition: 0.5s;
}

/* TAG */
.tag {
  font-size: 12px;
  background: rgba(0,0,0,0.5);
  padding: 5px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}

/* HOVER */
.dest-card:hover video {
  transform: scale(1.1);
}

.dest-card:hover .overlay {
  background: rgba(0,0,0,0.3);
}

.dest-card:hover .overlay-glass {
  opacity: 1;
  transform: scale(1);
}

.dest-card:hover .content {
  transform: translateY(0);
  opacity: 1;
}

/* ================= FOOTER ================= */
/* ================= GLASS FOOTER ================= */
.footer {
  position: relative;

  padding: 100px 40px 40px;

  /* 🔥 SAME AS CARDS */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);

  border-top: 1px solid rgba(255,255,255,0.15);

  box-shadow:
    0 -10px 40px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* HEADINGS */
.footer h4 {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 25px;
}

/* LIST */
.footer ul {
  padding: 0;
  margin: 0;
}

.footer li {
  list-style: none;
  font-size: 18px;
  margin-bottom: 18px;

  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;

  transition: 0.3s;
}

/* HOVER */
.footer li:hover {
  color: white;
  transform: translateX(4px);
}

/* BOTTOM */
.footer-bottom {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .dest-grid {
    grid-template-columns: 1fr;
  }

  .dest-card.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

 
}
 /* ================= GOLD GRADIENT TEXT ================= */
  .text-gradient-gold {
  background: linear-gradient(
    90deg,
    #c9a227,
    #e6c65c,
    #f5a623,
    #ff6a00
  );

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;

  display: inline-block; /* 🔥 IMPORTANT */
 }

.text-ocean-blue {
  background: linear-gradient(
    90deg,
    #9fe8ff,
    #3fbfff,
    #003366,
    #0077cc
  );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;

  display: inline-block;
}


/* ===== DESTINATION TEXT ===== */
.dest-card .tag {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.dest-card .title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
}

.dest-card .desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.dest-card .explore {
  background: none;
  border: none;
  color: white;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid white;
  cursor: pointer;
}

.dest-card .explore:hover {
  color: #e4c359;
  border-color: #e4c359;
}

/* HOVER ANIMATION */
.dest-card .content {
  transform: translateY(30px);
  opacity: 0;
  transition: 0.5s;
}

.dest-card:hover .content {
  transform: translateY(0);
  opacity: 1;
}
/* ===== GLASS OVERLAY (PREMIUM) ===== */
.overlay-glass {
  position: absolute;
  inset: 12px;
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.12);

  opacity: 0;
  transform: scale(0.96);
  transition: all 0.5s ease;
}
/* ================= VILLA CARD (WHITE LUXURY PANEL) ================= */

.card {
  position: relative;
  overflow: hidden;
}

/* FLOATING WHITE PANEL */
.villa-card {
  position: absolute;
  bottom: 20px; /* 🔥 IMPORTANT FIX */
  left: 50%;
  transform: translateX(-50%);

  width: 85%;
  background: #f2f2f2;
  color: #111;

  border-radius: 30px;
  padding: 25px;

  box-shadow: 0 20px 50px rgba(0,0,0,0.3);

  z-index: 5; /* 🔥 ENSURE VISIBILITY */
}

/* TITLE */
.villa-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

/* PRICE */
.villa-card .price {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

/* DESCRIPTION */
.villa-card .desc {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

/* ARROW BUTTON */
.villa-card .arrow {
  position: absolute;
  bottom: -20px;
  right: -20px;

  width: 70px;
  height: 70px;

  border-radius: 50%;
  background: rgba(0,0,0,0.05);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  transition: 0.3s;
}

/* HOVER EFFECT */
.card:hover .villa-card {
  transform: translateX(-50%) translateY(-10px);
}

.card:hover .arrow {
  background: black;
  color: white;
  transform: translate(-8px, -8px);
}
/* BACKGROUND VIDEO */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Changed from 'fill' to avoid stretching */
  z-index: -2;
}

/* DARK OVERLAY */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
#bg-video {
  filter: brightness(0.6) contrast(1.1) saturate(1.1);
}
@keyframes zoomVideo {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

#bg-video {
  animation: zoomVideo 20s ease-in-out infinite alternate;
}
/* ================= FOOTER LOGO ================= */
.footer {
  position: relative; /* ✅ important */
  z-index: 5;

  margin-top: 100px; /* creates proper spacing from content */

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border-top: 1px solid rgba(255,255,255,0.1);

  padding: 100px 40px 40px;
}

.footer-logo {
  position: absolute; /* 🔥 key */
  bottom: 20px;
  right: 40px;

  width: 60px;
  height: 60px;

  border-radius: 50%;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);

  padding: 8px;

  opacity: 0.8;
  transition: 0.3s;
}

.footer-logo:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* ================= ABOUT HERO ================= */
.about-hero {
  position: relative;

  margin-top: 120px; /* 🔥 pushes hero below navbar */

  height: 60vh;
  background: url("images/resort.jpg") center/cover no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  border-radius: 30px;
  margin-left: 20px;
  margin-right: 20px;

  overflow: hidden;
}

.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  margin-bottom: 20px;
}

.about-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
}

/* ================= ABOUT SECTION ================= */
.about-section {
  padding: 100px 40px;
  display: flex;
  justify-content: center;
}

.about-container {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* TEXT BLOCK */
.about-text {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;

  border: 1px solid rgba(255,255,255,0.1);
}

/* HEADINGS */
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 20px;
}

/* PARAGRAPH */
.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
}
/* ================= HERO ================= */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
}

.hero-content p {
  letter-spacing: 0.3em;
  font-size: 12px;
  opacity: 0.7;
}

/* ================= MAIN SECTION ================= */
.about-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;

  padding: 80px 100px;
  color: white;
}

/* LEFT TEXT */
.about-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 20px;
}

.about-left p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

/* RIGHT GLASS CARD */
.about-right {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border-radius: 20px;
  padding: 40px;

  border: 1px solid rgba(255,255,255,0.1);
}

/* TITLE */
.about-right h3 {
  font-size: 14px;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.6);
}

/* LIST */
.about-right ul {
  list-style: none;
  padding: 0;
}

.about-right li {
  margin-bottom: 15px;
  font-size: 16px;
  color: rgba(255,255,255,0.85);

  transition: 0.3s;
}

.about-right li:hover {
  color: white;
  transform: translateX(5px);
}
/* ================= LOGO GRADIENT (OCEAN PARADISE) ================= */

/* OCEAN (BLUE) */
.logo .ocean-text {
  font-family: 'Pacifico', cursive;

  background: linear-gradient(
    to bottom,
    #003366,
    #0077cc,
    #3fbfff,
    #9fe8ff    
  );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;

  text-shadow:
    2px 2px 0 #002244,
    4px 4px 10px rgba(0,0,0,0.5);
}

/* PARADISE (GOLD) */
.logo .paradise-text {
  font-family: 'Fredoka', sans-serif;

  background: linear-gradient(
    to bottom,
    #fff3a0,
    #ffd84d,
    #ff9a00,
    #cc5500
  );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;

  text-shadow:
    2px 2px 0 #7a3b00,
    4px 4px 10px rgba(0,0,0,0.5);
}
/* ================= PREMIUM RESERVE POPUP ================= */

.popup-overlay{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(10px);

  z-index: 99999;

  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
}

.popup-overlay.active{
  opacity: 1;
  visibility: visible;
}

.popup-box{
  width: 580px;
  max-width: 92%;
  background: #050505;
  border-radius: 28px;
  overflow: hidden;

  position: relative;
  transform: translateY(30px);
  transition: 0.4s ease;
}

.popup-overlay.active .popup-box{
  transform: translateY(0);
}
/* top image */
.popup-top{
  height: 180px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  background:
  linear-gradient(to bottom, rgba(0,0,0,0.08), rgba(0,0,0,0.95)),
  url("Coastal\ logo\ with\ sun\ and\ waves.png") center/cover no-repeat;
}

.popup-top h2{
  color: #f6ece8;
  font-size: 34px;
  font-weight: 500;
  margin: 0;
  line-height: 1.1;
  font-family: "Cormorant Garamond", serif;
}

.popup-top p{
  margin: 6px 0 0;
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* close */
.close-btn{
  position: absolute;
  top: 18px;
  right: 18px;

  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;

  background: rgba(255,255,255,0.13);
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
}

/* form */
.popup-form{
  padding: 34px 36px 28px;
}

.row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 22px;
}

.input-box{
  display: flex;
  flex-direction: column;
}

.input-box label{
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.input-box input,
.input-box select{
  height: 56px;
  padding: 0 18px;

  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);

  background: #161616;
  color: white;
  font-size: 16px;
  outline: none;
}

.full{
  margin-bottom: 22px;
}

.full input{
  width: 100%;
}

/* button */
.confirm-btn{
  width: 100%;
  height: 58px;
  margin-top: 18px;

  border: none;
  border-radius: 12px;

  background: #f2f2f2;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;

  cursor: pointer;
  transition: .3s ease;
}

.confirm-btn:hover{
  transform: translateY(-2px);
}

.popup-form small{
  display: block;
  text-align: center;
  margin-top: 18px;

  color: rgba(255,255,255,0.38);
  font-size: 12px;
  letter-spacing: .5px;
}

/* mobile */
@media(max-width:700px){

  .popup-box{
    width: 94%;
    min-height: auto;
  }

  .popup-form{
    padding: 24px;
  }

  .row{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .popup-top h2{
    font-size: 28px;
  }
}
.explore{
  text-decoration: none !important;
  border-bottom: none !important;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.explore:hover,
.explore:focus,
.explore:active{
  text-decoration: none !important;
  border-bottom: none !important;
}
.arrow,
.arrow a,
.arrow span {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

.arrow::after,
.arrow a::after,
.arrow span::after {
  display: none !important;
  content: none !important;
}

.booking-hero{
  height: 65vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:0 20px;
  position:relative;
}

.booking-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

.booking-hero-content{
  position:relative;
  z-index:2;
}

.booking-hero h1{
  font-family:'Playfair Display', serif;
  font-size:5rem;
  margin-bottom:15px;
}

.booking-hero p{
  color:rgba(255,255,255,0.7);
  font-size:18px;
}

/* ROOM SECTION */

.rooms-section{
  padding:100px 40px;
}

.rooms-title{
  text-align:center;
  font-size:4rem;
  font-family:'Playfair Display', serif;
  margin-bottom:70px;
}

.booking-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:35px;
}

/* LEFT */

.room-list{
  display:flex;
  flex-direction:column;
  gap:30px;
}

.room-card{
  display:flex;
  gap:25px;
  height: 400px;

  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,0.1);

  border-radius:28px;
  overflow:hidden;
  transition:0.4s;
}

.room-card:hover{
  transform:translateY(-6px);
}

.room-card img{
  width:400px;
  height:400px;
  object-fit:cover;
}

.room-content{
  padding:28px;
  flex:1;
}

.room-content h3{
  font-size:2rem;
  margin-bottom:12px;
  font-family:'Playfair Display', serif;
}

.room-content p{
  color:rgba(255,255,255,0.68);
  line-height:1.7;
  margin-bottom:18px;
}

.features{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
  margin-bottom:22px;
}

.features span{
  padding:8px 14px;
  border-radius:30px;
  background:rgba(255,255,255,0.07);
  font-size:13px;
}

.room-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.price{
  font-size:1.7rem;
  font-weight:600;
}

.price small{
  font-size:14px;
  color:rgba(255,255,255,0.6);
}

.select-btn{
  border:none;
  margin-bottom: 12px;
  padding:14px 28px;
  border-radius:30px;
  font-weight:600;
  cursor:pointer;
  background:#e4c359;
  color:black;
}

/* RIGHT PANEL */

.summary{
  position:sticky;
  top:120px;

  height:fit-content;

  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,0.1);

  border-radius:28px;
  padding:30px;
}

.summary h3{
  font-size:2rem;
  font-family:'Playfair Display', serif;
  margin-bottom:25px;
}

.form-group{
  margin-bottom:18px;
}

.form-group label{
  display:block;
  margin-bottom:8px;
  color:rgba(255,255,255,0.7);
  font-size:14px;
}

.form-group input,
.form-group select,
.form-group textarea{
  width:90%;
  height:52px;
  border:none;
  outline:none;
  border-radius:14px;
  padding:0 16px;
  background:#151515;
  color:white;
}

.form-group textarea{
  height:110px;
  padding-top:14px;
  resize:none;
}

.total-box{
  margin:22px 0;
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,0.05);
}

.total-box p{
  margin:8px 0;
  display:flex;
  justify-content:space-between;
}

.confirm-btn{
  width:100%;
  height:58px;
  border:none;
  border-radius:16px;
  background:white;
  color:black;
  font-weight:700;
  cursor:pointer;
}

/* MOBILE */

@media(max-width:1000px){

.booking-grid{
grid-template-columns:1fr;
}

.summary{
position:relative;
top:0;
}

.room-card{
flex-direction:column;
}

.room-card img{
width:100%;
height:260px;
}

.booking-hero h1{
font-size:3rem;
}

.rooms-title{
font-size:2.6rem;
}

}

/* ================= ROOM POPUP ================= */

.room-popup-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.75);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);

  display:flex;
  justify-content:center;
  align-items:center;

  z-index:99999;

  opacity:0;
  visibility:hidden;
  transition:0.4s ease;
}

.room-popup-overlay.active{
  opacity:1;
  visibility:visible;
}

.room-popup-box{
  width:1000px;
  max-width:94%;
  max-height:92vh;
  overflow-y:auto;

  border-radius:28px;
  background:rgba(10,10,10,0.96);

  border:1px solid rgba(255,255,255,0.08);

  box-shadow:0 30px 80px rgba(0,0,0,0.45);

  transform:translateY(30px) scale(.96);
  transition:0.4s ease;
}

.room-popup-overlay.active .room-popup-box{
  transform:translateY(0) scale(1);
}

/* top image */

.room-popup-top{
  height:420px;
  overflow:hidden;
}

.room-popup-top img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* close */

.room-close-btn{
  position:absolute;
  top:20px;
  right:25px;

  width:42px;
  height:42px;
  border:none;
  border-radius:50%;

  background:rgba(255,255,255,0.15);
  color:white;
  font-size:22px;
  cursor:pointer;
}

/* content */

.room-popup-content{
  padding:38px;
}

.room-popup-content h2{
  font-family:'Playfair Display', serif;
  font-size:3rem;
  margin-bottom:8px;
}

.popup-price{
  color:#e4c359;
  font-size:1.2rem;
  margin-bottom:28px;
}

.popup-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-bottom:28px;
}

.popup-grid span{
  background:rgba(255,255,255,0.05);
  padding:14px;
  border-radius:14px;
  text-align:center;
  font-size:14px;
}

.popup-desc{
  color:rgba(255,255,255,0.7);
  line-height:1.8;
  margin-bottom:30px;
}

.popup-book-btn{
  width:100%;
  height:58px;
  border:none;
  border-radius:16px;
  background:#e4c359;
  color:black;
  font-weight:700;
  font-size:15px;
  cursor:pointer;
  transition:0.3s;
}

.popup-book-btn:hover{
  transform:translateY(-2px);
}

/* mobile */

@media(max-width:800px){

.popup-grid{
grid-template-columns:1fr 1fr;
}

.room-popup-top{
height:260px;
}

.room-popup-content h2{
font-size:2rem;
}

.room-popup-content{
padding:24px;
}

}

/* ================= POPUP IMAGE SLIDER ================= */

.popup-slider{
  position:relative;
  height:430px;
  overflow:hidden;
}

.popup-slider img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* arrows */

.slide-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);

  width:48px;
  height:48px;
  border:none;
  border-radius:50%;

  background:rgba(0,0,0,0.45);
  color:white;
  font-size:24px;
  cursor:pointer;
  z-index:5;
}

.slide-arrow.left{
  left:20px;
}

.slide-arrow.right{
  right:20px;
}

/* dots */

.slider-dots{
  position:absolute;
  bottom:18px;
  left:50%;
  transform:translateX(-50%);

  display:flex;
  gap:10px;
}

.slider-dots span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:rgba(255,255,255,0.35);
  cursor:pointer;
}

.slider-dots span.active{
  background:#e4c359;
}

@media(max-width:800px){

.popup-slider{
height:260px;
}

}
/* ================= SLIDER ARROWS ================= */

.slide-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:20;

  width:56px;
  height:56px;
  border:none;
  border-radius:50%;

  background:rgba(0,0,0,0.45);
  backdrop-filter:blur(8px);

  color:white;
  font-size:26px;
  cursor:pointer;

  display:flex;
  justify-content:center;
  align-items:center;

  transition:0.3s ease;
}

.slide-arrow:hover{
  background:#e4c359;
  color:black;
  transform:translateY(-50%) scale(1.08);
}

.slide-arrow.left{
  left:22px;
}

.slide-arrow.right{
  right:22px;
}

@media(max-width:800px){

.slide-arrow{
width:46px;
height:46px;
font-size:22px;
}

.slide-arrow.left{
left:12px;
}

.slide-arrow.right{
right:12px;
}

}
.card-slider{
position:relative;
width:400px;
height:400px;
overflow:hidden;
flex-shrink:0;
}

.card-slide{
position:absolute;
inset:0;
width:100%;
height:100%;
object-fit:cover;
opacity:0;
transition:opacity .8s ease;
}

.card-slide.active{
opacity:1;
}
.restaurant-hero {
  position: relative;

  margin-top: 120px; /* 🔥 pushes hero below navbar */

  height: 60vh;
  background: url("images/resort.jpg") center/cover no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  border-radius: 30px;
  margin-left: 20px;
  margin-right: 20px;

  overflow: hidden;
}
.booking-hero {
  position: relative;

  margin-top: 120px; /* 🔥 pushes hero below navbar */

  height: 60vh;
  background: url("images/resort.jpg") center/cover no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  border-radius: 30px;
  margin-left: 20px;
  margin-right: 20px;

  overflow: hidden;
}

/* ===================================== */
/* PREMIUM MOBILE VERSION */
/* ===================================== */

@media (max-width: 768px){

html,body{
overflow-x:hidden;
}

/* ================= NAVBAR ================= */

.navbar{
width:92%;
top:10px !important;
padding:10px 14px;
border-radius:22px;
height:58px;
}

.logo{
gap:8px;
}

.logo img{
width:40px;
height:40px;
}

.logo .ocean-text,
.logo .paradise-text{
font-size:17px;
}

.nav-links{
display:none;
}

.btn-primary{
width:92px;
height:40px;
font-size:13px;
padding:0;
border-radius:14px;
}

/* ================= HERO ================= */

.hero-text h1,
.hero-content h1{
font-size:2.3rem !important;
line-height:1.05;
padding:0 16px;
}

.hero-content p{
font-size:13px;
letter-spacing:.12em;
padding:0 20px;
}

.scroll-container{
height:180vh;
}

/* ================= SECTION ================= */

.section,
.destinations,
.rooms-section,
.about-main{
padding:55px 16px !important;
}

/* ================= HOME CARDS ================= */

.cards{
display:flex;
flex-direction:column;
gap:18px;
}

.card{
width:100%;
height:auto;
border-radius:24px;
}

.card img{
height:230px;
}

.villa-info{
padding:18px;
}

.villa-info h3{
font-size:1.5rem;
}

.arrow{
width:64px;
height:64px;
font-size:18px;
bottom:-16px;
right:-16px;
}

/* ================= DESTINATION ================= */

.dest-grid{
grid-template-columns:1fr !important;
gap:16px;
}

.dest-card,
.dest-card.large{
grid-column:auto;
grid-row:auto;
min-height:260px;
border-radius:22px;
}

.dest-card .title{
font-size:2rem;
}

/* ================= BOOKING PAGE ================= */

.booking-grid{
grid-template-columns:1fr !important;
gap:22px;
}

.room-card{
flex-direction:column;
height:auto;
border-radius:24px;
}

.card-slider,
.room-card img{
width:100%;
height:230px;
}

.room-content{
padding:18px;
}

.room-content h3{
font-size:1.7rem;
}

.features{
gap:10px;
}

.features span{
font-size:12px;
padding:8px 12px;
}

.room-bottom{
flex-direction:column;
gap:10px;
align-items:stretch;
}

.select-btn{
width:100%;
height:48px;
border-radius:14px;
}

/* ================= SUMMARY ================= */

.summary{
position:relative;
top:0;
padding:20px;
border-radius:24px;
}

.summary h3{
font-size:1.7rem;
}

.form-group input,
.form-group select,
.form-group textarea{
width:100%;
box-sizing:border-box;
height:48px;
border-radius:12px;
}

.form-group textarea{
height:110px;
}

.confirm-btn{
height:52px;
border-radius:14px;
}

/* ================= ABOUT PAGE ================= */

.about-main{
grid-template-columns:1fr;
gap:22px;
}

.about-left h2{
font-size:2rem;
}

.about-right{
padding:22px;
}

/* ================= FOOTER ================= */

.footer{
padding:55px 16px 28px;
}

.footer-grid{
grid-template-columns:1fr 1fr;
gap:20px;
}

.footer h4{
font-size:10px;
}

.footer li{
font-size:15px;
margin-bottom:10px;
}

.footer-bottom{
flex-direction:column;
gap:8px;
font-size:11px;
}

.footer-logo{
width:44px;
height:44px;
right:16px;
bottom:16px;
}

/* ================= POPUP ================= */

.popup-box,
.room-popup-box{
width:94%;
max-width:94%;
border-radius:22px;
}

.popup-top{
height:150px;
}

.popup-form{
padding:20px;
}

.row{
grid-template-columns:1fr;
gap:14px;
}

.popup-slider{
height:220px;
}

.popup-grid{
grid-template-columns:1fr 1fr;
gap:10px;
}

.room-popup-content{
padding:20px;
}

.room-popup-content h2{
font-size:2rem;
}

.slide-arrow{
width:42px;
height:42px;
font-size:20px;
}

/* touch targets */

button,a{
min-height:44px;
}

}
/* ================================= */
/* MOBILE NAV + HERO FIX */
/* ================================= */

@media (max-width: 768px){

/* always show navbar */
.navbar{
top:10px !important;
opacity:1 !important;
transform:translateX(-50%) !important;
}

/* show nav links as horizontal scroll */
.nav-links{
display:flex !important;
gap:16px;
margin-left:0 !important;
overflow-x:auto;
max-width:45%;
padding-bottom:2px;
}

.nav-links a{
font-size:14px;
white-space:nowrap;
}

/* smaller reserve button */
.btn-primary{
width:82px;
height:38px;
font-size:12px;
}

/* disable giant hero scroll scene */
.scroll-container{
height:100vh !important;
}

.sticky-hero{
position:relative !important;
height:100vh;
}

canvas{
display:none;
}

/* fallback hero title visible */
.hero-text h1{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
font-size:2.4rem !important;
opacity:1 !important;
width:90%;
z-index:5;
}

}
/* ================================= */
/* MOBILE NAV SYSTEM */
/* ================================= */

.menu-toggle{
display:none;
border:none;
background:none;
color:white;
font-size:26px;
cursor:pointer;
}

/* mobile only */
@media (max-width:768px){

.nav-links{
display:none !important;
}

.menu-toggle{
display:block;
}

.btn-primary{
margin-left:10px;
}

/* dropdown menu */
.mobile-menu{
position:fixed;
top:78px;
left:50%;
transform:translateX(-50%) translateY(-20px);

width:92%;
padding:18px;

border-radius:22px;

background:rgba(255, 255, 255, 0.297);
backdrop-filter:blur(20px);
-webkit-backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,0.12);

display:flex;
flex-direction:column;
gap:14px;

z-index:9999;

opacity:0;
visibility:hidden;
transition:.35s ease;
}

.mobile-menu.active{
opacity:1;
visibility:visible;
transform:translateX(-50%) translateY(0);
}

.mobile-menu a{
color:white;
text-decoration:none;
font-size:16px;
padding:12px 14px;
border-radius:14px;
transition:.25s;
}

.mobile-menu a:hover{
background:rgba(255,255,255,0.08);
}

}
@media (max-width:768px){

.navbar{
width:92%;
height:64px;
padding:0 14px;

display:flex;
justify-content:space-between;
align-items:center;

top:10px !important;
border-radius:20px;
}

/* logo */
.logo{
display:flex;
align-items:center;
gap:8px;
max-width:70%;
overflow:hidden;
}

.logo img{
width:38px;
height:38px;
flex-shrink:0;
}

.logo .paradise-text{
display:inline-block;
font-size:15px;
}

.logo .ocean-text{
font-size:15px;
}

/* desktop nav hidden */
.nav-links{
display:none !important;
}

/* reserve hide */
.btn-primary{
display:none;
}

/* hamburger */
.menu-toggle{
display:flex !important;
justify-content:center;
align-items:center;

width:42px;
height:42px;

border:none;
border-radius:12px;

background:rgba(255,255,255,0.12);
color:white;
font-size:22px;
cursor:pointer;
flex-shrink:0;
}

}
.mobile-reserve{
background:#e4c359;
color:black !important;
text-align:center;
font-weight:600;
margin-top:8px;
}
/* ================================= */
/* FINAL NAVBAR FIX */
/* ================================= */



/* MOBILE */

@media(max-width:768px){

.navbar{
width:92%;
height:64px;
top:12px;
padding:0 14px;

display:flex !important;
justify-content:space-between;
align-items:center;
left:50%;
transform:translateX(-50%);
}

}
.nav-links{
display:flex;
gap:28px;
align-items:center;
}

.logo{
display:flex;
align-items:center;
gap:10px;
}
/* hide mobile menu on desktop */
.mobile-menu{
display:none;
}

/* show only on phone */
@media (max-width:768px){

.mobile-menu.active{
display:flex;
}

}
/* ================================= */
/* MOBILE HERO PARALLAX */
/* ================================= */

@media(max-width:768px){

canvas{
display:none !important;
}

.scroll-container{
height:100vh !important;
}

.sticky-hero{
position:relative !important;
height:100vh;
overflow:hidden;
transform:none !important;
}

/* animated visible background */
.sticky-hero::before{
content:"";
position:absolute;
inset:0;
background:url("mobile-hero.jpg") center center / cover no-repeat;

animation:mobileHeroMove 14s ease-in-out infinite alternate;
will-change:transform;
}

.sticky-hero::after{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,.35);
}

.hero-text{
position:absolute;
z-index:5;
top:50%;
left:50%;
transform:translate(-50%,-50%);
width:90%;
text-align:center;
}

.hero-text h1{
font-size:2.6rem !important;
opacity:1 !important;
}

}

@keyframes mobileHeroMove{
0%{
transform:scale(1.05) translateY(0);
}
100%{
transform:scale(1.14) translateY(-20px);
}
}
/* ===================================== */
/* MOBILE HERO FINAL FIX */
/* ===================================== */

@media (max-width:768px){

/* hide desktop canvas */
#hero{
display:none !important;
}

.scroll-container{
height:100vh !important;
}

.sticky-hero{
position:relative !important;
height:100vh !important;
overflow:hidden;
}

/* visible mobile hero image */
.sticky-hero::before{
content:"";
position:absolute;
inset:0;

background:url("mobile-hero.jpg") center center / cover no-repeat;

z-index:1;

animation:heroZoom 12s ease-in-out infinite alternate;
}

/* luxury dark overlay */
.sticky-hero::after{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,.35);
z-index:2;
}

/* hero text */
.hero-text{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
z-index:5;
width:90%;
text-align:center;
}

.hero-text h1{
font-size:2.8rem !important;
line-height:1.05;
}

/* stop next section overlap */
.next-section,
.section,
.cards-section{
position:relative;
z-index:10;
background:#0b1620;
}

}

@keyframes heroZoom{
0%{
transform:scale(1.05);
}
100%{
transform:scale(1.12);
}
}
/* ================================= */
/* MOBILE HERO VIDEO */
/* ================================= */

.mobile-hero-video{
display:none;
}

@media (max-width:768px){

#hero{
display:none !important;
}

.mobile-hero-video{
display:block;
position:absolute;
inset:0;
width:100%;
height:100%;
object-fit:cover;
z-index:1;
}

.sticky-hero{
position:relative;
height:100vh;
overflow:hidden;
}

.hero-text{
position:absolute;
z-index:5;
top:50%;
left:50%;
transform:translate(-50%,-50%);
width:90%;
text-align:center;
}

}
/* hide hero text on mobile */
@media (max-width:768px){

.hero-text{
display:none !important;
}

}
/* ================================= */
/* MOBILE CARD GLASS FIX */
/* ================================= */

@media (max-width:768px){

.card,
.dest-card,
.room-card,
.summary,
.about-right,
.popup-box,
.room-popup-box{

background:rgba(8, 20, 32, 0.38) !important;

backdrop-filter:blur(18px) !important;
-webkit-backdrop-filter:blur(18px) !important;

border:1px solid rgba(255,255,255,0.08) !important;

box-shadow:
0 10px 30px rgba(0,0,0,0.18) !important;

}

}
/* ===================================== */
/* FINAL MOBILE GLASS CARD FIX */
/* ===================================== */

/* remove mobile dark block between sections */
@media(max-width:768px){

.next-section,
.section,
.cards-section,
.destinations{
background:transparent !important;
}

}
/* clickable cards - remove underline */
.card-link,
.card-link *{
text-decoration:none !important;
}

.card-link{
color:inherit !important;
}
/* ================================= */
/* PREMIUM MOBILE GLASS MENU */
/* ================================= */

@media (max-width:768px){

.mobile-menu{

position:fixed;
top:78px;
left:50%;
transform:translateX(-50%);

width:92%;
padding:18px;

display:flex;
flex-direction:column;
gap:14px;

border-radius:26px;

background:rgba(255,255,255,0.10);
backdrop-filter:blur(22px) saturate(180%);
-webkit-backdrop-filter:blur(22px) saturate(180%);

border:1px solid rgba(255,255,255,0.16);

box-shadow:
0 18px 50px rgba(0,0,0,.28);

z-index:9999;
}

/* links */

.mobile-menu a{

text-decoration:none;
color:white;
font-size:18px;
font-weight:500;

padding:14px 12px;
border-radius:14px;

transition:.25s ease;
}

.mobile-menu a:hover,
.mobile-menu a:active{

background:rgba(255,255,255,0.10);
transform:translateX(6px);
}

/* reserve button */

.mobile-reserve{

margin-top:8px;
width:100%;
height:56px;

border:none;
border-radius:18px;

font-size:16px;
font-weight:700;
letter-spacing:.5px;

cursor:pointer;

color:#111;

background:linear-gradient(
135deg,
#f1d46a,
#d8b43d
);

box-shadow:
0 10px 24px rgba(212,174,58,.35);

transition:.28s ease;
}

/* press effect */

.mobile-reserve:hover,
.mobile-reserve:active{

transform:translateY(-2px) scale(1.01);

box-shadow:
0 14px 28px rgba(212,174,58,.42);
}

/* hamburger button prettier */

.menu-toggle{

background:rgba(255,255,255,.10) !important;
backdrop-filter:blur(12px);
-webkit-backdrop-filter:blur(12px);

border:1px solid rgba(255,255,255,.14) !important;

box-shadow:
0 8px 20px rgba(0,0,0,.18);
}

}
.mobile-menu{
animation:menuDrop .28s ease;
}

@keyframes menuDrop{
from{
opacity:0;
transform:translateX(-50%) translateY(-12px);
}
to{
opacity:1;
transform:translateX(-50%) translateY(0);
}
}
/* ===================================== */
/* DESTINATION GRID FIX */
/* ===================================== */

.destinations-grid,
.destination-grid,
.grid-wrap{

display:grid;
grid-template-columns:1fr 1fr;
gap:24px;
align-items:stretch;
}

.dest-card{
width:100%;
height:100%;
}

@media(max-width:768px){

.destinations-grid,
.destination-grid,
.grid-wrap{
grid-template-columns:1fr;
}

}
.footer-btn,
.footer-btn:link,
.footer-btn:visited{
color:#ffffff !important;
text-decoration:none !important;
}

.footer-btn:hover,
.footer-btn:active{
color:#111 !important;
text-decoration:none !important;
}