@import url('https://fonts.googleapis.com/css2?family=Allura&family=Cormorant+Garamond:ital,wght@1,300;1,400;1,500;1,600;1,700&display=swap');


/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #333;
  background-color: rgb(235, 235, 240);
}

@import url('https://fonts.googleapis.com/css2?family=Allura&family=Cormorant+Garamond:ital,wght@1,300;1,400;1,500;1,600;1,700&display=swap');

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #333;
  background-color: rgb(235, 235, 240);
}

/* ------------------------------
   HEADER + TOP MENU
------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Allura&family=Cormorant+Garamond:ital,wght@1,300;1,400;1,500;1,600;1,700&display=swap');

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #333;
  background-color: #fff;
}

/* ------------------------------
   TOP NAVBAR
------------------------------ */


.top-navbar {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  position: relative;
  z-index: 1000;
}

.top-nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.75rem 1.5rem;
  min-height: 96px;
}

/* LEFT (empty placeholder) */
.nav-left {
  display: flex;
}

/* CENTER */
.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* LOGO + TITLE GROUP */
.brand-group {
  display: flex;
  align-items: center;
  gap: 14px;

  /* 🔥 FORCE SINGLE ROW */
  flex-direction: row;
  flex-wrap: nowrap;
}

/* LOGO */
.brand-group img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: #111;
  text-decoration: none;

  /* 🔥 PREVENT LINE BREAK */
  white-space: nowrap;
}

/* RIGHT */
.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* CTA BUTTON */
.nav-link {
  display: inline-block;
  padding: 10px 18px;
  background-color: #9b7a24;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 400;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background-color: #86671d;
  transform: translateY(-1px);
}

/* ------------------------------
   STICKY MENU BAR
------------------------------ */
.sticky-menu-wrapper {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #f7f6f2;
  border-bottom: 1px solid #ddd;
}

.header-menu {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.header-menu ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  min-height: 50px;
  flex-wrap: wrap;
}

.header-menu ul li a {
  text-decoration: none;
  color: #1b1b1b;
  font-size: 0.80rem;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.25s ease;
}

.header-menu ul li a:hover {
  color: #9b7a24;
}
/* ------------------------------
   MOBILE NAV OVERLAY
------------------------------ */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background-color: #fff;
  color: #000;
  transition: left 0.3s ease;
  z-index: 9999;
  padding: 2rem 1rem;
  box-shadow: 2px 0 8px rgba(0,0,0,0.2);
}

.mobile-nav.open {
  left: 0;
}

.close-btn {
  background: none;
  border: none;
  color: #000;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 1rem;
}

.close-btn i {
  margin-right: 0.5rem;
}

.mobile-nav ul {
  list-style: none;
  margin-top: 2rem;
  padding-left: 0;
}

.mobile-nav ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.mobile-nav ul li a {
  text-decoration: none;
  color: #000;
  font-size: 1.3rem;
  font-weight: 500;
}

.mobile-nav ul li span {
  color: #006064;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .nav-right {
    display: none;
  }
}

/* =============================
   FOUNDATION SECTION (base styles)
============================= */
.foundation-section {
  background: #f7f6f2;
  padding: 0;
}

.foundation-inner {
  display: flex;
  align-items: stretch;
  width: 100%;
}

/*.foundation-copy {
  flex: 0 0 30%;
  max-width: 30%;
  padding: 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}*/

.foundation-copy {
  flex: 0 0 40%;        /* controls column width */
  max-width: 40%;

  padding: 48px 32px;

  display: flex;
  flex-direction: column;
  justify-content: center;   /* vertical centering */
  align-items: center;       /* horizontal centering */
  text-align: center;
}

.foundation-copy > * {
  max-width: 520px;   /* keeps text readable and centered */
  width: 100%;
}

