body{margin:0;font-family:'Poppins',sans-serif;color:#f5f5f5;background-color:#0c0c0c}
body {
  font-family: 'Playfair Display', serif;
}

html { 
  scroll-behavior: smooth;
}

/* ===== Unified Header & Navbar Styles ===== */
/* ==== Limitstate-Inspired Navbar ==== */
/* ==== Enhanced Limitstate-Inspired Navbar ==== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
  z-index: 1000;
}

header.scrolled {
  background: #111;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6%;
}

/* ==== Logo ==== */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transform: translateX(-20px); /* pushes logo slightly more left */
}

.logo img {
  height: 50px;
  width: auto;
  border-radius: 8px;
}

.logo span {
  font-family: 'Posterama', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease, transform 0.3s ease;
}

.logo:hover span {
  color: #f0d26a; /* subtle glow gold */
  transform: scale(1.05);
}

/* ==== Nav Links ==== */
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.3px;
  position: relative;
  transition: color 0.3s ease;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
  color: #d4af37;
}

/* ==== Contact Button ==== */
.contact-btn {
  background: #d4af37;
  color: #111 !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #e3c158;
  transform: scale(1.05);
  color: #000 !important;
}

/* ==== Responsive ==== */
@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 5%;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    background: #111;
    padding: 1rem;
    border-radius: 10px;
    display: none;
  }

  nav ul.show {
    display: flex;
  }

/* ==== Glowing AureateSpaces Logo ==== */
.logo span {
  font-family: 'Posterama', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.4s ease, text-shadow 0.4s ease, transform 0.3s ease;
  animation: logoGlow 3s ease-in-out infinite alternate;
}

/* Subtle golden glow effect */
@keyframes logoGlow {
  0% {
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.4),
                 0 0 10px rgba(212, 175, 55, 0.2);
  }
  100% {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8),
                 0 0 20px rgba(212, 175, 55, 0.6);
  }
}

/* Hover effect — more shine and slight lift */
.logo:hover span {
  color: #f3d778;
  text-shadow: 0 0 15px rgba(243, 215, 120, 0.9),
               0 0 25px rgba(243, 215, 120, 0.6);
  transform: scale(1.05);
}



  .logo {
    transform: translateX(0);
  }

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


/* ==== Nav Links ==== */
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.3px;
  position: relative;
  transition: color 0.3s ease;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
  color: #d4af37;
}

/* ==== Contact Button ==== */
.contact-btn {
  background: #d4af37;
  color: #111 !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #e3c158;
  transform: scale(1.05);
  color: #000 !important;
}

/* ==== Responsive Menu ==== */
@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    background: #111;
    padding: 1rem;
    border-radius: 10px;
    display: none;
  }

  nav ul.show {
    display: flex;
  }
}


.search-icon {
  font-size: 20px;
  color: #f5f5f5;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Search input styling */
#searchInput {
  display: none;
  padding: 6px 10px;
  border: 1px solid #d4af37;
  border-radius: 4px;
  outline: none;
  background-color: #111;
  color: #f5f5f5;
  margin-left: 8px;
  font-size: 14px;
  width: 0;
  transition: width 0.4s ease, opacity 0.3s ease;
}

/* When active (JS will add .active class) */
#searchInput.active {
  display: inline-block;
  width: 160px;
  opacity: 1;
}

.search-icon:hover {
  color: #d4af37;
  transform: scale(1.1);
}

.nav-icons {
  display: flex;
  align-items: center;
  margin-left: 15px;
}

/* --- Search Input --- */
#searchInput {
  display: none;
  padding: 6px 10px;
  border: 1px solid #d4af37;
  border-radius: 4px;
  outline: none;
  background-color: #111;
  color: #f5f5f5;
  margin-left: 8px;
  font-size: 14px;
  width: 0;
  opacity: 0;
  transition: width 0.4s ease, opacity 0.3s ease;
}

/* Active state (when icon clicked) */
#searchInput.active {
  display: inline-block;
  width: 160px;
  opacity: 1;
}


