/* ----------------------------------------------------------------------------
   GLOBAL RESET & BASE STYLES
---------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px; /* 1rem = 10px for easier sizing */
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  color: #21322f;      /* dark-green text */
  background-color: #f5f9f7; /* very light greenish background */
  line-height: 1.6;
}

/* ----------------------------------------------------------------------------
   CONTAINER (CENTERED LAYOUT)
---------------------------------------------------------------------------- */

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;


}



/* ----------------------------------------------------------------------------
   HERO SECTION
---------------------------------------------------------------------------- */
.hero {
  position: relative;
  height: 40vh;
  background-image: url("t1-hero-2.webp"); /* replace with your hero image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Dark overlay on hero for contrast */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 1rem;
}

.hero-content h1 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow:
    2px 2px 6px rgba(0, 0, 0, 0.7),
    -1px -1px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 2rem;
  text-shadow:
    1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background-color: #e6d65a;
  color: #020101;
  font-weight: 600;
  padding: 1rem 2.8rem;
  font-size: 1.6rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover {
  background-color: #c5b841;
  transform: scale(1.05);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  font-weight: 600;
  padding: 1rem 2.8rem;
  font-size: 1.6rem;
  border: 2px solid #ffffff;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: #020101;
}

/* ----------------------------------------------------------------------------
   FEATURES SECTION
---------------------------------------------------------------------------- */
.features {
  background-color: #eaf1ed; /* very light green */
  padding: 4rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  align-items: stretch;
}

.feature {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 1.5rem;
}

.feature-icon img {
  width: 100%;
  height: 100%;
}

.feature h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #21322f;
}

.feature p {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #45513c;
}

/* ----------------------------------------------------------------------------
   CONTAINER UTILITY
---------------------------------------------------------------------------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ----------------------------------------------------------------------------
   ABOUT US SECTION
---------------------------------------------------------------------------- */
.about-us {
  padding: 4rem 0;
}

.about-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-images {
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.about-img {
  width: 80%;
  border-radius: 12px;
  object-fit: cover;
}

/* Top image sits normally */
.about-img-top {
  z-index: 2;

}

/* Bottom image overlaps partly */
.about-img-bottom {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 60%;
  z-index: 1;
  border: 4px solid #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.about-text .about-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.leaf-icon {
  width: 1.6rem;
  height: 1.6rem;
}

.about-label-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #45513c;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.about-heading {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #21322f;
}

.about-paragraph {
  font-size: 1.3rem;
  color: #45513c;
  margin-bottom: 1.5rem;
  max-width: 600px;

  font-weight: 500;
}

.about-list {
  list-style: none;
  margin-bottom: 2rem;
  background-color: #fff;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.2rem;
  color: #21322f;
  margin-bottom: 0.75rem;

  font-weight: 400;
}

.check-icon {
  width: 1.6rem;
  height: 1.6rem;
}



/* ----------------------------------------------------------------------------
   SERVICES SECTION
---------------------------------------------------------------------------- */
.services-section {
  background-color: #f5f9f7; /* very light green */
  padding: 4rem 0;
}

.services-container {
  text-align: center;
}

.services-header {
  margin-bottom: 3rem;
}

.services-label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.services-label-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #45513c;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.services-heading {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #21322f;
}

/* Grid of 4 cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Each service card */
.service-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-icon {
  padding: 1.5rem;
}

.service-img {

    width: 3.375rem;

}

.card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #21322f;
  margin: 0 1.5rem 0.5rem;
  line-height: 1.3;
}

.card-text {
  font-size: 1.1rem;
  color: #45513c;
  margin: 0 1.5rem 1rem;
  line-height: 1.4;
  flex-grow: 1;
}

.card-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
}


/* Card Accordions */

.card-accordion {
  padding: 0 1.5rem 1.5rem;
}

.accordion-toggle {
  display: none;
}

.accordion-label {
  display: inline-block;
  margin-top: 0.5rem;
  color: #2d473b;
  font-weight: 500;
  font-size: 1.1rem;
  cursor: pointer;
  text-decoration: underline;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-toggle:checked ~ .accordion-content {
  max-height: 200px; /* Adjust as needed */
  margin-top: 1rem;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ----------------------------------------------------------------------------
   SECTION LABEL & HEADING
---------------------------------------------------------------------------- */
.section-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.leaf-icon {
  width: 1.6rem;
  height: 1.6rem;
}

.label-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #45513c;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.section-heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: #21322f;
  text-align: center;
  margin-bottom: 2rem;
}

/* ----------------------------------------------------------------------------
   GLOBAL & CONTAINER UTILITY
---------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px; /* 1rem = 10px */
}