.foundation-title {
  font-size: clamp(1.3rem, 1.0vw, 2.75rem);
  line-height: 1.2;
  color: #0c0c0c;
  margin-bottom: 20px;
  letter-spacing: 0.2px;
  text-align: center;
}

.foundation-text {
  font-size: clamp(1.0rem, 1.0vw, 1.5rem);
  line-height: 1.8;
  color: #1e1e1e;
  max-width: 56ch;
  text-align: center;
  margin-bottom: 20px;
}

.foundation-media {
  flex: 1;
  max-width: 70%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.foundation-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 120px;
  border-bottom-left-radius: 120px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.foundation-media::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 100%;
  border-top-left-radius: 120px;
  border-bottom-left-radius: 120px;
  background: rgba(238, 185, 87, 0.5);
  pointer-events: none;
}

.foundation-media::before {
  content: "";
  position: absolute;
  left: -22%;
  top: 0;
  width: 60%;
  height: 100%;
  background: rgba(151, 151, 151, 0.55);
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  pointer-events: none;
}

/* Responsive: Stack vertically on small screens */
@media (max-width: 900px) {
  .foundation-inner {
    flex-direction: column;
  }
  .foundation-copy, .foundation-media {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .foundation-media img,
  .foundation-media::after {
    border-radius: 0;
  }
}

/* =============================
   HERO FOUNDATION (replaces hero slider)
============================= */
.hero-foundation {
  background: #f7f6f2;
  padding: 0;
}

.hero-foundation .foundation-inner {
  min-height: 80vh;
  align-items: stretch;
}

.hero-foundation .foundation-media {
  align-items: stretch;
}

/* Video fills the same space the image did */
.foundation-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 120px;
  border-bottom-left-radius: 120px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  display: block;
}

/* Mobile hero behavior */
@media (max-width: 900px) {
  .hero-foundation .foundation-inner {
    min-height: auto;
  }
  .foundation-video {
    border-radius: 0;
    height: 320px;
  }
}

/* Reuse your existing hero button style */
.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: auto;
  white-space: nowrap;

  padding: 10px 18px;
  background-color: #9b7a24;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;

  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 400;

  transition: all 0.3s ease;

  align-self: center; /* 🔥 THIS centers it */
}

.btn-hero:hover {
  background-color: #4b4d4e;
}

/* About Section */
.about {
  padding-top: 20px;
  padding-bottom: 1px;
  background-color: #fff;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  color: rgb(15, 15, 15);
}

.about-text h2 {
 
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 2.8vw, 3rem);
    font-weight: 400;
    color: #111;
    text-align: center;
    margin-bottom: 60px;
}

.about-text p {
  font-size: 1.0em;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}

.cta-link {
  text-decoration: none;
  color: #0a043f;
  font-weight: 600;
  transition: color 0.3s;
  margin-right: 200px;
}

.cta-link:hover {
  color: #333;
}

.section-dividerone {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px auto 30px;
  max-width: 800px;
  gap: 16px;
}

.section-dividertwo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 35px auto 50px;
  max-width: 800px;
  gap: 16px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #c5a253, transparent);
}


.divider-icon {
  font-size: 1.4rem;
  color: #c5a253;
  font-family: 'Cormorant Garamond', serif;
}

/* ================================
   THREE CARDS CAROUSEL SECTION
================================ */
.three-cards-section {
  padding: 50px 20px;
  background-color:#f7f6f2;
  text-align: center;
  margin-top: 5px;
}

.three-cards-section h2 {

    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 2.8vw, 3rem);
    font-weight: 400;
    color: #111;
    text-align: center;
    margin-bottom: 60px;
}



.three-cards-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  background-color: #c5a253;
  margin: 16px auto 0;
}


.cards-carousel-container {
  position: relative;
  width: 1090px;
  margin: 0 auto;
  overflow: hidden;
}

.cards-track {
  display: flex;
  transition: transform 0.5s ease;
}

