:root {
  --espresso: #4b362f;
  --champagne: #e8ded6;
  --ivory: #f9f7f4;
  --charcoal: #2c2c2c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--espresso);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.center {
  text-align: center;
}

header {
  background: white;
  padding: 1.2rem 0;
  border-bottom: 1px solid #eee;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav img {
  height: 100px;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav a {
  position: relative;
  text-decoration: none;
  color: var(--charcoal);
  padding-bottom: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  left: 0;
  bottom: 0;
  background: var(--espresso);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 900px) {

  .hamburger {
    display: block;
  }

  #nav-links {
    position: absolute;
    top: 80px;
    right: 20px;
    background: white;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    display: none;
  }

  #nav-links.show {
    display: flex;
  }
}

.hero {
  height: 85vh;
  background: linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.4)),
              url('../images/Main Area Blur.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
}



.hero h1 {
  font-size: 3rem;
  color: white;
}

.hero p {
  margin: 1.5rem 0;
  font-size: 1.2rem;
}

.btn {
  padding: 14px 32px;
  background: var(--espresso);
  color: white;
  text-decoration: none;
  border-radius: 4px;
}


.experience-invite {  
  margin-top: 1.5rem;  
  font-style: italic;  
  opacity: 0.8;  
}  

#experience p + p {  
  margin-top: 1.5rem;  
}  

#experience .grid-2 {  
  grid-template-columns: 1fr 1.2fr;  
} 

#experience img {  
  width: 100%;  
	border-radius: 10px;  
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);  
}   

.section {
  padding: 5rem 0;
}

.light {
  background: white;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: white;
  padding: 2rem;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  text-align: center;
}

.pricing-card.highlight {
  border: 2px solid var(--espresso);
}

.price {
  font-size: 1.5rem;
  margin: 1rem 0;
}

.note {
  text-align: center;
  margin-top: 2rem;
  font-size: .9rem;
  opacity: .7;
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.controls {
  margin-top: 2rem;
}

.controls button {
  padding: 8px 14px;
  margin: 0 8px;
  border: 1px solid var(--espresso);
  background: none;
  cursor: pointer;
}

.cta {
  background: linear-gradient(
      rgba(75,54,47,0.85),
      rgba(75,54,47,0.85)
    ),
    url('../images/3.jpg') center/cover no-repeat;

  color: white;
  padding: 6rem 1rem;
  text-align: center;
}

.cta-inner {
  max-width: 800px;
  margin: auto;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.cta-subtext {
  opacity: 0.9;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.cta-details {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.cta-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.cta a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
}

.cta-actions .btn {
  background: white;
  color: var(--espresso);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-actions .btn:hover {
  background: var(--champagne);
}

footer a {
  color: white !important;
  text-decoration: none;
}

footer {
  background: var(--charcoal);
  color: white;
  text-align: center;
  padding: 3rem 1rem;
}


/* FORCE footer links to stay white
footer a,
footer a:visited,
footer a:hover,
footer a:active {
  color: rgba(255,255,255,0.9) !important;
  text-decoration: none;
}*/

/* Override iOS data detectors */
a[x-apple-data-detectors],
a[x-apple-data-detectors="true"],
a[x-apple-data-detectors-type] {
  color: inherit !important;
  text-decoration: none !important;
}


@media (max-width: 768px){
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .nav ul {
    display: none;
  }
}

    <!-- Amenity Code -->

.intro {
  max-width: 700px;
  margin: 1rem auto 3rem;
  opacity: .8;
}

.divider {  
  margin: 1.5rem auto 3rem;  
}  

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.amenity-tile {
  background: white;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform .3s ease;
}

.amenity-tile:hover {
  transform: translateY(-5px);
}

.amenity-feature {  
  display: grid;  
  grid-template-columns: 1fr 1fr;  
  gap: 3rem;  
  align-items: center;  
  margin-top: 4rem;  
}  
  
.amenity-feature.reverse {  
  direction: rtl;  
}  
  
.amenity-feature.reverse * {  
  direction: ltr;  
}  
  
.amenity-image img {  
  width: 100%;  
  border-radius: 10px;  
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);  
}  
  
.amenity-content h3 {  
  margin-bottom: 1rem;  
}  
  
.amenity-content ul {  
  padding-left: 1.2rem;  
  margin-top: 0;
}  

.amenity-content p {  
  margin-bottom: 1.2rem;  
} 

.amenity-content li {  
  margin-bottom: .6rem;  
  line-height: 1.6;  
}  

.amenity-list {  
  list-style: none;  
  padding-left: 0;  
}  
  
.amenity-list li {  
  padding-left: 1.5rem;  
  position: relative;  
  margin-bottom: 0.6rem;  
}  
  
.amenity-list li::before {  
  content: "•";  
  position: absolute;  
  left: 0;  
  opacity: 0.5;  
}  


@media (max-width: 768px) {  
  .amenity-feature {  
    grid-template-columns: 1fr;  
  }  
  .amenity-feature.reverse {  
    direction: ltr;  
  }  
}  


    <!-- Review Code -->

/* For restricting scroll*/
body {
  overflow-x: hidden;
}

.review-carousel {  
  position: relative;  
  overflow: hidden;  
  margin-top: 3rem;  
  width: 100%;
}  
  
.carousel-track {  
  display: flex;  
  transition: transform 0.5s ease;  
  gap: 2rem;  
  will-change: transform;
}  
  
.review-card {  
  min-width: 32%;  
  background: var(--champagne);  
  padding: 2rem;  
  border-radius: 8px;  
  font-style: italic;  
}  

.review-stars {  
  color: var(--espresso);  
  font-size: 0.9rem;  
  letter-spacing: 2px;  
  margin-bottom: 0.8rem;  
} 

.review-card span {  
  display: block;  
  margin-top: 1rem;  
  font-style: normal;  
  font-size: .9rem;  
  color: var(--espresso);  
}  
  
.carousel-btn {  
  position: absolute;  
  top: 50%;  
  transform: translateY(-50%);  
  background: white;  
  border: 1px solid var(--espresso);  
  font-size: 1.5rem;  
  padding: 6px 12px;  
  cursor: pointer;  
  z-index: 2;  
}  
  
.carousel-btn.prev { left: -10px; }  
.carousel-btn.next { right: -10px; }  
  
@media (max-width: 900px) {  
  .review-card { min-width: 48%; }  
}  
  
@media (max-width: 600px) {  
  .review-card { min-width: 100%; }  
}  



.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  line-height: 1.7;
}

.review-card h4 {
  margin-top: 1.5rem;
  font-weight: 500;
  color: var(--espresso);
}



.review-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.review-tile {
  background: var(--champagne);
  padding: 2rem;
  border-radius: 8px;
  line-height: 1.7;
  font-style: italic;
}

.review-tile.large {
  grid-column: span 2;
}

.review-tile span {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: .9rem;
  color: var(--espresso);
}


/* EXPERIENCE MOBILE FIX */
@media (max-width: 768px) {

  #experience .grid-2 {
    display: flex;
    flex-direction: column;
  }

	
  #experience .grid-2 > div:last-child {
    order: 1; /* Image first */
    margin-top: 2rem;
  }
  #experience .grid-2 > div:first-child {
    order: 2; /* Text second */
  }


  #experience img {
    width: 100%;
    height: auto;
  }

}


