:root {
  --rustic-brown: #2B180D;
  --saddle-tan: #704F32;
  --ivory-cream: #E0D4C1;
  --deep-charcoal: #1F1F20;
  --leather: url('https://www.transparenttextures.com/patterns/leather.png'); 
  --rustic-brown: #2B180D;
  --saddle-tan: #704F32;
  --ivory-cream: #E0D4C1;
  --deep-charcoal: #1F1F20;
  --leather: url('https://www.transparenttextures.com/patterns/leather.png');
  --font-header: 'Playfair Display', serif;
  --font-body: 'Lora', serif;
  --font-nav: 'Oswald', sans-serif;
}

/* === BASE & HEADER === */
html, body {
  color: var(--ivory-cream, #E0D4C1);
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  box-sizing: border-box;
  background: var(--ivory-cream);
}
body {
  color: var(--ivory-cream, #E0D4C1);
  color: var(--rustic-brown);
  font-family: var(--font-body);
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}
* { box-sizing: border-box; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-nav); }

nav {
  background: var(--leather), var(--rustic-brown);
  background-blend-mode: overlay;
  border-bottom: 2px solid var(--ivory-cream);
  width: 100%;
  min-height: 64px;
  position: fixed;
  top: 0;
  z-index: 99;
  box-shadow: 0 2px 8px rgba(60, 37, 18, 0.09);
  padding: 0;
  overflow: visible;
}

/* --- HEADER LAYOUT --- */
.nav-header {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 64px;
  background: none;
  position: relative;
}
.nav-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
.hamburger {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 201;
  margin-left: 18px;
}
.hamburger span {
  display: block;
  width: 35px;
  height: 4px;
  background: var(--ivory-cream);
  border-radius: 3px;
  margin: 0;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

/* Centered Title */
.nav-title-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  pointer-events: none;
  z-index: 100;
}
.nav-title {
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.5vw, 2.8rem);
  color: var(--ivory-cream);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  pointer-events: auto;
}

/* Book Now Button (right) */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  padding-right: 18px;
  background: none;
}
.cta-nav.desktop-book-btn {
  padding: 1.2em 2.5em;
  border-radius: 30px;
  font-size: 1.2rem;
  display: inline-block;
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 1.15rem;
  background: var(--rustic-brown);
  color: var(--ivory-cream);
  padding: 0.55em 1.7em;
  border-radius: 28px;
  border: 2px solid var(--ivory-cream);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-left: 0;
  outline: none;
  box-sizing: border-box;
  white-space: nowrap;
}

.cta-nav.desktop-book-btn:hover {
  background: var(--saddle-tan);
  border-color: var(--ivory-cream);
  transform: scale(1.05);
}

/* Nav Dropdown Links (hidden by default) */
.nav-links {
  display: none;
}
.nav-links.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  background: var(--rustic-brown);
  z-index: 2000;
  border-bottom: none;
  box-shadow: 0 8px 24px rgba(60, 37, 18, 0.12);
  padding: 0 0 18px 0;
  animation: fadeInDown 0.29s cubic-bezier(.59,-0.18,.59,1.18);
  height: auto;
  max-height: none;
  overflow-y: visible;
}

.nav-links a,
.nav-links button {
  display: block;
  padding: 14px 0;
  width: 100vw;
  color: var(--ivory-cream);
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 1.18rem;
  border-radius: 0;
  background: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.21s, color 0.21s;
}
.nav-links a:hover, .nav-links button:hover {
  background: var(--saddle-tan);
  color: var(--ivory-cream);
  transition: all 0.3s ease
}

/* Responsive - Mobile */
@media (max-width: 600px) {
  .nav-header {
    display: grid !important;
    grid-template-columns: 44px 1fr 44px !important;
    align-items: center;
    min-height: 54px;
    position: relative;
    width: 100%;
    padding: 0;
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    min-height: 54px;
    position: relative;
    width: 100%;
    padding: 0;
  }
  .nav-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  .nav-title-link {
    min-width: 0;
    font-size: 1.25rem;
  }
  .nav-right {
    display: none;
  }
  .hamburger {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    gap: 6px;
  }
  .hamburger span {
    width: 30px;
    height: 3px;
  }
}

/* Animate dropdown */
@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-14px);}
  100% { opacity: 1; transform: translateY(0);}
}






