
/*header*/

body {
  font-family: 'Cormorant Garamond', serif;
   background-image: url('images/bg.png'); 
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center;
  overflow-x: hidden;
}

body.lazy-bg {
  background-image: none;
}

/* header section starts here */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Cinzel', serif;
}

/* Header Styling */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    position: relative;
    z-index: 100;
    width: 100%;
}

.logo img {
    max-width: 220px;
    /* increase this as needed */
    height: auto;
}


/* Navigation Menu */
nav ul {
    display: flex;
    list-style: none;
    gap: 60px;
    margin-top: 40px;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: #5C4A36;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

nav ul li a:hover {
    color: #805b32;
    border-bottom: 4px solid #825c30;
}

/* Dropdown Styling */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 160px;
    display: none;
    flex-direction: column;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    z-index: 9999;
}

.dropdown-content a {
    padding: 10px 20px;
    text-align: left;
    font-size: 0.85rem;
    color: #5C4A36;
    text-decoration: none;
}

.dropdown-content a:hover {
    background-color: rgba(88, 115, 68, 0.2);
    /* Very light transparent green */
    color: #805b32;
}


/* Show dropdown on hover (desktop) */
@media (min-width: 768px) {
    .dropdown:hover .dropdown-content {
        display: flex;
    }
}

/* Hamburger Icon */
.hamburger {
    display: none;
    font-size: 28px;
    color: #5C4A36;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

/* Mobile Menu */
@media (max-width: 767px) {
    .hamburger {
        display: block;
    }

    nav {
        display: none;
        flex-direction: column;
        align-items: center;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        z-index: 1000;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
        width: 100%;
    }

    nav ul li {
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        display: block;
        width: 100%;
        padding: 10px 0;
    }

    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
    }

    .dropdown-content.show {
        display: flex;
    }

    .dropdown-content a {
        padding: 12px 20px;
        width: 100%;
        text-align: center;
        font-size: 0.9rem;
        color: #5C4A36;
        text-decoration: none;
        background-color: transparent;
        transition: background-color 0.3s ease;
    }

    .dropdown-content a:hover {
        background-color: rgba(88, 115, 68, 0.1);
        /* subtle green */
        color: #805b32;
    }

}

/* header section ends here */

/* ==========================================================================  
   RESPONSIVE DESIGN - ≤767px (Mobile)  
========================================================================== */


/* form hero section================== */

.hero-contact {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  background: url('images/bg-contact.webp') no-repeat center center/cover;
  /* background:none; */
 
  
}

.contact-form {
  background-color: transparent; /* deep green with opacity */
  padding: 10px;
  border-radius: 0px;
  max-width: 420px;
  width: 100%;
  /*box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);*/
  align-items: center;
  
}

.contact-form input,
.contact-form textarea {
  width: 90%;
  margin: 10px 0;
  padding: 12px;
  background-color:#dcc6b2f2;
  border: none;
  color: #5C4A36;
  font-size: 16px;
  border-radius: 0px;
  resize: none;          /* ❌ Disable manual resizing */
  overflow: hidden;      /* Hide scrollbar */
      /* Optional: Minimum height */
  line-height: 1.6; 
  font-family: Perpetua Regular;
  
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: black;
}
.contact-form {
  text-align: center; /* 👈 this will center inline elements like buttons */
}
.contact-form button {
  background-color: white;
  color: black;
  border: none;
  padding: 12px 25px;
  margin-top: 10px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 0px;
  transition: background 0.3s;
  align-items: center;
  width:180px;
  font-size: 20px;
}

.contact-form button:hover {
  background-color:#dcc6b2f2;
}


/*media query for header */

/* Responsive Styling for Tablet & Mobile */
@media (max-width: 768px) {
  .hero-contact {
    flex-direction: column;
    padding: 60px 15px;
    min-height: auto;
  }

  .contact-form {
    max-width: 90%;
    padding: 20px 10px;
    box-shadow: none;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    font-size: 15px;
  }

  .contact-form button {
    width: 40%;
    padding: 12px;
  }

  
}