/* Prevent iOS from auto-styling phone numbers */
a[href^="tel"],
a[href^="mailto"] {
  color: inherit;
  text-decoration: none;
}

/* === Reservation Form === */  
  
.reservation-form {  
  background: rgba(255,255,255,0.08);  
  padding: 2.5rem;  
  border-radius: 8px;  
  max-width: 700px;  
  margin: auto;  
  backdrop-filter: blur(4px);  
}  
  
.reservation-form label {  
  display: block;  
  font-size: 0.8rem;  
  letter-spacing: 1px;  
  text-transform: uppercase;  
  margin-bottom: 0.4rem;  
  opacity: 0.8;  
}  
  
.reservation-form input {  
  width: 100%;  
  padding: 14px;  
  border-radius: 4px;  
  border: none;  
  font-size: 1rem;  
}  
  
.date-row,  
.info-row {  
  display: grid;  
  gap: 1.5rem;  
  margin-bottom: 1.5rem;  
}  
  
.date-row {  
  grid-template-columns: 1fr 1fr;  
}  
  
.info-row {  
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));  
}  
  
.btn-reserve {  
  width: 100%;  
  margin-top: 1.5rem;  
  font-size: 1.1rem;  
}  
  
/* === Availability Legend === */  
  
.availability-legend {  
  margin-top: 1.2rem;  
  font-size: 0.85rem;  
  opacity: 0.85;  
}  
  
.availability-legend span {  
  display: inline-block;  
  width: 12px;  
  height: 12px;  
  border-radius: 2px;  
  margin: 0 6px 0 16px;  
}  
  
.available {  
  background: #7da27c;  
}  
  
.unavailable {  
  background: #b36b6b;  
}  
  
/* === Flatpickr Overrides === */  
  
.flatpickr-day.available {  
  background: #7da27c;  
  color: white;  
  border-radius: 50%;
}  
  
.flatpickr-day.disabled,  
.flatpickr-day.unavailable {  
  background: #b36b6b;  
  color: white !important; 
  text-decoration: line-through; 
  cursor: not-allowed;
}  
  
.form-status {  
  margin-top: 1rem;  
  font-size: 0.9rem;  
}  
  
/* Mobile */  
@media (max-width: 600px) {  
  .date-row {  
    grid-template-columns: 1fr;  
  }  
}  