.search-icon {
  font-size: 20px;
  color: #fcfafa;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

.search-icon:hover {
  color: #c4a000; /* gold accent to match your theme */
  transform: scale(1.1);
}


.hero {
  position: relative;
  height: 100vh; /* full screen */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Navbar inside hero */
.hero header {
  position: relative;
  z-index: 2;
  background: transparent; /* remove dark bar */
  padding: 1em 2em;
}

.hero header nav ul li a {
  color: #fff;
}

.hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  margin-top: auto;
  margin-bottom: 5vh;
}


.hero-text .sub-heading {
  color: #e6eef8;
  font-size: 1.25em;
  margin-top: 0.5em;
  opacity: 0.85;
}


.hero h2{color:#d4af37;font-size:2.5em}
/* ===== Book Button with Animated Gold Glow ===== */
.book-btn {
  display: inline-block;
  margin-top: 1em;
  padding: 0.7em 1.5em;
  background-color: #d4af37;
  color: #000;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  position: relative;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
}

.book-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
  background-color: #e3c158; /* slightly brighter gold */
}

.listings{padding:4em 2em;background-color:#121212;text-align:center}
.listings h2 {
  color: #ffffff; /* changed to white */
  margin-bottom: 1.5em;
}


.listings .neighbourhoods {
  margin-top: 3em;
  background: transparent;
  padding: 0;
}

.neighbourhoods {
  background-color: #0f0f0f;
  padding: 4em 2em;
  text-align: center;
}

.neighbourhoods h2 {
  color: #d4af37;
  margin-bottom: 0.5em;
}

.neighbourhood-text {
  font-size: 1.2em;
  color: #ccc;
  margin-bottom: 2em;
  font-style: italic;
  letter-spacing: 0.5px;
}

.neighbourhood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5em;
}

.neighbourhood-card {
  position: relative;
  height: 300px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform 0.3s ease;
}
/* ===== Fade + Slide-Up Animation for Neighbourhood Cards ===== */
.neighbourhood-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.neighbourhood-card.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.neighbourhood-card .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.1));
  color: #fff;
  padding: 1em;
  text-align: left;
}

.neighbourhood-card .overlay h3 {
  color: #d4af37;
  margin-bottom: 0.3em;
}

