/* ------------------ Root Theme ------------------ */
:root {
  --tropical-green: #2ecc71;
  --tropical-blue: #1abc9c;
  --sunset-orange: #ff6f61;
  --sand: #fdf3e7;
  --dark: #222;
  --light: #fff;
  --shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  --radius: 12px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: var(--sand);
  color: var(--dark);
  line-height: 1.6;
}

/* ------------------ Navigation ------------------ */
nav {
  background: var(--tropical-blue);
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-img {
  height: 50px;
  border-radius: 8px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: var(--light);
  font-weight: 600;
  transition: var(--transition);
}
.nav-links li a:hover {
  color: var(--sunset-orange);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.burger span {
  height: 3px;
  width: 25px;
  background: var(--light);
  border-radius: 3px;
}

/* ------------------ Hero ------------------ */
.hero {
  height: 100vh;
  background: url("https://lh3.googleusercontent.com/p/AF1QipPxWDSf2WV-vNBY00PZUGguSZq2jRYzg8V6e5d0=s1360-w1360-h1020-rw") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  text-align: center;
  color: var(--light);
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 25px;
}

.btn {
  background: var(--sunset-orange);
  padding: 14px 32px;
  border-radius: 30px;
  color: var(--light);
  text-decoration: none;
  font-weight: bold;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.btn:hover {
  background: var(--tropical-green);
  transform: translateY(-3px);
}

/* ------------------ Sections ------------------ */
section {
  padding: 60px 20px;
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: auto;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--tropical-blue);
}

/* About */
.about p {
  max-width: 800px;
  margin: auto;
  font-size: 1.1rem;
}

/* Facilities */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.facility-card {
  background: var(--light);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: bold;
  transition: var(--transition);
}
.facility-card:hover {
  background: var(--tropical-green);
  color: var(--light);
  transform: scale(1.05);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
  justify-items: center; /* Center images horizontally */
}
.gallery-grid img {
  max-width: 200%; /* Smaller image size */
  width: 100%; /* Responsive width */
  height: auto; /* Maintain aspect ratio */
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover; /* Ensure images fit nicely without distortion */
}

/* Gallery Slider (unchanged, as it's not used in current HTML) */
.gallery-slider {
  position: relative;
  max-width: 800px;
  margin: auto;
}
.gallery-slider img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: var(--light);
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 50%;
  transform: translateY(-50%);
}
.prev-btn { left: -40px; }
.next-btn { right: -40px; }

/* Reviews */
.review-carousel .review {
  display: none;
  background: var(--light);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-style: italic;
}
.review-carousel .review.active {
  display: block;
}

/* Contact */
.contact p {
  margin: 10px 0;
}
.contact a {
  color: var(--sunset-orange);
  text-decoration: none;
  font-weight: bold;
}
.contact a:hover {
  color: var(--tropical-blue);
}

.social-icons {
  margin-top: 20px;
}
.social-icons a {
  margin: 0 15px;
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}
.social-icons a:hover {
  transform: scale(1.2);
}
.social-icons .fa-facebook-f { color: #1877F2; }
.social-icons .fa-instagram { color: #E1306C; }
.social-icons .fa-whatsapp { color: #25D366; }

/* Footer */
footer {
  background: var(--tropical-blue);
  color: var(--light);
  padding: 20px;
  text-align: center;
  margin-top: 40px;
}

/* ------------------ Responsive ------------------ */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: var(--tropical-blue);
    flex-direction: column;
    width: 200px;
    display: none;
  }
  .nav-links.active {
    display: flex;
  }
  .burger {
    display: flex;
  }
  .prev-btn { left: 10px; }
  .next-btn { right: 10px; }
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjust for smaller screens */
  }
}