/* === HERO SECTION === */
.hero {
  background: var(--rustic-brown, #2B180D);
  padding-bottom: 60px;
  min-height: 100vh; /* Changed from min-height */
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  padding-top: 64px;
  padding-bottom: 0px;
  background: var(--rustic-brown);
}
.hero-content {
  padding-bottom: 60px;
  gap: 0rem;
  padding-top: 0px;
  padding-bottom: 60px;
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--ivory-cream);
  max-width: 650px;
  margin: 0 auto;
  margin-top: 16px;
  
  width: 100%;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
@media (max-width: 600px) {
  .hero {
    background: var(--rustic-brown, #2B180D);
    padding-bottom: 0px; /* Removed excessive bottom padding, moved to content */
    height: calc(100vh - 64px); /* Full viewport height minus nav height */
  }
  .hero-content {
    padding-bottom: 120px; /* Moved padding here to control content spacing */
    margin-top: 32px;
    gap: 1.5rem;
    padding-top: 0px;
    padding-bottom: 64px; /* Original value, adjust as needed */
    padding: 36px 3vw 24px 3vw; /* Shorthand takes precedence, adjust bottom padding */
    top: 3vw;
  }
}
.hero-logo-overlay {
  width: 65%;           /* Was 60% */
  max-width: 450px;     /* Was 350px */
  height: auto;
  display: block;
  margin: 6vw auto 0vw auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 1px 8px #3C251280);
  pointer-events: none;
}

.hero-content h1,
.hero-content h2,
.hero-content .cta-group {
  position: relative;
  z-index: 2;
  pointer-events: auto;
  text-shadow: 0 2px 10px #3C2512cc;
}
.hero-content h1 {
  font-family: var(--font-header);
  font-size: clamp(1.5rem, 6vw, 3rem);
  font-weight: 700;
  color: var(--ivory-cream);
  margin-top: 0;
  margin-bottom: 0rem;
  letter-spacing: 1.5px;
  text-shadow: 0 1px 6px #3C251230;
  white-space: normal;
}
.hero-content h1 span { display: block; }
.hero-content h2 {
  font-family: var(--font-nav);
  font-weight: 500;
  font-size: clamp(1.5rem, 6vw, 3rem);
  color: var(--ivory-cream);
  margin-bottom: 0rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px #3C251230;
}
.hero-content .cta-group {
  display: flex;
  justify-content: center;
  gap: 1.3em;
  flex-wrap: wrap;
  pointer-events: auto;
  margin-bottom:32px;
}
.hero-content button {
  margin-bottom: 64px;
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 1.2rem;
  background: var(--rustic-brown);
  color: var(--ivory-cream);
  border: 2px solid var(--ivory-cream);
  border-radius: 30px;
  padding: 1em 2em;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s, border-color 0.18s;
  position: relative;
  margin-top: 16px;
  margin-bottom: 32px;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  pointer-events: auto;
  z-index: 5;
}
.hero-content button:hover {
  background: var(--saddle-tan);
  color: var(--ivory-cream);
  border-color: var(--ivory-cream);
  transform: scale(1.04);
  transition: all 0.3s ease
} 
 @media (max-width: 600px) {
  .hero {
  background: var(--rustic-brown, #2B180D);
  padding-bottom: 60px; min-height: 54vh; }
  .hero-content {
  padding-bottom: 0px;
  gap: 0.5rem;
  padding-top: 32px;
  padding-bottom: 0px; 
    padding: 36px 3vw 24px 3vw; 
    top: 3vw; 
    margin-top: 0px; /* Or whatever looks best for you! */
    margin-bottom: 0px;
  }
}
@media (min-width: 601px) {
  .hero-content button {
  margin-bottom: 16px;
  margin-top:48px;
    font-size: 1.4rem;       /* Increase from 1.2rem */
    padding: 1.3em 3em;      /* Make the button taller and wider */
    border-radius: 36px;     /* Slightly rounder, optional */
  }
}
@media (max-width: 600px) {
  .hero-content .cta-group {
    margin-top: 10px; /* or whatever value looks best */
    margin-bottom: 0px; /* optional, for extra space below too */
  }
}



/* === SITE PLAN & AMENITIES === */
.siteplan-amenities-section {
  padding-top: 64px;
  padding-bottom: 64px;
  background: var(--leather), var(--ivory-cream);
  padding: 40px 16px;
  box-sizing: border-box;
}
.siteplan-amenities-section > .siteplan-img-section,
.siteplan-amenities-section > .siteplan-section {
  max-width: 1200px;
  margin: 0 auto;
  max-width: 1200px;     /* match your map width */
  margin: 0 auto;
}

/* SITE PLAN IMAGE */
.siteplan-img-section {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 40px;
  text-align: center;
  margin-bottom: 40px;
}
.siteplan-img-section .siteplan-image {
  display: inline-block;
  width: 100%;
  max-width: 800px;      /* half of 1200px */
  height: auto;
  border-radius: 21px;
  border: 2px solid #E0D4C1;
  box-shadow: 0 3px 12px #4628131a;
  background: #f9f3e8;
  object-fit: contain;
}

/* AMENITIES GRID */
.siteplan-section {
  width: 100%;
}
.amenities-grid {
  margin-bottom: 0;
  padding-bottom: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 0 auto;
  width: 100%;
  padding: 0;
}

/* CARD STYLING */
.amenity-item {
  background: #2B180D;
  border-radius: 13px;
  padding: 2em 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75em;
  border: 2px solid #E0D4C1;
  color: #E0D4C1;
  box-shadow: 0 2px 8px rgba(60, 37, 18, 0.07);
  box-sizing: border-box;
  width: 100%;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s, border-color 0.18s;
}
.amenity-item:hover {
  background: var(--saddle-tan);
  border-color: var(--ivory-cream);
  color: var(--ivory-cream);
  transform: scale(1.05);
  transition: all 0.3s ease;
}

/* ICON & LABEL */
.amenity-icon {
  max-width: 48px;
  height: auto;
  width: 48px;
  height: 48px;
  margin-bottom: 0.75em;
  object-fit: contain;
}
.amenity-item span {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

/* RESPONSIVE TUNING */
@media (max-width: 900px) {
  .siteplan-img-section .siteplan-image {
    max-width: 90vw;
  }
  .amenity-icon {
  max-width: 48px;
  height: auto;
    width: 40px;
    height: 40px;
  }
  .amenity-item span {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .siteplan-amenities-section {
  padding-top: 64px;
  padding-bottom: 64px;
    padding: 24px 12px;
  }
  .siteplan-img-section .siteplan-image {
    max-width: 95vw;
    margin-top:10px;
  }
  .amenity-icon {
  max-width: 48px;
  height: auto;
    width: 56px;
    height: 56px;
  }
  .amenity-item span {
    font-size: 1.2rem;
  }
}



/* === MAP, CALENDAR, FOOTER === */
.map-footer-section {
  padding-top: 64px;
  padding-bottom: 64px;
  background: #2B180D;
  padding-top: 0px;
  padding-bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#luxury-map-section {
  width: 100%;
  max-width: 1200px;
  padding: 0;
  background: none;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0px auto;
  z-index: 1;
}

.map-main-container {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 64px;
  margin-bottom: 64px;
  background: #2B180D;
  color: #E0D4C1;
  border-radius: 16px;
  max-width: 1200px;
  width: 100%;
  padding: 0; /* Outer padding */
  margin: 40px auto 10px auto; /* Consistent margin */
  border: 3px solid #E0D4C1;
  box-shadow: none;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#dallas-map {
  width: 100%;
  max-width: 1200px;
  height: 600px;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0;
  overflow: hidden;
}

.calendar-container {
  max-width: 800px;    /* Match your site plan image width */
  width: 100%;
  margin: 40px auto 40px auto;
  background: #2B180D;
  color: #E0D4C1;
  border-radius: 16px;
  padding: 1.5em 2vw;
  font-family: var(--font-body);
  font-size: 1.2rem;
  border: 3px solid #E0D4C1;
  box-shadow: none;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
}


.calendar-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 10px;
}
.calendar-title {
  font-family: var(--font-nav);
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--ivory-cream);
  letter-spacing: 0.02em;
}
.calendar-nav button {
  background: var(--rustic-brown);
  color: var(--ivory-cream);
  font-size: 1.46rem;
  border: 2px solid #E0D4C1;
  border-radius: 8px;
  padding: 3px 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.calendar-nav button:hover {
  background: var(--saddle-tan);
  color: var(--ivory-cream);
}
#calendar-table {
  width: 100%;
  border-collapse: separate;      /* allow gaps between cells */
  border-spacing: 4px 0;          /* 4px horizontal gap, 0 vertical */
  table-layout: fixed;            /* lock all 7 columns at equal width */
  background: none;
  margin-bottom: 10px;
  font-family: var(--font-nav);
  font-size: 1.2rem;
}

#calendar-table th,
#calendar-table td {
  box-sizing: border-box;         /* include padding in width */
  text-align: center;
  padding: 3px 2px;
  font-weight: 400;
  border: none;
  /* ↓–– REMOVE any width declaration here ––↓ */
}

#calendar-table th {
  font-family: var(--font-nav);
  color: var(--ivory-cream);
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding-bottom: 3px;
}

#calendar-table td {
  color: var(--ivory-cream);
  font-size: 1.06em;
  padding: 3px 2px;
  border-radius: 4px;
  transition: background 0.19s;
  cursor: pointer;
}