.card {
  position: relative;
  width: 350px;
  height: 500px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 20px;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:last-child {
  margin-right: 0;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.card-img {
  width: 100%;
  height: 100%;
  background-color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 90%;
  height: 230px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  box-sizing: border-box;
  border-top-left-radius: 8px;
  text-align: center;
  z-index: 2;
  overflow: hidden;

  display: grid;
  grid-template-rows: 40px 1fr; /* fixed title row + flexible text row */
  align-items: start;
}

.card-overlay h1 {
  font-size: 1rem;
  text-transform: uppercase;
  color: rgb(8, 11, 36);
  margin: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-overlay p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #333;
  text-align: center;
  margin: 0;

  display: flex;
  align-items: center;      /* centers text vertically in remaining area */
  justify-content: center;

  overflow: hidden;
  text-overflow: ellipsis;
}

/*.cards-prev,
.cards-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.3);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
  z-index: 5;
}

.cards-prev { left: 1rem; }
.cards-next { right: 1rem; }

.cards-prev:hover,
.cards-next:hover {
  background: rgba(0,0,0,0.5);
}

@media (max-width: 1200px) {
  .cards-carousel-container {
    width: 100%;
    padding: 0 10px;
  }
}*/


/* =============================
   LUXURY THREE COLUMN LIST
============================= */
.luxury-list-section {
  background-color: #f7f6f2;
  padding: 70px 20px;
}

.luxury-list-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Content now full width */
.luxury-list-content {
  width: 100%;
  margin: 0 auto;
}

/* Divider */
.luxury-divider-wrap {
  width: 100%;
  margin-bottom: 26px;
}

.luxury-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.luxury-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #c5a253, transparent);
}

.luxury-divider-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  line-height: 1;
  color: #c5a253;
  transform: scaleX(1.4);
  margin-bottom: 60px;
}

/* Title */
.luxury-list-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 2.8vw, 3rem);
  font-weight: 400;
  color: #111;
  text-align: center;
  margin-bottom: 60px;
}

.luxury-list-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  background-color: #c5a253;
  margin: 16px auto 0;
}


/* 3 Column Grid */
.luxury-bullet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 40px;

  max-width: 1400px;   /* controls visual width */
  margin-left: 100px;      /* centers the grid */
  
}


/* Bullet item */
.luxury-bullet-item {
  position: relative;
  padding-left: 28px;   /* slightly tighter */
  font-size: 1rem;
  line-height: 1.7;
  color: #222;
}

/* Luxury bullet */
.luxury-bullet-item::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 2px;
  color: #c5a253;
  font-size: 0.9rem;
  
}

.luxury-list-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}




/* =============================
   ROOMS SHOWCASE
============================= */

.section-dividerthree {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 10px;
  max-width: 800px;
  gap: 16px;
}

.section-dividerthree {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 35px auto 20px;
  max-width: 800px;
  gap: 16px;
}

.divider-linethree {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #c5a253, transparent);
}


.divider-iconthree {
  font-size: 1.4rem;
  color: #c5a253;
  font-family: 'Cormorant Garamond', serif;
}  


.rooms-showcase {
  padding: 10px 32px;
  background-color: #f7f6f2;
}


.rooms-showcase-header {
  max-width: 900px;
  margin: 0 auto 10px;
  text-align: center;
}

.rooms-showcase-header h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  color: #111;
  margin-bottom: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}

.rooms-showcase-header p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.rooms-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.room-card {
  border: 1px solid #c5a253;
  position: relative;
}

.room-card::before {
  content: "✦";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f7f6f2;
  padding: 0 10px;
  font-size: 1.2rem;
  color: #c5a253;
  font-family: 'Cormorant Garamond', serif;
}

.room-card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Body grows evenly so all cards stay balanced */
.room-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 34px 38px 28px;
}

.room-card-body h3 {
  font-size: 1.8rem;
  line-height: 1.15;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 20px;
  font-weight: 500;
  text-align: center;
}

