:root {
  --primary-color: #0a174e;
  --accent-color: #f7c873;
  --background-color: #f8f9fa;
  --surface-color: #ffffff;
  --text-color: #222;
  --heading-color: #0a174e;
  --font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --border-radius: 12px;
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-family);
  background: var(--background-color);
  color: var(--text-color);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section:nth-child(even) {
  background-color: var(--surface-color);
}

h2 {
  color: var(--heading-color);
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 2rem;
}

/* --- Navbar --- */
.navbar {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.3s;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 50px;
}

.navbar-menu {
  display: flex;
}

.navbar nav a {
  color: var(--heading-color);
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 5px;
}

.navbar nav a:hover {
  color: var(--accent-color);
}

.navbar nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.navbar nav a:hover::after {
  width: 100%;
}

/* --- Hero Section --- */
.hero {
  display: flex;
  align-items: center;
  background: var(--primary-color);
  color: #fff;
  padding: 5rem 2.5rem;
  min-height: 80vh;
}

.hero-content {
  flex: 1 1 50%;
  padding-right: 2rem;
}

.hero-content h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
  text-align: left;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-image {
  flex: 1 1 40%;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* --- About --- */
#about p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* --- Amenities --- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.amenity-card {
  background: var(--surface-color);
  padding: 2rem;
  text-align: center;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  font-weight: 500;
  font-size: 1.1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
}

/* --- Location --- */
#location p {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.map-container {
  margin-top: 1rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* --- Contact --- */
#contact {
    text-align: center;
}

#contact p a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
}

/* --- Footer --- */
.footer {
  background: var(--primary-color);
  color: #eee;
  text-align: center;
  padding: 2rem 0;
  margin-top: 2rem;
}

.footer p {
    margin: 0;
    opacity: 0.8;
}

/* --- Buttons & Floating Icon --- */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(247, 200, 115, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(247, 200, 115, 0.5);
}

.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.floating-whatsapp img {
  width: 32px;
  height: 32px;
}
.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}


/* --- Responsive Design --- */
.navbar-toggle {
  display: none;
}

@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 3rem 1.2rem;
  }
  .hero-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
  .hero-content h2, .hero-content p {
    text-align: center;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
  .hero-content h2 {
    font-size: 2.5rem;
  }
  
  .navbar-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--surface-color);
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: var(--shadow);
    padding: 1rem 0;
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    align-items: center;
    text-align: center;
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-menu a {
    margin: 1rem 0;
    padding: 0.5rem 1.5rem;
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
  }
  
  .navbar-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
  }

  .navbar-toggle .bar {
    height: 3px;
    width: 100%;
    background: var(--primary-color);
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
  }
}

@media (max-width: 576px) {
    .section {
        padding: 3rem 0;
    }
    .amenities-grid {
      grid-template-columns: 1fr;
    }
    .gallery-grid {
      grid-template-columns: 1fr;
    }
    .whatsapp-btn {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
    .hero {
      padding: 2rem 0.5rem;
    }
}

/* Image modal styles - keeping them as they are functional */
.image-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.7);
  flex-direction: column;
  transition: background 0.3s;
}
.image-modal[style*="display: flex"] {
  animation: fadeInModalBg 0.3s;
}
@keyframes fadeInModalBg {
  from { background: rgba(0,0,0,0.0); }
  to { background: rgba(0,0,0,0.7); }
}
.image-modal-backdrop {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 1;
}
.image-modal-img {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
  background: #fff;
}
.image-modal-prev, .image-modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(30,30,30,0.18);
  border: none;
  color: #fff;
  font-size: 1.7rem;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
  opacity: 0.7;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  outline: none;
}
.image-modal-prev {
  left: 12px;
}
.image-modal-next {
  right: 12px;
}
.image-modal-prev:hover, .image-modal-next:hover, .image-modal-prev:focus, .image-modal-next:focus {
  background: rgba(30,30,30,0.35);
  color: #f7c873;
  opacity: 1;
}
@media (max-width: 600px) {
  .image-modal-prev, .image-modal-next {
    opacity: 0;
    pointer-events: none;
  }
  .image-modal:hover .image-modal-prev,
  .image-modal:hover .image-modal-next {
    opacity: 0.7;
    pointer-events: auto;
  }
}
.image-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 0 8px;
  line-height: 1;
  transition: color 0.2s;
  opacity: 0.7;
}
.image-modal-close:hover, .image-modal-close:focus {
  color: #f7c873;
  opacity: 1;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}
.faq-item {
  background: var(--surface-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
  padding: 1.5rem 2rem;
}
.faq-item h3 {
  margin-top: 0;
  font-size: 1.15rem;
  color: var(--primary-color);
}
.faq-item p {
  margin-bottom: 0;
  color: var(--text-color);
}

.reviews .container {
  max-width: 800px;
  margin: 0 auto;
}
.reviews h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}
.reviews .elfsight-app-7898508d-41dd-445e-b725-5e2d55a9747b {
  margin: 0 auto;
  min-height: 350px;
}