#calendar-table td.highlighted {
  background: var(--saddle-tan);
  color: var(--ivory-cream);
  transition: background 0.19s, color 0.19s;
}

#calendar-table td.range {
  background: #c7a07b;
  color: var(--ivory-cream);
  padding: 4px 10px;
  box-sizing: border-box;
  border-radius: 4px;
}

#calendar-table td.check-in,
#calendar-table td.check-out {
  background: var(--saddle-tan);
  color: var(--ivory-cream);
  font-weight: bold;
  border: none;
  outline: 2px solid var(--ivory-cream);
  outline-offset: -2px;
  padding: 4px 10px;
  box-sizing: border-box;
}

#calendar-table td.check-in {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

#calendar-table td.check-out {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

#calendar-table td.range-preview {
  background: #e9c8a9;
  color: var(--rustic-brown);
}

#calendar-table td:hover:not(.highlighted) {
  background: var(--saddle-tan);
  color: var(--ivory-cream);
}

.calendar-notes {
  font-size: 1em;
  color: var(--ivory-cream);
  margin-top: 8px;
  text-align: center;
  letter-spacing: 0.015em;
}




footer {
  padding-top: 64px;
  padding-bottom: 64px;
  background: var(--leather), var(--rustic-brown);
  background-blend-mode: overlay;
  display: flex; flex-direction: column; align-items: center;
  padding: 10px 0 14px 0;
  margin: 0; width: 100vw;
  border-top: 2px solid var(--ivory-cream);
  box-shadow: 0 -2px 8px rgba(60,37,18,0.13);
  margin-top: 0;
  position: relative;
}
.footer-logo-wrap { margin-bottom: 24px; }
.footer-logo {
  width: 82px; height: 82px;
  object-fit: contain;
}
.footer-icons {
  gap: 24px;
  margin: 24px 0;
  margin: 12px 0 6px 0;
  display: flex; gap: 18px;
}
.footer-icons a {
  color: var(--ivory-cream);
  font-size: 2em;
  transition: color 0.17s;
}
@media (max-width: 600px) {
  .footer-icons a {
    font-size: 1.2em;
  }
}