.room-card-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 28px;
  text-align: center;
}

/* Push highlights downward so cards feel structured */
.room-highlights {
  margin-top: auto;
  padding-top: 12px;
}

.room-highlights span {
  display: block;
  font-size: 0.98rem;
  color: #666;
  margin-bottom: 10px;
}

/* Footer buttons */
.room-card-footer {
  display: flex;
  justify-content: center;   /* 🔥 center horizontally */
  align-items: center;       /* keeps vertical alignment clean */
  gap: 16px;

  padding: 26px 38px 34px;
  border-top: 1px solid #dddddd;
  background-color: #efefef;
}

.room-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.room-btn-secondary {
  background-color: #ffffff;
  color: #111;
}

.room-btn-secondary:hover {
  background-color: #f3f3f3;
}

.room-btn-primary {
  background-color: #111;
  color: #fff;
}

.room-btn-primary:hover {
  background-color: #333;
}

/* =============================
   HOME CAROUSEL
============================= */
.home-carousel {
  width: 100%;
  background-color: #f7f6f2;
  padding: 40px 20px;
}

/* Carousel Header */
.carousel-header {
  text-align: center;
  margin-bottom: 30px;
}

.carousel-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #111;
}

.carousel-header::after {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  background-color: #c5a253;
  margin: 16px auto 0;
}

.carousel-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  height: 700px;
  background-color: #fff;
  overflow: hidden;

  /* double black border */
  border: 4px double #000;
}

/* Fade slides */
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* shows full image without cropping */
  display: block;
  background-color: #fff;
}

/* Dots navigation */
.carousel-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #000;
  background-color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot.active {
  background-color: #000;
}

.dot:hover {
  transform: scale(1.08);
}



@media (max-width: 992px) {
  .carousel-container {
    height: 560px;
  }
}

@media (max-width: 768px) {
  .home-carousel {
    padding: 30px 14px;
  }

  .carousel-container {
    height: 420px;
  }

  .carousel-dots {
    bottom: 16px;
    gap: 10px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .carousel-container {
    height: 300px;
  }
}

/* =============================
   PROMISE SECTION
============================= */
.promise-section {
  background: #f7f6f2;

  /* ✅ Match page spacing */
  padding: 80px 20px;

  /* ✨ Gold borders */
  border-top: 3px double #c5a253;
  border-bottom: 3px double #c5a253;
}

.promise-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.promise-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Title */
.promise-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.2;
  color: #111;
  margin-bottom: 28px;
}

/* Text */
.promise-text {
  max-width: 1900px;
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  line-height: 1.9;
  color: #1e1e1e;
  margin-bottom: 40px;
}

/* Divider */
.promise-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 850px;
  width: 100%;
  gap: 22px;
}

.promise-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #c5a253, transparent);
}

.promise-divider-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  color: #c5a253;
  transform: scaleX(1.6);
}




/* === Homepage Article Section === */
.three-cards-section2 {
  padding: 60px 20px;
  background-color: rgb(235, 235, 240);
  text-align: center;
  margin-top: 10px;
}

.three-cards-section2 h2 {

    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 2.8vw, 3rem);
    font-weight: 400;
    color: #111;
    text-align: center;
    margin-bottom: 60px;
}

.cards-wrapper2 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.card2 {
  width: 350px;
  height: 400px;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card2:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-img2 {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 20px;
  background-color: #ccc;
}

.card-img2 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
}

.card-content2 {
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: calc(100% - 250px);
  padding: 10px;
  padding-bottom: 20px;
  gap: 10px;
}

.card-content2 h3 {
  margin: 0;
  text-align: center;
  font-size: 1.0rem;
  margin-bottom: 10px;
  color: #333;
  text-transform: uppercase;
}

.learn-more-btn2 {
  justify-self: center;
  padding: 8px 16px;
  background-color: #0a043f;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  padding-bottom: 10px;
  transition: background-color 0.3s ease;
  margin: 0;
  align-self: end;
}