.listing-grid{display:grid;gap:2em;grid-template-columns:repeat(auto-fit,minmax(250px,1fr))}
.listing-card{background-color:#1c1c1c;border-radius:12px;padding:1em;transition:transform .3s}
.listing-card:hover{transform:translateY(-5px)}
.listing-card img{width:100%;border-radius:10px}
.listing-card h3 {
  color: #ffffff; /* white */
  margin-top: 0.7em;
  font-size: 1.3em;
  font-weight: 600;
}

.listing-card p {
  color: #ccc; /* description text color */
}

.modal{display:none;position:fixed;z-index:10000;left:0;top:0;width:100%;height:100%;overflow:auto;background-color:rgba(0,0,0,.7)}
.modal-content{background-color:#1a1a1a;margin:10% auto;padding:2em;border-radius:10px;width:90%;max-width:500px;color:#fff}
.modal-content input,.modal-content select,.modal-content button{width:100%;margin-bottom:1em;padding:.6em;border-radius:6px;border:none}
.modal-content button{background-color:#d4af37;color:#000;cursor:pointer;font-weight:600}
.close{float:right;font-size:1.5em;cursor:pointer}
footer{background-color:#111;text-align:center;padding:2em;font-size:.9em}
@media(max-width:768px){nav ul{display:none;flex-direction:column;background-color:#111;position:absolute;top:60px;right:20px;padding:1em}
nav ul.active{display:flex}.menu-toggle{display:block;font-size:1.5em;color:#d4af37}}

/* ===== Booking Page Styles ===== */

/* ===== Booking Page Hero (Full Video Background) ===== */
.book-hero {
  position: relative;
  height: 100vh; /* full screen, including navbar */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Background video fills the entire screen */
.book-hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Darker overlay for stronger contrast */
.book-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

/* Navbar floats transparently above video */
.book-hero header {
  position: relative;
  z-index: 2;
  background: transparent;
  box-shadow: none;
}

/* Make sure nav links remain visible on dark background */
.book-hero header nav ul li a {
  color: #fff;
  transition: color 0.3s ease;
}
.book-hero header nav ul li a:hover {
  color: #d4af37;
}

/* Hero text section (centered over video) */
.book-hero .hero-text {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  margin-top: auto;
  margin-bottom: 5vh;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 2em;
  border-radius: 12px;
  backdrop-filter: blur(4px);
}

.book-hero .hero-text h2 {
  color: #d4af37;
  font-size: 2.5em;
}

.book-hero .hero-text p {
  color: #e6eef8;
  font-size: 1.2em;
  opacity: 0.9;
  margin-top: 0.5em;
}


/* Booking Form Styling */
.booking-section {
  display: flex;
  justify-content: center;
  padding: 70px 20px;
  background: #f8f8f8;
}

.booking-container {
  background: #ffffff;
  padding: 40px 45px;
  border-radius: 20px;
  max-width: 650px;
  width: 100%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.booking-title {
  text-align: center;
  font-size: 32px;
  color: #111;
  margin-bottom: 10px;
  font-weight: 600;
}

.booking-subtitle {
  text-align: center;
  color: #777;
  font-size: 16px;
  margin-bottom: 30px;
}

.booking-form .form-group {
  margin-bottom: 20px;
}

.booking-form label {
  font-size: 15px;
  color: #444;
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  outline: none;
  background: #fafafa;
  transition: 0.2s ease-in-out;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: #d4af37;
  box-shadow: 0 0 4px rgba(212, 175, 55, 0.5);
  background: white;
}

.booking-form textarea {
  height: 120px;
  resize: vertical;
}

.booking-btn {
  width: 100%;
  padding: 16px;
  background: #d4af37;
  border: none;
  border-radius: 10px;
  color: #111;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.booking-btn:hover {
  background: #c0982f;
  transform: translateY(-2px);
}

/* Slide-in Animation */
.slide-in {
  animation: slideIn 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(40px);
}

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

/* Loading Overlay */
#loading-overlay {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  z-index: 20;
  text-align: center;
  padding-top: 120px;
}

.loader {
  width: 50px;
  height: 50px;
  border: 5px solid #d4af37;
  border-top: 5px solid transparent;
  border-radius: 50%;
  margin: auto;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

/* Success Box */
#success-box {
  display: none;
  text-align: center;
  padding: 40px;
}

#success-box h3 {
  margin-top: 10px;
  font-size: 26px;
  color: #111;
}

#success-box p {
  color: #555;
  font-size: 16px;
}

/* Checkmark Animation */
.success-checkmark {
  width: 80px;
  height: 115px;
  margin: 0 auto;
}

.check-icon {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
  border: 4px solid #d4af37;
}

.icon-line {
  height: 5px;
  background-color: #d4af37;
  display: block;
  border-radius: 2px;
  position: absolute;
}

.icon-line.line-tip {
  width: 25px;
  left: 14px;
  top: 40px;
  transform: rotate(45deg);
  animation: tip 0.4s ease forwards;
}

.icon-line.line-long {
  width: 47px;
  right: 8px;
  top: 32px;
  transform: rotate(-45deg);
  animation: long 0.4s ease forwards;
}

@keyframes tip {
  from { width: 0; }
  to   { width: 25px; }
}

@keyframes long {
  from { width: 0; }
  to   { width: 47px; }
}

/* ===== Social Icons ===== */
.social-icons {
  margin: 1em 0;
}

.social-icons a {
  color: #d4af37;
  font-size: 1.5em;
  margin: 0 0.5em;
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  color: #fff;
  transform: scale(1.15);
}

#featured-details, #neighbourhood-details {
  scroll-margin-top: 80px; /* prevents sticky header overlap */
  padding: 4em 2em;
  background-color: #0f0f0f;
  text-align: center;
}

/* ===== FEATURED LISTINGS SLIDER ===== */
#featured {
  background-color: #0f0f0f;
  color: white;
  text-align: center;
  padding: 4em 0;
  position: relative;
}


.section-title {
  color: #d4af37;
  margin-bottom: 1.5em;
  font-size: 2em;
  letter-spacing: 1px;
}

.slider-container {
  position: relative;
  overflow: hidden;
  width: 90%;
  margin: 0 auto;
}

.listings-slider {
  display: flex;
  gap: 1.5em;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.listings-slider::-webkit-scrollbar {
  display: none;
}

.listing {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 1em;
  flex: 0 0 280px;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
  transition: transform 0.3s ease;
}

.listing:hover {
  transform: translateY(-8px);
}

.listing img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1em;
}

.slider-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  border: none;
  color: #d4af37;
  font-size: 1.5em;
  padding: 0.6em;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 5;
}

.slider-btn:hover {
  background-color: #d4af37;
  color: #000;
}

.slider-btn.prev {
  left: 0.5em;
}

.slider-btn.next {
  right: 0.5em;
}

.listings-slider {
  display: flex;
  gap: 1.5em;
  overflow-x: auto;
  scroll-behavior: smooth;
  transition: scroll-left 0.5s ease-in-out;
}
/* === Featured Listings Text Color Fix === */
#featured .listing h3,
#featured .listing p {
  color: #ffffff !important; /* makes all titles and descriptions white */
}

#featured .listing {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 1em;
  flex: 0 0 280px;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
  transition: transform 0.3s ease;
  color: #ffffff; /* ensures all inner text is white */
}
#featured-video h2 {
  font-size: 2.2em;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#featured-video p {
  font-size: 1.1em;
  color: #e0e0e0;
}


