/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #F8F7F3;
  color: #264B38;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
header {
  background: #FFFFFF;
  padding: 15px 0;
  border-bottom: 1px solid #D6CF94;
}

.logo img {
  width: 70px;           /* adjust for bigger/smaller */
  height: 70px;
  border-radius: 50%;    /* makes it a circle */
  object-fit: cover;     /* fills circle beautifully */
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #264B38;
  font-weight: 600;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #556B44;
}

/* Hero */
.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  gap: 40px;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 20px;
  text-align: center;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 25px;
  text-align: center;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.hero-buttons .btn {
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary {
  background-color: #264B38;
  color: #F8F7F3;
}

.btn-primary:hover {
  background-color: #556B44;
}

.btn-outline {
  border: 2px solid #264B38;
  color: #264B38;
  background: transparent;
}

.btn-outline:hover {
  background-color: #264B38;
  color: #F8F7F3;
}

/* Circular Images */
.circular-img {
  border-radius: 50%;
  width: 180px;
  height: 180px;
  object-fit: cover;
  display: block;
  margin: auto;
}

/* Highlights */
.highlights {
  display: flex;
  justify-content: center;
  gap: 50px;
  text-align: center;
  padding: 50px 0;
}

.highlight h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 8px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;          /* same height for all */
  object-fit: cover;      /* crops nicely, no stretching */
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  }

/* Services Grid */
.services-grid, .gallery-grid, .team-grid, .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.service-card, .gallery-item, .team-member, .blog-card {
  background: #FFFFFF;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.service-card img {
  width: 100%;
  height: 240px;          /* consistent height */
  object-fit: cover;      /* crops beautifully without distortion */
  border-radius: 12px;    /* same luxury rounded look */
}

.service-card:hover, .gallery-item:hover, .team-member:hover, .blog-card:hover {
  transform: translateY(-5px);
}

/* Blog Cards */
.blog-card p {
  font-size: 16px;
  margin-bottom: 10px;
}

/* ===== FAQ ===== */

.faq-section {
  max-width: 820px;
  margin: 100px auto;
  padding: 0 20px;
}

.faq-title {
  text-align: center;
  font-size: 34px;
  color: #1f3d2b;
  margin-bottom: 8px;
}

.faq-subtitle {
  text-align: center;
  color: #6b7c72;
  margin-bottom: 40px;
}

/* Cards */

.faq-item {
  background: #f6f4ee;
  border-radius: 14px;
  margin-bottom: 14px;
  padding: 18px 22px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
}

/* Question */

.faq-item summary {
  font-weight: 600;
  font-size: 16px;
  color: #1f3d2b;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 25px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* + / − icon */

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 20px;
  transition: 0.3s;
}

.faq-item[open] summary::after {
  content: "−";
}

/* Answer */

.faq-item p {
  margin-top: 14px;
  color: #555;
  line-height: 1.7;
  font-size: 14px;
}

/* Footer */
footer {
  background-color: #264B38;
  color: #F8F7F3;
  text-align: center;
  padding: 30px 0;
  margin-top: 50px;
}

footer a {
  color: #D6CF94;
  text-decoration: none;
}

footer a:hover {
  color: #FFFFFF;
}

/* Forms */
.booking-form, .contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

.booking-form input, .booking-form textarea, .contact-form input, .contact-form textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #D6CF94;
  font-size: 16px;
}

.booking-form button, .contact-form button {
  cursor: pointer;
  font-weight: 600;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.8);
  display:none;
  justify-content:center;
  align-items:center;
  z-index: 1000;
}

.lightbox img {
  max-width:90%;
  max-height:90%;
  border-radius: 12px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .hero {
    flex-direction: column;
  }

  .highlights {
    flex-direction: column;
    gap: 30px;
  }
}

  #whatsapp-button {
    position: fixed;
    bottom: 20px;      /* distance from bottom */
    right: 20px;       /* distance from right */
    width: 60px;       /* button size */
    height: 60px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #25D366; /* WhatsApp green */
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: transform 0.2s;
  }

  #whatsapp-button img {
    width: 35px;
    height: 35px;
  }

  #whatsapp-button:hover {
    transform: scale(1.1);
  }