.learn-more-btn2:hover {
  background-color: #333;
}

/* =============================
   CONTACT SECTION
============================= */
.contact-section {
  background-color: #ffffff;
  padding: 80px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

/* Left Content */
.contact-content {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 1px 60px 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Title */
.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  font-weight: 400;
  color: #111;
  margin-bottom: 24px;
}

/* Text */
.contact-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

/* Button */
.contact-button {
  margin-top: 20px;
  padding: 14px 32px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111;
  border: 1px solid #c5a253;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
  display: block;
  margin: 20px auto 0; /* 🔥 centers horizontally */
}

.contact-button:hover {
  background-color: #c5a253;
  color: #fff;
}

/* Right Image */
.contact-image {
  flex: 0 0 50%;
  max-width: 50%;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
  display: block;
}  



/* Footer */
.footer {
  background-color: #000;
  color: #fff;
  padding: 20px 0;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand .brand-logo {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
}

.footer-brand .brand-logo span {
  display: block;
  font-size: 0.8rem;
  font-weight: 300;
  margin-top: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.7rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ccc;
}

.footer-links p {
  font-size: 0.8rem;
  margin: 0;
}

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

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

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

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* prevent any rogue horizontal scroll */
html, body {
  overflow-x: hidden;
}

/* ── Up to 992px ── */
@media (max-width: 992px) {
  .cards-carousel-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .cards-prev,
  .cards-next {
    display: none;
  }
  .navbar {
    flex-wrap: wrap;
  }
  .nav-left, .nav-right {
    width: 100%;
    justify-content: center;
    margin: 0.5rem 0;
  }
}

/* ── Up to 768px ── */
@media (max-width: 768px) {
  .cards-carousel-container {
    display: block;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .cards-track {
    display: flex;
    gap: 1rem;
  }
  .card {
    flex: none;
    scroll-snap-align: start;
    width: calc(80% - 1rem);
    margin-right: 1rem;
  }
}

/* ── Up to 576px ── */
@media (max-width: 576px) {
  .card {
    width: 100% !important;
    margin-right: 0 !important;
  }
  .about, .three-cards-section, .housing-section, .three-cards-section2 {
    padding: 2rem 1rem;
  }
  .about-container, .housing-container {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ── Very small phones ── */
@media (max-width: 450px) {
  .nav-logo{
    display:block;
    width:100%;
    text-align:center;
    font-size:1.6rem;
    font-weight:700;
    margin:0;
    line-height:1.1;
  }

  .nav-tagline{
    display:block;
    width:100%;
    text-align:center;
    font-size:.8rem;
    color:#666;
    margin:2px 0 0;
  }

  .about-text h2 {
    font-size: 1.5em;
  }

  .cta-link{
    display:inline-block;
    margin:0 auto;
  }

  .cards-wrapper2{
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .card2{
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  .three-cards-section h2,
  .three-cards-section2 h2 {
    font-size: 1.5rem;
  }

  
}

/* =============================
   RESPONSIVE UPDATES
   Add this at the VERY BOTTOM
============================= */

/* Tablets and smaller laptops */
@media (max-width: 1024px) {
  .top-nav-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
    padding: 18px 20px;
  }

  .nav-left,
  .nav-center,
  .nav-right {
    justify-content: center;
  }

  .brand-group {
    justify-content: center;
  }

  .header-menu ul {
    gap: 1.5rem;
    padding: 10px 0;
  }

  .foundation-inner {
    flex-direction: column;
  }

  .foundation-copy,
  .foundation-media {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .foundation-video {
    height: 420px;
    border-radius: 0;
  }

  .luxury-bullet-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-left: 0;
    max-width: 100%;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-content,
  .contact-image {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .contact-content {
    padding: 40px 20px;
    text-align: center;
  }

  .contact-image img {
    min-height: 380px;
  }
}

/* Tablets and large phones */
@media (max-width: 768px) {
  .top-nav-inner {
    min-height: auto;
  }

  .brand-group {
    gap: 10px;
  }

  .brand-group img {
    height: 42px;
  }

  .nav-logo {
    font-size: 2rem;
    white-space: nowrap;
  }

  .nav-right {
    display: flex;
  }

  .nav-link {
    font-size: 0.78rem;
    padding: 9px 14px;
  }

  .sticky-menu-wrapper {
    position: relative;
  }

  .header-menu ul {
    flex-direction: column;
    gap: 12px;
    min-height: auto;
    padding: 16px 0;
  }

  .hero-foundation .foundation-inner {
    min-height: auto;
  }

  .foundation-copy {
    padding: 42px 24px;
  }

  .foundation-video {
    height: 340px;
  }

  .about {
    padding: 40px 20px;
  }

  .about-text h2,
  .three-cards-section h2,
  .luxury-list-title,
  .rooms-showcase-header h2,
  .carousel-header h2,
  .promise-title,
  .contact-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .cards-carousel-container {
    width: 100%;
    overflow-x: auto;
  }

  .cards-track {
    display: flex;
  }

  .card {
    width: 85%;
    min-width: 280px;
    height: 460px;
  }

  .card-overlay {
    width: 92%;
    height: 220px;
  }

  .luxury-list-section {
    padding: 55px 20px;
  }

  .luxury-bullet-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .rooms-showcase {
    padding: 40px 20px;
  }

  .room-card-image {
    height: 240px;
  }

  .room-card-body {
    padding: 28px 22px;
  }

  .room-card-footer {
    flex-direction: column;
    padding: 24px 22px 30px;
  }

  .room-btn {
    width: 100%;
    max-width: 260px;
  }

  .carousel-container {
    height: 420px;
  }

  .promise-section {
    padding: 60px 20px;
  }

  .promise-text {
    max-width: 100%;
  }

  .contact-section {
    padding: 55px 20px;
  }

  .contact-image img {
    min-height: 320px;
  }

  .footer-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .top-nav-inner {
    padding: 16px 14px;
  }

  .brand-group {
    gap: 8px;
  }

  .brand-group img {
    height: 36px;
  }

  .nav-logo {
    font-size: 1.65rem;
    font-weight: 300;
  }

  .nav-link {
    font-size: 0.72rem;
    padding: 8px 12px;
  }

  .header-menu ul li a {
    font-size: 0.75rem;
  }

  .foundation-copy {
    padding: 36px 18px;
  }

  .foundation-title {
    font-size: 1.6rem;
  }

  .foundation-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .foundation-video {
    height: 280px;
  }

  .btn-hero {
    font-size: 0.75rem;
    padding: 9px 14px;
  }

  .card {
    width: 100% !important;
    min-width: 100%;
    height: 440px;
    margin-right: 0;
  }

  .card-overlay {
    width: 94%;
    height: 225px;
    padding: 16px;
  }

  .card-overlay h1 {
    font-size: 0.85rem;
  }

  .card-overlay p {
    font-size: 0.82rem;
  }

  .luxury-divider-icon,
  .promise-divider-icon {
    font-size: 2rem;
  }

  .room-card-body h3 {
    font-size: 1.45rem;
  }

  .room-card-body p {
    font-size: 0.95rem;
  }

  .carousel-container {
    height: 300px;
  }

  .carousel-dots {
    bottom: 14px;
  }

  .contact-content {
    padding: 30px 10px;
  }

  .contact-text {
    font-size: 0.95rem;
  }

  .contact-button {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }
}

/* Very small phones */
@media (max-width: 360px) {
  .nav-logo {
    font-size: 1.45rem;
  }

  .brand-group img {
    height: 32px;
  }

  .carousel-container {
    height: 250px;
  }

  .room-btn,
  .contact-button {
    max-width: 100%;
  }
}