/* ===== Footer Slide-Up Animation ===== */
footer {
  background-color: #111;
  text-align: center;
  padding: 2em;
  font-size: .9em;
  color: #f5f5f5;
  opacity: 1;
  transform: translateY(0);
}

#featured-details.visible, #neighbourhood-details.visible {
  opacity: 1;
  transform: translateY(0);
}

#featured-details h2, #neighbourhood-details h2 {
  color: #d4af37;
  font-size: 2em;
  margin-bottom: 1em;
}

#featured-details p, #neighbourhood-details p {
  color: #ccc;
  font-size: 1.1em;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 2em;
}
/* ===== Scroll Reveal for Sections ===== */
.scroll-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.scroll-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Scroll Reveal for Sections ===== */
.scroll-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.scroll-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Gallery Image Size Adjustment ===== */
.gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: 1.5em;
}

.gallery img {
  width: 280px; /* Reduced size */
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* For mobile devices */
@media (max-width: 768px) {
  .gallery img {
    width: 90%;
  }
}

/* Luxury Video Section */
.luxury-video-section {
  position: relative;
  padding: 6em 0;
  background: #0a0a0a;
  color: #fff;
  text-align: center;
}

.video-container {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.video-container iframe {
  width: 100%;
  height: 560px;
  border: none;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.4), rgba(0,0,0,0.1));
  pointer-events: none;
}

.video-caption {
  margin-top: 2em;
}

.video-caption h2 {
  font-size: 2em;
  color: #d4af37;
  margin-bottom: 0.3em;
}

.video-caption p {
  color: #eaeaea;
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto;
}

/* Fade-in Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

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








footer.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ================================
   ABOUT PAGE STYLES — AureateSpaces
   ================================ */

/* --- Hero Section --- */
.about-hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8));
  z-index: 1;
}

.about-hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  color: #fff;
}

.about-hero-text h2 {
  color: #d4af37;
  font-size: 2.8em;
  margin-bottom: 0.4em;
}

