/* --- Reset and Variables --- */
:root {
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --color-primary: #C89F91; /* A richer, warm beige */
    --color-dark: #2E282A; /* Dark charcoal/brown */
    --color-light: #FDFBF8; /* Soft off-white */
    --color-text: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-light);
    color: var(--color-text);
}

/* --- Typography --- */
h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--color-dark);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.hero {
    position: relative;
    height: 100vh;
    background: url("../Images/IMG_8959.JPG") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.booking-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-form .form-row {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.booking-form input,
.booking-form select {
    padding: 12px 15px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--font-body);
    width: 230px;
}

.cta-button {
    padding: 12px 40px;
    border: none;
    background: var(--color-primary);
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #b48a7d;
}

/* --- Featured Units Section --- */
.featured-units {
    padding: 80px 20px;
}

.cards-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.unit-card {
    width: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.unit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.unit-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.unit-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.unit-description {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.book-btn {
    display: inline-block;
    background-color: var(--color-dark);
    color: #fff;
    padding: 10px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.book-btn:hover {
    background-color: var(--color-primary);
}


.things-to-do {
  /* padding: 80px 20px; */
  
  text-align: center;
  background-color: #e0dad1;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.things-to-do::before {
  content: "";
  /* position:fixed; */
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #fff(0, 0, 0, 0.5); 
  /* z-index: 1; */
}

.section-title {
  position: relative;
  z-index: 2;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 60px;
  color: #000000;
  margin-top: 5%;
}

.activities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 5% ;
}

.activity-item {
  width: 120px;
  text-align: center;
}

.activity-item img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.activity-item p {
  margin-top: 12px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  line-height: 1.4;
}


/* --- Gallery Section --- */
.gallery-section {
    padding: 80px 20px;
    background-color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.see-more-container {
  text-align: center;
}


.see-more-container {
  text-align: center;
  margin-top: 50px;  
}

.see-more-btn {
  display: inline-block;
  background-color: var(--color-dark);
  color: #fff;
  padding: 12px 35px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.see-more-btn:hover {
  background-color: var(--color-primary);
}

/* --- Reviews Section --- */
.review-images-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 100px; /* More space between cards */
  padding: 80px 20px;
}

.review-card-image {
  max-width: 550px;  /* Bigger width */
  width: 100%;
  border-radius: 20px;  /* More rounded */
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.review-card-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}


.hero .flatpickr-calendar {
    color: var(--color-dark) !important; 
}

/* Ensure the background and text color of the input fields are correct */
.hero-content .booking-form input,
.hero-content .booking-form select {
    /* Override existing styles to ensure text is dark and background is light */
    color: var(--color-dark) !important;
    background-color: var(--color-light) !important;
}