.footer-icons a:hover { color: var(--saddle-tan); }
.footer-legal {
  font-size: 0.99em;
  color: var(--ivory-cream);
  opacity: 0.9;
  margin-top: 7px;
  font-family: var(--font-nav);
  letter-spacing: 0.02em;
  text-align: center;
}
@media (max-width: 600px) {
  .footer-logo { width: 54px; height: 54px; }
  .footer-icons {
  gap: 24px;
  margin: 24px 0; font-size: 1.5em; }
  .footer-legal { font-size: 0.91em; }
  footer {
  padding-top: 64px;
  padding-bottom: 64px; padding: 18px 0 12px 0; }
  #dallas-map {
    height: 300px; /* Reduce height for mobile */
    padding: 0 5px; /* Adjust padding for smaller screens */
  }
  .calendar-container {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 64px;
  margin-bottom: 64px;
    max-width: 95vw;
    width: 95vw;
    box-sizing: border-box;
    padding: 1.2em 4vw 1.2em 4vw;
    margin: 0 auto 18px auto;
    border:0;
    border-radius: 14px;
    overflow-x: hidden;
  }
}


/* POPUP STYLING */
    .popup-overlay {
  display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      opacity: 0;
      transition: opacity 0.5s ease-in-out;
    }
    .popup-overlay[style*="display: flex"] {
      opacity: 1;
    }
    .popup-content {
      background: var(--leather), var(--rustic-brown);
      background-blend-mode: overlay;
      border: 2px solid var(--ivory-cream);
      padding: 40px 20px 20px 20px;
      border-radius: 10px;
      text-align: center;
      position: relative;
      max-width: 90%;
      width: 400px;
      color: var(--ivory-cream);
    }
    .popup-content .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--ivory-cream);
  z-index: 5;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
    }
    .popup-content h3 {
      margin: 0 20px 20px 20px;
      font-family: var(--font-header);
      color: var(--ivory-cream);
    }
    .popup-content input[type="email"] {
      width: 100%;
      padding: 10px;
      margin-bottom: 20px;
      border: 1px solid var(--ivory-cream);
      border-radius: 5px;
      font-family: var(--font-body);
      color: var(--rustic-brown);
      background: var(--ivory-cream);
    }
    .popup-content input[type="email"]::placeholder {
      color: var(--rustic-brown);
      background: var(--ivory-cream);
      opacity: 0.7;
    }
    .popup-content button {
  padding: 1.2em 2.5em;
  border-radius: 30px;
  font-size: 1.2rem;
      background: var(--leather), var(--rustic-brown);
      background-blend-mode: overlay;
      color: var(--ivory-cream);
      padding: 10px 20px;
      border: 2px solid var(--ivory-cream);
      border-radius: 20px;
      cursor: pointer;
      font-family: var(--font-nav);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.02em;
    }
    .popup-content button:hover {
      background: var(--saddle-tan);
      background-blend-mode: normal;
    }