body {
  font-family: "Roboto", sans-serif;
  color: #21322f; /* dark green text */
  background-color: #ffffff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ----------------------------------------------------------------------------
   SECTION LABEL & HEADING
---------------------------------------------------------------------------- */
.section-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.leaf-icon {
  width: 1.6rem;
  height: 1.6rem;
  fill: #21322f;
}

.label-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #45513c;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.section-heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: #21322f;
  text-align: center;
  margin-bottom: 2rem;
}


/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */

/* Container & Section */
.how-it-works {
  background-color: #ffffff;           /* white background */
  border-top: 4px solid #e6d65a;       /* yellow accent line */
  padding: 6rem 0;
}
.how-it-works .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.how-it-works-header {
  text-align: center;
  margin-bottom: 3rem;
}
.how-it-works-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: #45513c;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}
.how-it-works-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #21322f;
  margin: 0;
  line-height: 1.2;
}

/* Steps Grid (desktop) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  align-items: stretch;
}

/* Individual Step Card */
.step {
  background-color: #f9faf9;
  border: 1px solid #e1e8e2;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex; /* allow content to align within */
  flex-direction: column;
  justify-content: space-between; /* optional if you want balance */
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Numbered Circle */
.step-number {
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background-color: #e6d65a;
  color: #21322f;
  font-weight: 700;
  font-size: 1.4rem;
  text-align: center;
}

/* Icon */
.step-icon {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 1rem;
}
.step-icon img,
.step-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Text */
.step h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #21322f;
  margin: 0 0 0.75rem;
}
.step p {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #45513c;
  margin: 0;
  /* Allow body text to grow in small-width flex layout */
  flex-grow: 1;
}

/* ----------------------------------------------------------------------------
   OUR PROJECTS SECTION
---------------------------------------------------------------------------- */
.our-projects {
  background-color: #f5f9f7; /* very light green */
  padding: 4rem 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-items: center;
  margin-bottom: 2rem;
}

.project-card {
  position: relative;
  width: 100%;
  max-width: 370px;
  border-radius: 12px;
  overflow: hidden;
}

.project-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

/* Overlay style on the second card */
.project-card--overlay .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ----------------------------------------------------------------------------
   TESTIMONIALS STYLES
---------------------------------------------------------------------------- */
.testimonials-section {
  padding: 4rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background-color: #eef7f3; /* very light mint-green */
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testimonial-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #21322f;
}

.testimonial-location {
  font-size: 1.1rem;
  color: #45513c;
  font-weight: 500;
}

.testimonial-text {
  font-size: 1.2rem;
  color: #21322f;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stars {
  color: #e6d65a; /* gold */
  font-size: 3rem;
  letter-spacing: 0.1rem;
}

 .review-g-icon {

     width: 3rem;

   }

/* ----------------------------------------------------------------------------
   GLOBAL & CONTAINER UTILITY
---------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px; /* 1rem = 10px */
}

body {
  font-family: "Roboto", sans-serif;
  color: #21322f; /* dark-green text */
  background-color: #ffffff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-section {
  background-color: #ffffff;
  padding: 5rem 2rem;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-label {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #45513c;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.contact-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #21322f;
  margin-bottom: 0.5rem;
}

.contact-header p {
  color: #6c7a69;
  font-size: 1.2rem;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 1rem;
}

.contact-form {
  background-color: #f5f9f7;
  padding: 2rem;
  border-radius: 1rem;
}

.contact-form h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: #21322f;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: 500;
  font-size: 1rem;
  color: #21322f;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

.submit-btn {
  margin-top: 1rem;
  padding: 0.9rem 2rem;
  background-color: #e6d65a;
  color: #020101;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #c5b841;
}


#contact02 {

  border-radius: 8px;
  padding: 8px 16px;
  border: 2px solid #e6d65a;
  background-color: transparent;
  transition: all 0.3s ease;


}
    


/* ----------------------------------------------------------------------------
   FOOTER STYLES
---------------------------------------------------------------------------- */
.site-footer {
  background-color: #f5f9f7; /* very light green */
  padding: 4rem 0;
  font-weight: 500;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.6);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-radius: 10rem;




}

/* Column 1: Logo & Description */
.footer-col--logo {
  text-align: left;
  justify-self: center;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  
}

.footer-logo {
  max-width: 10rem;
  margin-bottom: 1rem;
  border-radius: 2rem;
}

.footer-logo-text {
  font-size: 1.375rem;
  color: #45513c;
  line-height: 1.5;
}

