* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #faf8f3;
  --warm-beige: #e8dfc8;
  --dark-brown: #3d2817;
  --gold: #c9a961;
  --accent-teal: #7fa895;
  --text-dark: #2c2c2c;
  --text-light: #f5f5f5;
  --border-light: #e0d5c5;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Georgia", "Garamond", serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Georgia", "Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.5px;
}

p {
  font-family: "Segoe UI", sans-serif;
}

/* Button Styles */
.btn {
  padding: 14px 36px;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--dark-brown);
}

.btn-primary:hover {
  background-color: #b8984f;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(201, 169, 97, 0.3);
}

.btn-white {
  background-color: var(--text-light);
  color: var(--dark-brown);
}

.btn-white:hover {
  background-color: var(--warm-beige);
}

/* Hero Section */
/* .hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(135deg, #f5f1e8 0%, #e8e0d4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="dots" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="%23c9a961" opacity="0.1"/></pattern></defs><rect width="1200" height="800" fill="url(%23dots)"/></svg>');
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

.hero-eyebrow {
  display: block;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: "Segoe UI", sans-serif;
  font-weight: 600;
}

.hero-title {
  font-size: 96px;
  font-weight: 400;
  letter-spacing: -3px;
  color: var(--dark-brown);
  margin-bottom: 20px;
  line-height: 1;
}

.hero-subtitle {
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 1px;
  font-family: "Georgia", "Garamond", serif;
} */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* --- Background Video --- */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  /* z-index: -3; */
}

/* --- Pattern Overlay (your original style) --- */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="dots" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="%23c9a961" opacity="0.1"/></pattern></defs><rect width="1200" height="800" fill="url(%23dots)"/></svg>');
  opacity: 0.4;
  z-index: -2;
}

/* --- Content --- */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

.hero-eyebrow {
  display: block;
  font-size: 16px;
  letter-spacing: 4px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: "Segoe UI", sans-serif;
  font-weight: 800;
}

.hero-title {
  font-size: 96px;
  font-weight: 800;
  letter-spacing: -3px;
  color:#c9a961 ;
  margin-bottom: 20px;
  line-height: 1;
}

.hero-subtitle {
  font-size: 24px;
  color: white;
  margin-bottom: 40px;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: "Georgia", "Garamond", serif;
}

/* Optional fade animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 52px;
  /* color: var(--dark-brown); */
  margin-bottom: 15px;
  font-weight: 400;
}

/* .section-header.dark h2 {*/
/*  color: var(--text-light);*/
/*} */

.section-subtitle {
  font-size: 18px;
  color: var(--accent-teal);
  font-family: "Segoe UI", sans-serif;
  font-weight: 400;
}

.section-header-title.dark .section-subtitle {
  color: #b8a09f;
}

/* Featured Properties Section */
/* SECTION WRAPPER */
.featured {
  padding: 80px 40px;
  background-color: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  font-size: 14px;
  color: #777;
}

/* GRID */
.featured-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* CARD LAYOUT */
.featured-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
}

/* LEFT IMAGE / RIGHT TEXT */
.featured-card.flex-left {
  flex-direction: row;
}


/* IMAGE WRAPPER */
.card-image {
  position: relative;
  flex: 0 0 55%;
  height: 360px;
}

/* BASE STYLE FOR BOTH IMAGES */
.card-image img {
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* ----- DESKTOP OVERLAP POSITIONS ----- */

/* BACK IMAGE */
.card-image .image1 {
  position: absolute;
  width: 72%;
  height: 75%;
  z-index: 1;
}

/* FRONT IMAGE */
.card-image .image2 {
  position: absolute;
  width: 70%;
  height: 82%;
  z-index: 2;
  transition: transform 0.35s ease;
}

/* Card where images are visually on the RIGHT */
.featured-card.flex-left .card-image .image1 {
  top: 80px;
  left: 0;
}
.featured-card.flex-left .card-image .image2 {
  top: 0;
  left: 120px;
}

/* Card where images are visually on the LEFT (mirrored) */
.featured-card.flex-right .card-image .image1 {
  top: 80px;
  right: 0;
}
.featured-card.flex-right .card-image .image2 {
  top: 0;
  right: 90px;
}

/* Hover zoom on front image */
.featured-card:hover .card-image .image2 {
  transform: scale(1.04);
}

/* TEXT CONTENT */
.card-content {
  flex: 0 0 45%;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-content h3 {
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--dark-brown);
}

.card-meta {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* ================== TABLET (<= 1024px) ================== */
@media (max-width: 1024px) {
  .featured {
    padding: 60px 24px;
  }

  .featured-grid {
    gap: 60px;
  }

  .featured-card {
    padding: 20px 0;
  }

  .card-content {
    padding: 0 30px;
  }

  .card-image {
    height: 320px;
  }

  /* Reduce offset so images don't overflow */
  .featured-card.flex-left .card-image .image2 {
    left: 90px;
  }
  .featured-card.flex-right .card-image .image2 {
    right: 90px;
  }
    
}

/* ================== MOBILE (<= 768px) ================== */
/* ================== MOBILE (<= 768px) ================== */
@media (max-width: 768px) {
  .featured {
    padding: 40px 16px 60px;
  }

  .featured-card {
    flex-direction: column;      /* stack vertically */
    gap: 28px;
    width: 100%;
    margin: 0 auto;
  }

  /* FORCE IMAGES FIRST on mobile */
  .featured-card.flex-left,
  .featured-card.flex-right {
    flex-direction: column;      /* override zig-zag */
  }

  /* IMAGE BLOCK */
  .card-image {
    order: 1;                    /* FIRST */
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    height: auto;
  }

  /* TEXT BLOCK */
  .card-content {
    order: 2;                    /* SECOND */
    width: 100%;
    padding: 0 4px;
    text-align: left;
  }

  .card-content h3 {
    font-size: 24px;
  }

  /* Mobile images stacked with soft overlap */
  .card-image .image1,
  .card-image .image2 {
    position: relative;
    /* width: 100%; */
    height: auto;
  }

  .card-image .image2 {
    margin-top: -40px;  /* slight overlap */
  }
    .featured-card.flex-right .card-image .image2{
          right: -84px;
      }
}




/* Amenities Section */
/* Your Existing Styles */
.amenities {
  padding: 100px 80px;
  background: linear-gradient(135deg, #3d2817 0%, #2c1f0f 100%);
  color: var(--text-light);
}

.amenity-item {
  text-align: center;
  padding: 30px;
  border-radius: 8px;
  background: rgba(201, 169, 97, 0.08);
  border: 1px solid rgba(201, 169, 97, 0.2);
  transition: all 0.3s ease;
  min-width: 260px;    /* Important for horizontal scroll */
  margin-right: 30px;  /* spacing between cards */
}

.amenity-item:hover {
  background: rgba(201, 169, 97, 0.15);
  border-color: var(--gold);
  transform: translateY(-8px);
}

.amenity-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.amenity-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--gold);
}

.amenity-item p {
  font-size: 14px;
  color: #c9b8a8;
}
.amen-img img {
    width: 48px;       /* Same as your current emoji size */
    height: 48px;      /* Keeps it square */
    object-fit: contain; /* Ensures the image scales properly without stretching */
    display: block;
    margin: 0 auto 20px; /* Same spacing as your emoji icons */
}


/* ⭐ Marquee Animation Styles */
.amenities-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 50px;
}