/* === CUSTOM MAP PIN STYLES === */
.lodge-logo-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 88px;
  height: 113px;
  pointer-events: none;
  z-index: 10;
}
.lodge-logo-bg {
  background: #2B180D;
  border: 3px solid #E0D4C1;
  border-radius: 50% 50% 50% 50% / 50% 50% 70% 70%;
  width: 75px;
  height: 75px;
  box-shadow: 0 5px 24px #0008;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 0.05em;
  overflow: hidden;
}
.lodge-logo-bg img {
  width: 60px;
  height: 60px;
  display: block;
  object-fit: contain;
  background: none;
  margin: 0 auto;
  border-radius: 0.2em;
}
.lodge-logo-label {
  background: #2B180D;
  color: #E0D4C1;
  font-family: 'Oswald', sans-serif;
  font-size: 1.25em;
  border-radius: 12px;
  border: 2px solid #E0D4C1;
  padding: 3px 18px;
  margin-top: 0.15em;
  margin-bottom: 0.08em;
  box-shadow: 0 3px 8px #1c10087c;
  white-space: nowrap;
  font-weight: 700;
  pointer-events: auto;
  z-index: 11;
}
.luxury-pin, .luxury-pin-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.luxury-pin-bg {
  background: #2B180D;
  border: 2px solid #E0D4C1;
  border-radius: 50%;
  width: 41px;
  height:41px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px #0006;
  margin-bottom: 0.12em;
  z-index: 10;
}
.luxury-pin-bg i {
  color: #E0D4C1;
  font-size: 1.62rem;
  line-height: 1;
  text-shadow: 0 2px 8px #1b1109;
}
.luxury-pin-label {
  background: #2B180D;
  color: #E0D4C1;
  font-family: 'Oswald', sans-serif;
  font-size: 1em;
  border-radius: 8px;
  border: 2px solid #E0D4C1;
  padding: 2px 10px;
  margin-top: 0.13em;
  margin-bottom: 0.08em;
  box-shadow: 0 3px 8px #1c10087c;
  white-space: nowrap;
  font-weight: 600;
  pointer-events: auto;
  text-transform: uppercase;
  z-index: 11;
}




/* === CALENDAR FORM LAYOUT === */
.calendar-form {
  width: 100%;
  max-width: 1000px;
  margin: 28px auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden; /* Prevent horizontal scroll */
  box-sizing: border-box; /* Ensure padding doesn’t add to width */
  position: relative; /* Establish containing block for children */
  padding: 0 10px; /* Add small padding to handle edge cases */
}
.cta-nav.calendar-book-btn {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.calendar-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 18px;
  overflow-x: hidden; /* Prevent horizontal overflow */
  flex-wrap: wrap; /* Allow wrapping on small screens */
  box-sizing: border-box;
}


.calendar-col {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}


.calendar-label {
  font-family: var(--font-nav);
  font-size: 1em;
  color: var(--ivory-cream);
  font-weight: 700;
  margin-bottom: 0.28em;
  text-align: left;
  letter-spacing: 0.02em;
}

.calendar-input {
  background: var(--rustic-brown);
  border: 2px solid var(--ivory-cream);
  border-radius: 8px;
  font-family: var(--font-nav);
  color: var(--ivory-cream);
  font-size: 1.1em;
  padding: 0.25em 1.2em;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 0;
}

