:root {
  --bg: #F7F6F3;
  --accent: #6E7F5C;
  --dark: #2E2E2E;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--dark);
  font-family: "Inter", sans-serif;
}

main {
  min-height: calc(100vh - 160px);
}

section {
  padding: 5rem 8%;
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
}

button, input, textarea {
  font-family: inherit;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  scroll-behavior: smooth;
}

main {
  width: 100%;
}

section {
  padding: 6rem 8%;
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
}

p {
  line-height: 1.7;
  opacity: 0.85;
}

html, body {
  height: 100%;
}

.page {
  min-height: calc(100vh - 120px);
}

:root {
  --ivory: #F7F6F3;
  --sand: #E8DDCF;
  --olive: #6E7F5C;
  --charcoal: #2E2E2E;
  --gold: #C2A875;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  overflow-x: hidden;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  z-index: 100;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--charcoal);
  font-size: 0.95rem;
  position: relative;
}

.nav-links a::after {
  content: "";
  width: 0;
  height: 1px;
  background: var(--gold);
  position: absolute;
  bottom: -4px;
  left: 0;
  transition: 0.4s;
}

.nav-links a:hover::after {
  width: 100%;
}

.footer {
  padding: 2rem;
  text-align: center;
  font-size: 0.85rem;
  background: var(--sand);
  margin-top: 5rem;
}
.hero {
  height: 100vh;
  position: relative;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  bottom: 25%;
  left: 8%;
  color: white;
  max-width: 500px;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
}

.hero-content p {
  margin: 1rem 0;
  opacity: 0.9;
}

.btn-primary {
  padding: 0.8rem 1.6rem;
  background: var(--olive);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-primary:hover {
  background: var(--gold);
}

.featured {
  padding: 5rem;
}

.featured h2 {
  font-family: "Playfair Display", serif;
  margin-bottom: 2rem;
}

.property-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
}

.property-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.property-card h3 {
  padding: 1rem;
}

.property-card span {
  padding: 0 1rem 1rem;
  display: block;
  color: var(--olive);
}
.properties-page {
  padding: 6rem 5rem;
}

.properties-page h1 {
  font-family: "Playfair Display", serif;
  margin-bottom: 3rem;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.property-box {
  text-decoration: none;
  color: inherit;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
}

.property-box:hover {
  transform: translateY(-8px);
}

.property-box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.property-box .info {
  padding: 1rem;
  background: white;
}
.property-detail {
  display: flex;
  padding: 6rem;
  gap: 3rem;
}

.detail-left img {
  width: 500px;
  border-radius: 20px;
}

.detail-right span {
  display: block;
  margin: 1rem 0;
  color: var(--olive);
}

.ambience-video video {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}

.about, .contact {
  padding: 6rem;
  max-width: 700px;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact input, .contact textarea {
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid #ddd;
}
.glass {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(18px);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.booking-card {
  margin-top: 2rem;
  padding: 1.5rem;
}

.booking-card label {
  font-size: 0.8rem;
  opacity: 0.7;
}

.booking-card input {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.6rem;
  border-radius: 8px;
  border: none;
}
@media (max-width: 768px) {

  .navbar {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .featured {
    padding: 3rem 1.5rem;
  }

  .property-detail {
    flex-direction: column;
    padding: 3rem 1.5rem;
  }

  .detail-left img {
    width: 100%;
  }

  .about, .contact {
    padding: 3rem 1.5rem;
  }
}
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.3);
  opacity: 0;
  transition: 0.4s;
}

.btn-primary:hover::after {
  opacity: 1;
}
:root {
  --ivory: #F7F6F3;
  --olive: #6E7F5C;
  --charcoal: #2E2E2E;
  --gold: #C2A875;
}

body {
  margin: 0;
  font-family: Inter, sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
}

.glass {
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(16px);
  border-radius: 20px;
}

.navbar {
  position: fixed;
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  z-index: 100;
}

.hero {
  height: 100vh;
  position: relative;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  bottom: 25%;
  left: 8%;
  color: white;
}
.hero {
  position: relative;
  height: 100vh;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  padding: 3rem;
  max-width: 600px;
  text-align: center;
}

.hero-center h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.featured {
  padding: 6rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.featured-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
}
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 80vh;
}

.contact-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 650px;
  padding: 3rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  color: white;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: #6E7F5C;
  color: white;
  border-radius: 999px;
  text-decoration: none;
}
.inspiration {
  background: #EFE8DD;
}

.inspoSwiper {
  margin-top: 3rem;
  height: 320px;
}

.inspoSwiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.about-hero {
  max-width: 700px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 2rem;
}

.about-card {
  padding: 2rem;
  background: white;
  border-radius: 20px;
}
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.contact-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form {
  padding: 4rem;
  background: #F7F6F3;
}
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.property-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
}

.property-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.booking-ui {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1rem;
}

.booking-ui select,
.booking-ui input {
  padding: 0.6rem;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.booking-ui button {
  grid-column: span 2;
}
.about-hero {
  max-width: 700px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 2rem;
}

.about-box {
  background: white;
  padding: 2rem;
  border-radius: 20px;
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  gap: 2rem;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.contact-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.carousel-section {
  background: #EFE8DD;
}

.escapeSwiper {
  margin-top: 3rem;
  width: 100%;
  height: 340px;
  overflow: hidden; /* 👈 IMPORTANT */
}

.escapeSwiper .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap; /* 👈 PREVENTS DROPPING DOWN */
  align-items: center;
}

.escapeSwiper .swiper-slide {
  flex-shrink: 0;       /* 👈 CRITICAL */
  width: 300px;         /* controls slide width */
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.escapeSwiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.about-card {
  background: white;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.about-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.about-content {
  padding: 1.8rem;
}

.about-content h3 {
  margin-bottom: 0.6rem;
}
.escapeSwiper {
  margin-top: 3rem;
  width: 100%;
  height: 340px;   /* 👈 THIS IS THE KEY */
  overflow: visible;
}

.escapeSwiper .swiper-wrapper {
  align-items: center;
}

.escapeSwiper .swiper-slide {
  width: 300px;    /* 👈 forces multiple slides */
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.escapeSwiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