.about-hero-text p {
  font-size: 1.2em;
  color: #ddd;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* --- About Content --- */
.about-content {
  background-color: #0f0f0f;
  color: #ccc;
  padding: 5em 2em;
  text-align: center;
}

.about-content h3 {
  color: #d4af37;
  font-size: 1.8em;
  margin-top: 2em;
  margin-bottom: 0.6em;
}

.about-content p {
  max-width: 800px;
  margin: 0 auto 1.5em;
  line-height: 1.8;
  font-size: 1.1em;
}

/* --- Services List --- */
.services-list {
  list-style: none;
  padding: 0;
  margin: 2em auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5em;
  max-width: 800px;
}

.services-list li {
  background-color: #1c1c1c;
  border-radius: 10px;
  padding: 1em 1.5em;
  color: #f5f5f5;
  font-weight: 500;
  font-size: 1em;
  display: flex;
  align-items: center;
  gap: 0.6em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-list li i {
  color: #d4af37;
  font-size: 1.3em;
}

.services-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* --- Team Section --- */
.about-team {
  background-color: #121212;
  padding: 5em 2em;
  text-align: center;
}

.about-team h3 {
  color: #d4af37;
  margin-bottom: 1.5em;
  font-size: 2em;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2em;
  justify-items: center;
}

.team-member {
  background-color: #1c1c1c;
  border-radius: 12px;
  padding: 1.5em;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1em;
  border: 3px solid #d4af37;
}

.team-member h4 {
  color: #d4af37;
  margin-bottom: 0.3em;
  font-size: 1.2em;
}

.team-member p {
  color: #ccc;
  font-size: 0.95em;
  opacity: 0.85;
}

/* --- Contact Section --- */

.about-contact {
  background-color: #0f0f0f;
  padding: 4em 2em;
  text-align: center;
}

.about-contact h3 {
  color: #d4af37;
  font-size: 1.8em;
  margin-bottom: 0.6em;
}

.about-contact p {
  color: #ccc;
  font-size: 1.1em;
  margin-bottom: 0.5em;
}

/* --- Scroll Animations --- */
.about-content, .about-team, .about-contact {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.about-content.visible,
.about-team.visible,
.about-contact.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .about-hero-text h2 {
    font-size: 2em;
  }
  .about-content h3 {
    font-size: 1.5em;
  }
}

nav ul li a.active {
  color: #d4af37;
  border-bottom: 2px solid #d4af37;
}
nav ul li a.active {
  color: #d4af37;
  border-bottom: 2px solid #d4af37;
  transition: all 0.3s ease;
}
/* ===================================
   CONTACT PAGE — Luxury Style
   =================================== */

/* CONTACT HERO (top banner section) */
.contact-hero {
  height: 50vh; /* reduced from 70vh or 100vh */
  background: linear-gradient(to bottom right, #1b1b1b, #d4af37);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 0;
}

.contact-hero-text {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 1em 2em;
  background: rgba(0,0,0,0.45);
  border-radius: 10px;
}

/* CONTACT SECTION (the form area) */
.contact-section {
  position: relative;
  z-index: 2; /* ensure it shows above background */
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
  padding: 80px 10%;
  background: #fff; /* keep background white */
  margin-top: 0; /* remove any gap from hero */
}

.contact-section {
  margin-top: -40px; /* moves entire section up */
  padding-top: 40px; /* keeps enough breathing room */
}

.contact-form-panel {
  margin-top: -30px; /* specifically raises only the form panel */
}

@media (max-width: 768px) {
  .contact-section {
    margin-top: 0;
    padding-top: 2em;
  }
}


.contact-info {
  flex: 1 1 40%;
  color: #222;
}

.contact-info h3 {
  font-family: 'Posterama', serif;
  font-size: 1.8rem;
  color: #d4af37;
  margin-bottom: 20px;
}

.contact-info p {
  line-height: 1.8;
  color: #444;
  font-size: 1rem;
}

/* Centered Contact Icon beneath navbar */
.contact-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 110px; /* adjust if needed (90–130px works well) */
  font-size: 1.5rem;
  color: #d4af37;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.contact-icon:hover {
  color: #e3c158;
  transform: translateX(-50%) scale(1.1);
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .contact-icon {
    top: 120px;
    font-size: 1.3rem;
  }
}


.contact-form {
  flex: 1 1 50%;
  background: #fff;
  padding: 40px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  border-radius: 12px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d4af37;
  outline: none;
  box-shadow: 0 0 8px rgba(212,175,55,0.3);
}

.contact-form button {
  background: #d4af37;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #b38b2e;
  transform: translateY(-2px);
}

/* Scroll animation */
.contact-section, .contact-hero {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.contact-section.visible, .contact-hero.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ===== Fade In on Page Load ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease-out forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive layout */
@media (max-width: 900px) {
  .contact-section {
    flex-direction: column;
    padding: 60px 6%;
  }

  .contact-form, .contact-info {
    flex: 1 1 100%;
  }

  .contact-hero h2 {
    font-size: 2.2rem;
  }
}
.contact-hero {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.contact-hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.contact-hero-text {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
  padding: 2em;
  border-radius: 8px;
}


.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55); /* dim overlay for readability */
  z-index: 1;
}

.contact-hero h2 {
  position: relative;
  z-index: 2;
  font-size: 2.7em;
  color: #d4af37;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.contact-hero p {
  position: relative;
  z-index: 2;
  color: #f5f5f5;
  font-size: 1.1em;
  margin-top: 0.5em;
  max-width: 600px;
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

/* ===== Contact Hero Video Section ===== */
.contact-hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}



.contact-hero-text {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.45);
  padding: 2em;
  border-radius: 12px;
  backdrop-filter: blur(4px);
}

.contact-hero-text h2 {
  color: #d4af37;
  font-size: 2.8em;
  margin-bottom: 0.5em;
}

.contact-hero-text p {
  color: #e6eef8;
  font-size: 1.2em;
  opacity: 0.9;
}

#searchResults {
  position: absolute;
  top: 70px;
  right: 20px;
  width: 300px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  padding: 10px;
  display: none;
  z-index: 9999;
}