.calendar-input:read-only {
  background: var(--rustic-brown);
  color: var(--ivory-cream);
  cursor: pointer;
}

.calendar-input::placeholder {
  color: var(--ivory-cream);
  opacity: 0.85;
}

/* Summary styles */
.calendar-summary {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 1.2em 0 0.05em 0; /* Increased margin-top for more vertical spacing */
  gap: 0.3em; /* Reduced horizontal gap for tight label/value */
  overflow-x: hidden; /* Prevent horizontal overflow from child elements */
  position: relative; /* Contain children like the button */
  max-width: 100%; /* Ensure it doesn’t exceed container */
}

.calendar-summary-label {
  font-family: var(--font-nav);
  font-size: 1.04em;
  color: var(--ivory-cream);
  font-weight: 700;
  min-width: 0;              /* Removed fixed width */
  text-align: left;
}

.calendar-summary-value {
  font-family: var(--font-nav);
  font-size: 1.04em;
  color: var(--ivory-cream);
  font-weight: 700;
  margin-left: 0.3em;        /* Small horizontal spacing */
  background: none;
  border: none;
  outline: none;
  padding: 0 0.08em;         /* Reduced padding */
  min-width: 0;              /* Removed fixed width */
  text-align: left;
  display: inline-block;
}

#total-price {
  color: var(--ivory-cream);
  font-size: 1.04em;
  background: none;
  border: none;
  font-family: var(--font-nav);
  padding: 0 0.08em;
  margin-left: 0.1em;
  min-width: 0;
}

/* Book Now button for calendar */
.cta-nav.calendar-book-btn {
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 1.2rem;
  background: var(--rustic-brown);
  color: var(--ivory-cream);
  padding: 0.8em 2.5em;
  border-radius: 30px;
  border: 2px solid var(--ivory-cream);
  cursor: pointer;
  margin-top: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
  box-shadow: none;

}
.cta-nav.calendar-book-btn:hover {
  background: var(--saddle-tan);
  border-color: var(--ivory-cream);
  /* Remove transform entirely to guarantee no scroll jump */
  /* transform: scale(1.01); */ /* Or comment out */
  transform: none;
  transform-origin: center;
}




/* ───────────────────────────────────────────────────────────────────────────
   MOBILE (up to 600px): stack & reorder calendar form
   ─────────────────────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  /* 1) Kill the arrow button styling */
  .calendar-nav button {
    box-shadow: none;
  }

  /* 2) Ensure the form is a vertical flex container */
  .calendar-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }

  /* 3) Stack the two input columns */
  .calendar-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* Increased gap for better spacing */
    width: 100%;
    margin-bottom: 0; /* Remove bottom margin to control spacing */
  }

  /* 4) Adjust columns and summaries */
  .calendar-col {
    width: 100%; /* Ensure each column takes full width */
    margin-bottom: 0.5rem; /* Add spacing between cols */
  }

  .calendar-summary {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  /* 5) Reorder and style the TOTAL lines under the inputs */
  .calendar-form .calendar-col:nth-child(1) .calendar-summary {
    order: 2;
  }
  .calendar-form .calendar-col:nth-child(2) .calendar-summary {
    order: 3;
  }

  /* 6) Position BOOK NOW last and center it */
  .calendar-form > .cta-nav.calendar-book-btn {
    order: 4;
    align-self: center;
    margin: 1.5rem 0 2rem;
    width: auto;
  }

  /* 7) Adjust inputs for mobile */
  .calendar-input {
    width: 100%;
    max-width: 100%;
    padding: 0.5em 1em; /* Increase padding for touch targets */
  }
}


/* always hide horizontal overflow on these containers */
.calendar-container,
.calendar-form,
.calendar-input {
  overflow-x: hidden;
}

@media (max-width: 600px) {
  .map-main-container {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 48px;
  margin-bottom: 64px;
    background: #2B180D;
    border-radius: 16px;
    max-width: 95vw;
    width: 95vw;
    margin-top: 36px;
    margin-right: auto;
    margin-bottom: 10px;
    margin-left: auto;
    border: 3px solid #E0D4C1;
    box-sizing: border-box;
    overflow: hidden;
    padding: 0;
  }
  #dallas-map {
    width: 100%;
    max-width: 100%;
    height: 300px;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
}