.amenities-track {
  display: flex;
  width: max-content;
  animation: scroll 28s linear infinite;
}

/* Animation */
@keyframes scroll {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* ⭐ Pause on hover */
.amenities-track:hover {
  animation-play-state: paused;
}
.amenity-item:hover ~ .amenities-track {
  animation-play-state: paused;
}

/* Experiences Section */
.experiences {
  padding: 100px 80px;
  background-color: var(--warm-beige);
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.exp-card {
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  background: var(--cream);
}

.exp-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.exp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.exp-card:hover .exp-image img {
  transform: scale(1.08);
}

.exp-card h3 {
  font-size: 22px;
  padding: 25px 25px 12px;
  color: var(--dark-brown);
}

.exp-card p {
  padding: 0 25px 25px;
  font-size: 14px;
  color: #666;
}

/* Statistics Section */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--accent-teal) 100%);
  padding: 2px;
  margin: 80px;
  border-radius: 8px;
  overflow: hidden;
}

.stat-card {
  background: var(--cream);
  padding: 50px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: var(--warm-beige);
}

.stat-card h4 {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 400;
}

.stat-card p {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 80px;
  background-color: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.testimonial-card {
  background: var(--warm-beige);
  padding: 40px;
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 15px;
  letter-spacing: 3px;
}

.testimonial-text {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.8;
}

.testimonial-author {
  font-size: 13px;
  color: var(--accent-teal);
  font-weight: 600;
}

/* Gallery Section */
.gallery .swiper {
    width: 100%;
    padding: 40px 0;
}

.gallery .swiper-slide {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.gallery .swiper-slide:hover {
    transform: scale(1.05);
}

.gallery .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* CTA Section */
.cta-section {
  padding: 80px;
  background: linear-gradient(135deg, var(--dark-brown) 0%, var(--accent-teal) 100%);
  text-align: center;
  color: var(--text-light);
}

.cta-section h2 {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--text-light);
  font-weight: 400;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Contact Section */
.contact {
  padding: 100px 80px;
  background-color: var(--warm-beige);
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group.full {
  grid-template-columns: 1fr;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 16px 20px;
  border: 2px solid var(--border-light);
  border-radius: 4px;
  font-size: 14px;
  font-family: "Segoe UI", sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.contact-form textarea {
  resize: vertical;
}

/* Footer */
.footer {
  background: var(--dark-brown);
  color: #a89a8a;
  padding: 60px 80px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
  padding-bottom: 40px;
}

.footer-section h4 {
  color: var(--gold);
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-section p {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section a {
  color: #a89a8a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 13px;
}
/*  */
/* Scroll to Top Button */
/* Common button style */

 /* .scroll-top {
    position: fixed;
    right: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
    font-size: 22px;
    color: #fff;
    background-color: #c9a961; 
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
} */

/* Hover effect */
/* .custom-btn:hover, .scroll-top:hover {
    background-color: #b08b47;
    transform: translateY(-5px);
} */

/* Click Me button position */
/* #customActionBtn {
    bottom: 100px; 
    right: 25px;
} */

/* Scroll Top button position */
/* #scrollTopBtn {
    bottom: 25px;
    right: 25px;
    display: none; 
} */

/* Optional: show scroll top after scroll */

/*  */

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .featured-grid {
    grid-template-columns: 1fr 1fr;
  }

  .featured-card.large {
    grid-row: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    margin: 40px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 56px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .featured,
  .amenities,
  .experiences,
  .testimonials,
  .gallery,
  .contact,
  .footer {
    padding: 60px 30px;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    margin: 20px;
  }

  .form-group {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cta-section {
    padding: 60px 30px;
  }

  .cta-section h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 52px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 13px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .stats {
    grid-template-columns: 1fr;
  }
}
/*  */