#searchResults a {
  display: block;
  color: #333;
  text-decoration: none;
  padding: 8px 6px;
  border-bottom: 1px solid #eee;
}

#searchResults a:hover {
  background: #f5f5f5;
}

#searchResults p {
  color: #888;
  padding: 6px;
  text-align: center;
}

/* ==== Background Video Setup ==== */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}


.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* dark tint for readability */
  z-index: -1;
}

/* ==== General Layout ==== */
body {
  margin: 0;
  font-family: 'Posterama', sans-serif;
  color: #fff;
  background: transparent;
}

/* ==== Header Layout (Refined for visibility) ==== */
/* ===== NAVBAR ===== */
/* ===== NAVBAR ===== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 3em;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  height: 45px;
  border-radius: 6px;
}

.logo span {
  font-family: 'Posterama', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: #d4af37;
}

.logo:hover span {
  color: #e3c158;
  transition: color 0.3s ease;
}

/* NAV LINKS */
nav ul {
  display: flex;
  align-items: center;
  gap: 2em;
  list-style: none;
  margin: 0;
}

nav ul li a {
  text-decoration: none;
  color: #f5f5f5;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.2s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: #d4af37;
  transform: scale(1.05);
}

/* ===== SEARCH BAR ===== */
.search-container {
  position: relative;
}

#search-icon {
  color: #f5f5f5;
  cursor: pointer;
  font-size: 1.1rem;
}

#search-input { 
  display: none;
  position: absolute;
  top: 120%;
  right: 0;
  background: #222;
  border: 1px solid #555;
  color: #fff;
  padding: 0.5em 1em;
  border-radius: 4px;
  width: 220px;
}

.search-container.active #search-input {
  display: block;
  animation: fadeIn 0.3s ease forwards;
}
.menu-toggle {
  display: none;
  cursor: pointer;
  color: white;
  font-size: 1.8rem;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 1rem 0;
    transition: 0.3s;
  }

  nav ul.show {
    display: flex;
    animation: fadeIn 0.4s ease forwards;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}


