:root {
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --color-primary: #C89F91; 
    --color-dark: #2E282A; 
    --color-light: #FDFBF8; 
    --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);
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--color-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.about-wrapper {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

/* --- About Section: Text and Images --- */
.about-section {
    display: flex;
    align-items: flex-start; /* Aligned to the top */
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap; 
    text-align: left;
}

.about-images-container {
    flex: 1;
    min-width: 300px;
    max-width: 450px; /* Limit image container width */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text {
    flex: 1;
    min-width: 350px;
    max-width: 650px;
    text-align: left;
}

.about-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text p {
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.6;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-style: italic;
}

.highlighted {
  color: #1a4fb4;
  font-weight: 500;
}


/* --- Help Section: Cards --- */
.help-section {
  padding: 60px 20px;
  background-color: #eee;
  text-align: center;
}

.help-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111;
}

.help-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px; /* Reduced gap for better mobile spacing */
}

.help-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 25px;
  max-width: 400px;
  text-align: left;
  flex: 1 1 300px; /* Allows cards to wrap and fill space */
}

.help-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.help-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}


.mission-section {
  background-image: url('../Images/pinterest-accom2.jpg');
  background-size: cover;
  /* background-attachment: fixed;  */
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.mission-overlay {
  background-color: rgba(255, 255, 255, 0.85); 
  padding: 40px 30px;
  max-width: 900px;
  border-radius: 10px;
}

.mission-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--color-dark);
}

.mission-text {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
}


.pool-gallery {
  padding: 60px 20px; 
  background-color: #fff;
  text-align: center;
}

.pool-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 40px;
}

.pool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.pool-grid img {
  width: 100%;
  height: 300px; 
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.pool-grid img:hover {
  transform: scale(1.03);
}


.location-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.location-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
}

.location-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  gap: 40px;
}

.location-info {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  font-size: 16px;
  line-height: 1.6;
}

.location-map {
  flex: 1;
  min-width: 300px;
  max-width: 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.location-map img {
  width: 100%;
  max-width: 420px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.get-direction-button {
  display: inline-block;
  background-color: #e8dbcf;
  color: black;
  font-weight: bold;
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
}

.get-direction-button:hover {
  background-color: #d8c9bd;
}

@media (max-width: 992px) {
  
  .pool-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 10px;
  }
  .pool-grid img {
    height: 250px;
  }

  .about-images-container,
  .about-text {
    min-width: 100%;
    max-width: 100%;
  }

  .about-images-container {
    flex-direction: row; 
    justify-content: center;
  }
  
  .about-images-container .about-img {
      max-width: 45%; 
  }

  .about-text h2 {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .about-wrapper {
    margin: 30px auto;
  }
  
  .about-images-container {
    flex-direction: column; 
    gap: 10px;
  }
  
  .about-images-container .about-img {
      max-width: 100%;
  }
  
  .about-text h2,
  .help-title,
  .mission-title {
    font-size: 22px;
  }
  
  .pool-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 10px;
  }
  .pool-grid img {
    height: 200px;
  }

  
  .location-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .location-info,
  .location-map {
    max-width: 100%;
  }
}