html, body {
  color: var(--ivory-cream, #E0D4C1);
  scroll-behavior: smooth;
}

@media (max-width: 700px) {
  nav,
  footer {
  padding-top: 0px;
  padding-bottom: 0px;
    background: #2B180D;
    background-image: none;
    background-blend-mode: normal;
    box-shadow: none;
    filter: none;
  }
}

#calendar-table td.unavailable {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #aa9789;
  color: inherit;
  pointer-events: none;
  cursor: not-allowed;
  background: transparent;
  opacity: 1;
}

#calendar-table td.check-in.range,
#calendar-table td.check-out.range,
#calendar-table td.check-in,
#calendar-table td.check-out {
  background: var(--saddle-tan);
  color: var(--ivory-cream);
  font-weight: bold;
  border: 2px solid var(--ivory-cream);
  box-shadow: none;
  border-radius: 3px;
  z-index: 2;
}

#calendar-table td.check-in {
  text-decoration: none;
}
/* Mobile-specific layout (max-width: 600px) - Hide Total Nights and Total Price */
@media (max-width: 600px) {
  .calendar-container {
    max-width: 95vw;    /* Same as site plan image on mobile */
    width: 95vw;
    box-sizing: border-box;
    padding: 1.2em 4vw 1.2em 4vw;
    margin: 20px auto 18px auto;
    border: 0;
    border-radius: 14px;
    overflow-x: hidden;
  }
}


  .calendar-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .calendar-row {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    margin: 0 0 1rem 0;
    padding: 0;
    box-sizing: border-box;
  }

  .calendar-col {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 0 1rem 0;
    padding: 0;
    box-sizing: border-box;
  }

  .calendar-col .calendar-summary {
    display: none; /* Hide Total Nights and Total Price on mobile */
  }

  .calendar-label {
    margin-bottom: 0.5rem;
  }

  .calendar-input {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0.5rem;
    padding: 0.5em 1em;
    box-sizing: border-box;
  }

  .calendar-form > .cta-nav.calendar-book-btn {
    align-self: center;
    margin: 1rem 0;
    padding: 0.8em 2.5em;
    width: auto;
    box-sizing: border-box;
  }
}

/* —————————————————————————
   NEWSLETTER POPUP OVERRIDE
   ————————————————————————— */
#newsletterPopup .popup-content {
  background: var(--rustic-brown);
  border: 2px solid var(--ivory-cream);
  border-radius: 12px;
  padding: 32px 24px;
  max-width: 360px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

#newsletterPopup .popup-content .close-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  padding: 0;
  font-size: 1.2rem;
  color: var(--ivory-cream);
  cursor: pointer;
}



#newsletterPopup .popup-content .newsletter-heading {
  display: grid;
  grid-gap: 0.2em;
  margin-bottom: 1.2em;
  font-family: var(--font-header);
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: var(--ivory-cream);
}

#newsletterPopup .popup-content input[type="email"] {
  width: 100%;
  padding: 0.75em 1em;
  margin-bottom: 1rem;
  border: 2px solid var(--ivory-cream);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--rustic-brown);
  background: var(--ivory-cream);
}

#newsletterPopup .popup-content button {
  padding: 1.2em 2.5em;
  border-radius: 30px;
  font-size: 1.2rem;
  display: inline-block;
  font-family: var(--font-nav);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 0.6em 1.8em;
  border: 2px solid var(--ivory-cream);
  border-radius: 30px;
  background: var(--rustic-brown);
  color: var(--ivory-cream);
  cursor: pointer;
  transition: background 0.2s;
}

#newsletterPopup .popup-content button:hover {
  background: var(--saddle-tan);
}

#newsletterPopup #newsletterSuccess {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--ivory-cream);

}  
/* when only showing Success, shrink the box */

/* shrink to just fit “Success!” + X */
#newsletterPopup.only-success .popup-content {
  display: inline-block;       /* size to content */
  width: auto;      /* override any fixed/90% width */
  max-width: none;  /* let it shrink */
  padding: 8px 12px;           /* tight padding */
}

/* 1) Default e-mail field: ivory background, brown text */
#newsletterPopup .popup-content input[type="email"] {
  background: var(--ivory-cream);
  color: var(--rustic-brown);
  border: 2px solid var(--ivory-cream);
}

/* 2) Chrome autofill hack stays the same */
#newsletterPopup .popup-content input[type="email"]:-webkit-autofill,
#newsletterPopup .popup-content input[type="email"]:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--ivory-cream);
  -webkit-box-shadow: inset 0 0 0 1000px var(--saddle-tan);
}