/* All footer columns share these heading styles */
.footer-heading {
  font-size: 1.75rem;
  font-weight: 600;
  color: #21322f;
  margin-bottom: 1rem;
}

/* Quick Links & Services lists */
.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1.25rem;
}

.footer-links a {
  color: #45513c;
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #21322f;
}

/* Address & Phone */
.footer-address,
.footer-phone {
  font-size: 1.5rem;
  color: #45513c;
  margin-bottom: 0.75rem;
}

.footer-phone a {
  color: #21322f;
  text-decoration: none;
  font-weight: 600;
}

    .footer-logo {

    max-width: 6.5rem;
    padding-left: 1rem;

  }

  /* FOOTER 2 ------------------------------------------------------------ */


.footer-03 {
  background-color: #f5f9f7; /* soft light greenish background */
  color: #21322f; /* dark green text */
  padding: 4rem 2rem;
  font-family: "Roboto", sans-serif;
}

.footer-wrap-03 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col-03 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#brand-h2-f {
  font-size: 2.4rem;
  font-weight: 700;
  color: #21322f;
  margin-bottom: 1rem;
}

.footer-info-03 p {
  font-size: 1.4rem;
  color: #45513c;
  line-height: 1.6;
}

.phone-03 a {
  color: #21322f;
  font-weight: 600;
  text-decoration: none;
}

.phone-03 a:hover {
  color: #e6d65a;
}

.footer-title-03 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #21322f;
  margin-bottom: 1rem;
  text-align: center;
}

#footer-ul {

border-top: none;
background-color: #F5F9f7;

}

.footer-social-03 {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-social-03 a {
  color: #45513c;
  font-size: 1.4rem;
  text-decoration: none;
  transition: color 0.3s ease;
  border-top: none !important;
}

.footer-social-03 a:hover {
  color: #e6d65a;
}

.footer-areas-03 {
  font-size: 1.4rem;
  color: #45513c;
  line-height: 1.5;
}

.footer-bottom-03 {
  text-align: center;
  padding-top: 3rem;
  font-size: 1.2rem;
  color: #45513c;
}

#footer-logo {

  width: 6rem;
  margin: 0 auto;


}

/* FOOTER 2 MINI QUERIES */

@media (max-width: 3000px) {

  .footer-col-03 {

    display: flex;
    justify-content: center;
    align-items: center;

  }

  #footer-logo {

    display: none;

  }

}

@media (max-width: 900px) {

  #footer-logo {

    display: block;

  }

  .footer-col-03 {

    text-align: center;

  }

  .footer-wrap-03 {

    display: flex;
    flex-direction: column;

  }

}



  /* FOOTER 2 END */


/* Back-to-Top Button */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #e6d65a;     /* your accent yellow */
  color: #21322f;                /* dark text */
  font-size: 1.6rem;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

#back-to-top:hover {
  background-color: #c5b841;
}

/* When visible */
#back-to-top.show {
  opacity: 1;
  visibility: visible;
}


/* NAV ------------------------------------------------------------------------------- */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");



header a {
  text-decoration: none;
}

header {
  padding: 5rem 2rem;
  height: auto;

background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5vh;
  max-width: 100%;
  width: 100%;

    position: relative;
  /* Sticky Header */

  position: sticky;
  top: 0;
  z-index: 999;

  /* Sticky Header End */

}



.header-wrap {

  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding-bottom: .5rem;
  padding-top: .5rem;
  gap: 2rem;

  
}

.nav-logo /* Logo img header */ {

  width: 5rem;
  border-radius: 1.5rem;

}


#brand-img {
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 8px;
  object-fit: cover;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.3));
}

#nav-header {
color: #21322f;  /* Dark green for brand text */
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: opacity 0.2s ease;
  font-weight: 600;
  font-size: 2rem;
  font-style : italic;
}

#brand a:hover {
  opacity: 0.7;
}


/* Header Logo Test Style 2 End */


/* General Link Styling --------------------------------------------------- */

ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 1.6rem;
  padding: 1rem 0;
  gap: 1.5rem;
  background-color: #fff;
}

ul li {
  padding: 0.5rem 1rem;
  transition: transform 0.3s ease;
  border-radius: 6px;
}

ul li a {
  color: #21322f;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

ul li:hover {
  transform: scale(1.08);
  background-color: #f5f9f7;
}

ul li:hover a {
  color: #e6d65a;
}








/* End General Link Styling --------------------------------------------------- */

/* CONTACT BUTTON ---------------------------------------------------------- */

#contact {

  border-radius: 8px;
  padding: 8px 16px;
  border: 2px solid #e6d65a;
  background-color: transparent;
  transition: all 0.3s ease;


}