@media (max-width: 480px) {
  .hero-contact {
    padding: 40px 10px;
  }

  .contact-form {
    padding: 10px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
    padding: 10px;
    margin-left: -8px;
    width:280px;
  }

  .contact-form button {
    padding: 10px;
    font-size: 15px;
  }

  
}




/*faq  styling */



 
.accordion {
  font-family: Perpetua Regular;
  max-width: 860px;
  margin: 0 auto;
  padding: 20px;
}

.accordion-item {
  background-color:#dcc6b28c;
  margin-bottom: 10px;
  border: none;
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  background: none;
  border: none;
  font-size: 20px;
  
  color:hwb(222.65deg 11.18% 73.54%);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Perpetua Regular;
}

.accordion-header:hover {
  background-color: transparent;
}

.accordion-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg); /* flip when open */
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 18px;
  color: black;
  background-color:#dcc6b28c;
  transition: max-height 0.4s ease, padding 0.3s ease;
   font-family: Perpetua Regular;
}

.accordion-item.active .accordion-content {
  max-height: 300px; /* enough to show answer */
  padding: 15px 20px 20px;
  background-color: #dcc6b28c;
  color:hwb(222.65deg 11.18% 73.54%);
}

.faq-heading-box {
  background-color:#ab8e76; /* rich brown */
  padding: 40px 20px 40px;
  color: #fff;
  text-align: center;
  position: relative;
}

.faq-heading-box h2 {
  font-family: 'Georgia', serif;
  font-size: 32px;
  margin: 10px 0;
}

.faq-heading-box h4 {
  font-size: 14px;
  letter-spacing: 2px;
  margin-top: 5px;
  font-weight: normal;
  text-transform: uppercase;
  color: #e8dccc;
}

/* Style for the top-right image */
.faq-bg-img {
  position: absolute;
  top: 0px;
  right: 10px;
  width: 160px;
  height: auto;
  opacity: 50;              /* 🔹 Make it fully visible */
  filter: brightness(5); /* 🔹 Darken the image */
  z-index: 2;
  right: 15%;
}



/*media query for faq*/

/* Responsive styling for FAQ section */

@media (max-width: 768px) {
  .accordion {
    max-width: 100%;
    padding: 15px;
  }

  .accordion-header {
    font-size: 15px;
    padding: 15px;
  }

  .accordion-content {
    font-size: 13px;
    padding: 0 15px;
  }

  .accordion-item.active .accordion-content {
    padding: 10px 15px 15px;
  }

  .faq-heading-box {
    padding: 30px 15px;
  }

  .faq-heading-box h2 {
    font-size: 28px;
  }

  .faq-heading-box h4 {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .faq-bg-img {
    width: 120px;
    right: 5%;
    top: 10px;
    opacity: 0.5;
    filter: brightness(1.5);
  }
}

@media (max-width: 480px) {
  .accordion-header {
    font-size: 14px;
    padding: 12px;
  }

  .accordion-content {
    font-size: 12px;
    padding: 0 10px;
  }

  .accordion-item.active .accordion-content {
    padding: 8px 10px 10px;
  }

  .faq-heading-box h2 {
    font-size: 24px;
  }

  .faq-heading-box h4 {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .faq-bg-img {
    width: 100px;
    top: 5px;
    right: 3%;
  }
}





/*FOOTER STYLING */





/* Modal backdrop */
/* Modal Container - Hidden by default */
.modal {
  display: none;  /* VERY IMPORTANT */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

/* Modal Content Box */
.modal-content {
  background: #eae1dafa;
  margin: 15% auto;
  padding: 20px 30px;
  border-radius: 0px;
  width: 80%;
  max-width: 400px;
  text-align: center;
  font-family: Perpetua, serif;
  color: black;
}

.modal-content p {
  font-family: Perpetua, serif;
  margin-bottom: 20px;
}

.modal-content button {
  padding: 10px 20px;
  background:  #5C4A36;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}






.recaptcha-container {
    margin: 10px 0;
    display: flex;
    justify-content: center;
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.error-message {
  display: none;
  margin-top: 5px;
  font-size: 14px;
  font-weight: bold;
}

.recaptcha-container {
  margin: 10px 0;
}