/* 3) Disabled state: saddle-tan, greyed out */
#newsletterPopup .popup-content input[type="email"]:disabled {
  background: var(--saddle-tan);
  opacity: 0.6;
  cursor: not-allowed;
}

.calendar-summary-block {
  width: 440px;
  max-width: 95vw;
  margin: 24px auto 24px auto;
  display: grid;
  grid-template-columns: max-content max-content;  /* Ensures both columns hug content */
  justify-content: center;                         /* Center the grid as a whole */
  row-gap: 18px;
  column-gap: 7px;                                /* Wider gap for better visual balance */
  align-items: center;
}


.calendar-summary-row {
  display: contents;
}

.calendar-summary-label,
.calendar-summary-value {
  font-family: var(--font-nav);
  font-size: 1.04em;
  font-weight: 700;
  color: var(--ivory-cream);
  letter-spacing: 0.01em;
  line-height: 0.75;
  white-space: nowrap;       /* <--- Important! Prevents wrapping */
}

.calendar-summary-label {
  text-align: right;
  min-width: 170px;          /* <--- Make this big enough for all labels */
  padding-right: 20px;
}

.calendar-summary-value {
  text-align: left;
  min-width: 120px;
  padding-left: 0;
}







@media (max-width: 420px) {
  #newsletterPopup .popup-content {
    padding: 24px 16px;
    max-width: 95%;
  }
  #newsletterPopup .popup-content .newsletter-heading {
    font-size: 1.3rem;
  }
  #newsletterPopup .popup-content input[type="email"] {
    font-size: 0.95rem;
  }
  #newsletterPopup .popup-content button {
  padding: 1.2em 2.5em;
  border-radius: 30px;
  font-size: 1.2rem;
    padding: 0.5em 1.4em;
    font-size: 0.95rem;
  }
}


@media (max-width: 600px) {
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
  /* make sure your page content doesn’t slide under it */
  body {
  color: var(--ivory-cream, #E0D4C1);
    padding-top: 16px; /* match your nav’s height */
  }
}


section {
  scroll-margin-top: 80px;
}
.popup-overlay.active {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

@media (min-width: 601px) {
  .hero-logo-overlay {
    width: 50%; /* Reduced from 70% */
    max-width: 350px; /* Reduced from 500px */
  }
}

@media (max-width:600px) {
    .hero-content h2 {
        margin-top:16px;
    }
}

@media (max-width: 600px) {
  .lodge-logo-pin {
    transform: scale(0.9);
    transform-origin: center;
  }
  .luxury-pin {
    transform: scale(0.9);
    transform-origin: center;
  }
}

/* Animation for Hero */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero-content {
  animation: fadeIn 0.5s ease;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns for desktop */
  gap: 32px;
  max-width: 1200px;
  margin: 40px auto 0 auto;
  width: 100%;
  padding: 0;
}

@media (max-width: 1200px) {
  .amenities-grid {
    max-width: 95vw;
  }
}
@media (max-width: 900px) {
  .amenities-grid {
    grid-template-columns: 1fr;  /* 1 per row for tablet/mobile */
    margin: 24px auto 0 auto;
    gap: 18px;
  }
}


@media (max-width: 600px) {
  .calendar-summary-block {
    width: auto;
    max-width: 97vw;
    grid-template-columns: max-content max-content;
    justify-content: center;
    row-gap: 16px;
    column-gap: 8px;
    margin: 50px auto 50px auto;
    padding: 0;
  }
  .calendar-summary-label {
    min-width: 84px;
    font-size: 1.04em;
    padding-right: 5px;
    text-align: right;
  }
  .calendar-summary-value {
    min-width: 68px;
    font-size: 1.04em;
    padding-left: 0;
    text-align: left;
  }
}


/* Prevent calendar shifting by reserving border space */
#calendar-table td {
  border: 3px solid transparent;
  box-sizing: border-box;
}

/* Apply visible border on selected dates */
#calendar-table td.check-in,
#calendar-table td.check-out {
  border: 3px solid var(--ivory-cream); /* Or your highlight color */
}

#calendar-table {
  border-collapse: separate;
  border-spacing: 6px; /* or whatever gap you want */
}

/* Remove/override any mobile rules that change background */
@media (max-width: 600px) {
  #newsletterPopup .popup-content {
    background: var(--rustic-brown);
    background-image: var(--leather);
    background-blend-mode: multiply;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.22);
    border: 3px solid var(--ivory-cream);
  }
}