@media (max-width: 900px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: rgba(17, 17, 17, 0.95);
    position: absolute;
    top: 70px;
    right: 0;
    width: 65%;
    padding: 2em;
    border-radius: 0 0 10px 10px;
    animation: fadeIn 0.3s ease forwards;
  }

  nav ul.show {
    display: flex;
    animation: fadeIn 0.4s ease forwards;
  }

  .menu-toggle {
    display: block;
  }

  .search-container {
    display: none; /* optional: hide search on mobile */
  }
}



#search-icon {
  color: #f5f5f5;
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

#search-icon:hover {
  color: #d4af37;
}

/* Hidden by default */
#search-input {
  width: 0;
  opacity: 0;
  padding: 0.4em 0.8em;
  margin-left: 8px;
  border: 1px solid #d4af37;
  border-radius: 4px;
  background-color: #111;
  color: #fff;
  transition: width 0.4s ease, opacity 0.3s ease;
  font-family: "Posterama", sans-serif;
}

/* When active, expand search bar */
.search-container.active #search-input {
  width: 220px;
  opacity: 1;
}


#search-icon {
  color: white;
  cursor: pointer;
  font-size: 18px;
}

#search-input {
  display: none;
  position: absolute;
  right: 0;
  top: 30px;
  width: 200px;
  padding: 6px 10px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  background-color: white;
  color: #222;
}

.search-container.active #search-input {
  display: block;
}


/* ===== Search Bar ===== */
.search-container {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 1rem;
  transition: all 0.3s ease;
}

.search-container i {
  font-size: 1.2rem;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.search-container i:hover {
  color: #d4af37;
}

#search-input {
  width: 0;
  opacity: 0;
  padding: 0.4rem 0.6rem;
  font-size: 0.9rem;
  border: none;
  border-radius: 4px;
  outline: none;
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

.search-container.active #search-input {
  width: 180px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
}

/* ==== Hero Section ==== */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-content {
  background: rgba(0, 0, 0, 0.4);
  padding: 30px 40px;
  border-radius: 12px;
}

/* ==== Sections ==== */
section {
  padding: 60px 10%;
  text-align: center;
}

.section-title {
  font-size: 28px;
  margin-bottom: 30px;
  color: #ffd700;
}

.listings {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.listing {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 15px;
  width: 280px;
  transition: transform 0.3s;
}

.listing:hover {
  transform: scale(1.05);
}

.listing img {
  width: 100%;
  border-radius: 10px;
  height: 180px;
  object-fit: cover;
}

/* ==== Footer ==== */
footer {
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
  text-align: center;
  color: white;
}
/* ===== Footer Styling ===== */
.footer {
  background-color: #111;
  color: #ddd;
  padding: 60px 10%;
  font-family: 'Posterama', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3, .footer-section h4 {
  color: #d4af37;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-section p, .footer-section a {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-section a:hover {
  color: #d4af37;
  transition: color 0.3s ease;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  text-decoration: none;
}

.footer .social-icons {
  display: flex;
  gap: 15px;
}

.footer .social-icons a {
  color: #ccc;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer .social-icons a:hover {
  color: #d4af37;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #aaa;
}


.page-hero {
  text-align: center;
  padding: 4em 1em;
  background-color: #111;
  color: #fff;
}

.all-spaces {
  padding: 3em 2em;
  background: #f8f8f8;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2em;
  max-width: 1100px;
  margin: auto;
}

.listing img {
  width: 100%;
  border-radius: 10px;
}

.listing h3 {
  margin: 0.5em 0;
  color: #111;
}

.listing p {
  color: #555;
}

.btn {
  display: inline-block;
  background-color: #d4af37;
  color: #111;
  padding: 0.5em 1em;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #b5942e;
}


.gallery img:hover {
    transform: scale(1.05);
  }