#contact:hover {
  background-color: #e6d65a; 
  transform: scale(1.05);
}

#contact a {
  color: #21322f;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

#contact:hover a {
  color: #ffffff;
}

/* END CONTACT BUTTON ----------------------------------------------------------- */

/* Structures & Background Functionality ---------------------------------------- */


#hamburger-icon {
  margin: auto 0;
  display: none;
  cursor: pointer;
}

#hamburger-icon div /* Makes the 3 lines */ {
  width: 35px;
  height: 3px;
  background-color: #21322f;
  margin: 6px 0;
  transition: 0.4s;
}


/* Open Animation */

.open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
}

.open .bar2 {
  opacity: 0;
}

.open .bar3 {
  -webkit-transform: rotate(45deg) translate(-6px, -8px);
  transform: rotate(45deg) translate(-6px, -8px);
}


/* Open animation link structure */
.open .mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* End Open Animation */

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-width: none;

  height: auto;


}

/* End Structures & Background Functionality ---------------------------------------- */


/* Mobile LI STYLING ------------------------------------------------------------------ */

  .mobile-menu li {
  margin-bottom: 12px;
  width: 80%;
  text-align: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
  border-radius: 6px;
}

.mobile-menu li a {
  display: inline-block;
  width: 100%;
  padding: 10px 0;
  font-weight: 600;
  color: #21322f;
  background-color: transparent;
  border: 2px solid transparent;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.mobile-menu li:hover {
  transform: scale(1.05);
}

/* Contact Excluded due to its own border style */
.mobile-menu li:not(#contact) a:hover {
background-color: #f5f9f7;
border: 2px solid #e6d65a;
color: #21322f;
}

/* END Mobile LI STYLING --------------------------------------------------------------- */

/* Media Queries --------------------------------------------- */

@media only screen and (max-width: 900px) {
  header nav {
    display: none;
  }

  #hamburger-icon {
    display: block;
  }


}

@media ( max-width: 899px) {

  .header-wrap {

    justify-content: space-between;

  }

}

@media (max-width: 500px) {



  header {

    height: auto;
    padding-top: .75rem;
    padding-bottom: .75rem;

  }

  #nav-header {

    font-size: 1.5rem;
    font-style: italic;
    

  }

  ul {

      border-top: solid 2px #cccccc;

  }

}


@media (max-width: 385px) {

  #nav-header {

    font-size: 1.5rem;

  }

  #brand-img {

    width: 4rem;
    height: 4rem;

  }

}

/* End Media Queries ------------------------------------------------ */

/* Animations -------------------------------------------------------- */

/* Nav Links PC */

@keyframes slideInLeft {
  from {
    transform: translateX(-40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Animate desktop nav links on first load */
header nav ul li {
  opacity: 0; /* Hidden before animation */
  animation: slideInLeft 0.6s ease forwards;
}

/* Optional: Staggered delay for a smooth cascade */
header nav ul li:nth-child(1) { animation-delay: 0.1s; }
header nav ul li:nth-child(2) { animation-delay: 0.2s; }
header nav ul li:nth-child(3) { animation-delay: 0.3s; }
header nav ul li:nth-child(4) { animation-delay: 0.4s; }
header nav ul li:nth-child(5) { animation-delay: 0.5s; }

/* End Nav Links PC */

/* Nav Links Mobile */

  @keyframes slideDownFade {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.open .mobile-menu li {
  animation: slideDownFade 0.4s ease forwards;
  opacity: 0; /* ensures it fades in cleanly */
  background-color: transparent;
}

/* Staggered delay for cascade effect */
.open .mobile-menu li:nth-child(1) { animation-delay: 0.1s; }
.open .mobile-menu li:nth-child(2) { animation-delay: 0.2s; }
.open .mobile-menu li:nth-child(3) { animation-delay: 0.3s; }
.open .mobile-menu li:nth-child(4) { animation-delay: 0.4s; }
.open .mobile-menu li:nth-child(5) { animation-delay: 0.5s; }


.mobile-menu {
  transition: opacity 0.3s ease;
}

/* Nav Mobile Close Animation */

@keyframes slideUpFadeOut {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-20px);
    opacity: 0;
  }
}

/* Closing animation class */
.closing .mobile-menu li {
  animation: slideUpFadeOut 0.3s ease forwards;
}

/* End Nav Mobile Close Animation */

/* End Nav Links Mobile */


/* End Animations ----------------------------------------------------- */

#privacy {

  text-decoration: none;
  color: #45513c;

}