/* Make sure the footer stays at the bottom of the viewport */
html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* full screen height */
  color: #ffffff;
}

/* Whatever wraps your main content */
main {
  flex: 1; /* pushes the footer down */
}

/* Footer stays at bottom */
footer {
  margin-top: auto; /* ensures footer is at the bottom */
}



/* ============================= */
/* NAVBAR BASE */
/* ============================= */
.navbar {
  background-color: #ffffff;
  border-bottom: 2px solid #000;
  font-family: "Baskerville", serif;
}

.navbar-container {
  display: flex;
  align-items: center;
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}

/* ============================= */
/* BRAND */
/* ============================= */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 0;
}

.navbar-logo {
  width: 70px;
  height: auto;
  flex-shrink: 0;
}

.brand-text {
  font-size: 28px;
  font-weight: bold;
  color: rgb(216, 188, 27);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

/* ============================= */
/* HAMBURGER */
/* ============================= */
.navbar-toggle {
  margin-left: auto;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

.navbar-toggle span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background-color: #000;
}

/* ============================= */
/* NAV LINKS (DESKTOP) */
/* ============================= */
.navbar-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin-left: auto;
  padding: 0;
}

.navbar-links a {
  text-decoration: none;
  color: rgb(216, 188, 27);
  font-weight: bold;
  font-size: 18px;
}

.navbar-links a:hover {
  color: #000;
}

/* ============================= */
/* DROPDOWN (DESKTOP) */
/* ============================= */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: #fff;
  list-style: none;
  padding: 10px 0;
  top: 100%;
  left: 0;
  min-width: 180px;
  border: 1px solid #ddd;
  border-radius: 6px;
  z-index: 10;
}

.dropdown-menu li {
  padding: 8px 20px;
}

.dropdown-menu a {
  color: rgb(216, 188, 27);
}

/* Hover open on desktop */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* ============================= */
/* DROPDOWN ARROW ANIMATION */
/* ============================= */
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dropdown-arrow {
  display: inline-block;
  transform: rotate(0deg);
  transition: transform 0.25s ease;
}

.dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

/* ============================= */
/* MOBILE LAYOUT */
/* ============================= */
@media (max-width: 992px) {

  /* Show hamburger */
  .navbar-toggle {
    display: flex;
  }

  /* Hide menu by default */
  .navbar-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    display: none;
    border-bottom: 2px solid #000;
  }

  /* Show menu when toggled */
  .navbar-links.active {
    display: flex;
  }

  .navbar-links li {
    padding: 0.5rem 0;
  }

  /* Disable hover dropdown on mobile */
  .dropdown:hover .dropdown-menu {
    display: none;
  }

  /* Mobile dropdown closed by default */
  .dropdown-menu {
    position: static;
    border: none;
    display: none;
    text-align: center;
  }

  /* Show dropdown when active */
  .dropdown.active .dropdown-menu {
    display: block;
  }
}

/* ============================= */
/* SMALL PHONE FONT FIX */
/* ============================= */
@media (max-width: 360px) {
  .brand-text {
    font-size: 22px;
  }
}








/* ============================= */
/* HERO SECTION */
/* ============================= */
.hero {
  background-color: #f4e596;
  text-align: center;
  padding: 5rem 1rem;
}

/* Content container */
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
  display: grid;
  justify-items: center;
}

/* ============================= */
/* HEADING */
/* ============================= */
.hero-heading {
  font-family: "Baskerville", serif;
  font-weight: bold;
  letter-spacing: 1px;
  color: #000;
  margin-bottom: 1.5rem;

  /* Responsive scaling */
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

/* ============================= */
/* TEXT */
/* ============================= */
.hero-text {
  font-family: "Baskerville", serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #000;
  max-width: 800px;
  margin-bottom: 2rem;
  line-height: 1.6;

  /* Responsive scaling */
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

/* ============================= */
/* BUTTON */
/* ============================= */
.hero-button {
  text-decoration: none;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: "Baskerville", serif;
  font-size: 1rem;
  letter-spacing: 1px;
  color: #fff;
  background-color: #000;
  display: inline-block;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* ============================= */
/* MOBILE SPACING FIX */
/* ============================= */
@media (max-width: 600px) {
  .hero {
    padding: 3rem 1rem;
  }

  .hero-container {
    padding: 1rem;
  }
}





/* ============================= */
/* CONTENT SECTION */
/* ============================= */
.content {
  display: grid;
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Section Heading */
.content-heading {
  font-family: "Baskerville", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: bold;
  letter-spacing: 1px;
  color: #000;
  text-align: center;
  margin-bottom: 2rem;
}

/* ============================= */
/* GRID LAYOUT */
/* ============================= */

/* Phones: 1 column */
@media (max-width: 767px) {
  .content {
    grid-template-columns: 1fr;
  }
}

/* Tablets: 2 columns */
@media (min-width: 768px) and (max-width: 1023px) {
  .content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop: 3 columns */
@media (min-width: 1024px) {
  .content {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================= */
/* CONTENT CARDS */
/* ============================= */
.content-container {
  margin-top: 40px;
}

.content-sections {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  height: 100%;
}

/* Images */
.section-photo {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  margin-bottom: 1rem;
}

/* Card heading */
.section-heading {
  font-family: "Baskerville", serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: #000;
  margin-bottom: 0.5rem;
}

/* Card text */
.section-text {
  font-family: "Baskerville", serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: #000;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  max-width: 280px;
}

/* ============================= */
/* BUTTON */
/* ============================= */
.section-button {
  margin-top: auto;
  text-decoration: none;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-family: "Baskerville", serif;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #000;
  background-color: #ead258;
  display: inline-block;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.section-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(181, 162, 63, 0.6);
}






/* ============================= */
/* PRICING SECTION */
/* ============================= */
.pricing-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 1rem;
  text-align: center;
}

/* ============================= */
/* HEADINGS */
/* ============================= */
.pricing-heading {
  font-family: "Baskerville", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: bold;
  letter-spacing: 1px;
  color: #000;
  margin-bottom: 0.75rem;
}

.pricing-subheading {
  font-family: "Baskerville", serif;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 1px;
  color: #000;
  margin-bottom: 0.5rem;
}

.pricing-text {
  font-family: "Baskerville", serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: #000;
  margin-bottom: 3rem;
}

/* ============================= */
/* GRID LAYOUT */
/* ============================= */
.sections {
  display: grid;
  gap: 2rem;
}

/* 1 column on phones */
@media (max-width: 767px) {
  .sections {
    grid-template-columns: 1fr;
  }
}

/* 2 columns on tablets */
@media (min-width: 768px) and (max-width: 1023px) {
  .sections {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 3 columns on desktop */
@media (min-width: 1024px) {
  .sections {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================= */
/* PRICING CARDS */
/* ============================= */
.pricing-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  border: 2px solid rgb(216, 188, 27);
  border-radius: 8px;
  height: 100%;
}

/* Card headings */
.pricing-section .section-heading {
  font-family: "Baskerville", serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: #000;
  margin-bottom: 0.75rem;
}

.pricing-section .section-subheading {
  font-family: "Baskerville", serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: #000;
  margin-bottom: 1rem;
}

.pricing-section .section-text {
  font-family: "Baskerville", serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: #000;
  line-height: 1.6;
}

/* Optional: spacing if you have buttons later */
.pricing-section .section-text:last-child {
  margin-bottom: 0;
}






/* ============================= */
/* TESTIMONIAL SECTION WRAPPER */
/* ============================= */
.testimonials {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

/* ============================= */
/* TOP INTRO GRID */
/* ============================= */
.testimonials-container {
  display: grid;
  align-items: center;
  gap: 2rem;
}

/* Desktop: 2 columns */
@media (min-width: 1024px) {
  .testimonials-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================= */
/* INTRO TEXT */
/* ============================= */
.testimonial-heading {
  font-family: "Baskerville", serif;
  letter-spacing: 1px;
  font-weight: bold;
  color: #000;
  margin-bottom: 1rem;

  /* Responsive scaling */
  font-size: clamp(2rem, 6vw, 4rem);
}

.testimonial-text {
  font-family: "Baskerville", serif;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
  color: #000;
  line-height: 1.6;
  max-width: 500px;
}

/* ============================= */
/* IMAGE */
/* ============================= */
.testimonial-photo {
  width: 100%;
  max-width: 450px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ============================= */
/* CAROUSEL BOXES */
/* ============================= */
.testimonial-box {
  max-width: 400px;
  min-height: 220px;
  padding: 1.5rem;
  
  display: flex;
  flex-direction: column;
  justify-content: center;

  font-family: "Baskerville", serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #000;
  text-align: center;
}

/* ============================= */
/* CAROUSEL ROW */
/* ============================= */
.row.text-center {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
  padding: 3rem 0 2rem;
  flex-wrap: wrap;
}

/* ============================= */
/* MOBILE STACK FIX */
/* ============================= */
@media (max-width: 767px) {
  .row.text-center {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-text {
    max-width: 100%;
  }
}







/* ============================= */
/* CONTACT FORM */
/* ============================= */
.contact-section {
    background: #ffffff;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.contact-container {
    background: rgb(255, 255, 255);
    max-width: 1000px;
    width: 100%;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

.contact-heading {
  font-family: "Baskerville", serif;
  color: #000;
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-subtext {
  font-family: "Baskerville", serif;
    margin-bottom: 30px;
    color: #000000d6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid #e2e2e2;
    font-size: 16px;
    transition: 0.2s ease;
    background: #fafafa;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #e0b800;
    background: white;
    box-shadow: 0 0 0 3px rgba(224,184,0,0.15);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-button {
    background-color: #ead258;
    color: black;
    border: none;
    padding: 14px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s ease;
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(181, 162, 63, 0.6);
}

/* Hide honeypot */
.honeypot {
    display: none;
}

/* ============================= */
/* RESPONSIVE CONTACT FORM */
/* ============================= */

/* Tablets */
@media (max-width: 992px) {
    .contact-container {
        padding: 40px 30px;
        border-radius: 14px;
    }

    .contact-heading {
        font-size: 28px;
    }
}

/* Phones */
@media (max-width: 600px) {

    .contact-section {
        padding: 50px 15px;
    }

    .contact-container {
        padding: 30px 20px;
        border-radius: 12px;
        box-shadow: none;
    }

    .contact-heading {
        font-size: 24px;
    }

    .contact-subtext {
        font-size: 14px;
    }

    .input-group input,
    .input-group textarea {
        font-size: 15px;
        padding: 12px 14px;
    }

    textarea {
        min-height: 120px;
    }

    .contact-button {
        font-size: 15px;
        padding: 12px;
    }
}







/* ============================= */
/* BLOG SECTION */
/* ============================= */
.blog {
  padding: 4rem 1rem;
}

.blog-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

/* ============================= */
/* HEADINGS */
/* ============================= */
.blog-heading {
  font-family: "Baskerville", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: bold;
  letter-spacing: 1px;
  color: #000;
  margin-bottom: 0.5rem;
}

.blog-subheading {
  font-family: "Baskerville", serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #000;
  margin-bottom: 2.5rem;
}

/* ============================= */
/* GRID LAYOUT */
/* ============================= */
.blog-sections {
  display: grid;
  gap: 2rem;
}

/* 1 column on phones */
@media (max-width: 767px) {
  .blog-sections {
    grid-template-columns: 1fr;
  }
}

/* 2 columns on tablets */
@media (min-width: 768px) and (max-width: 1023px) {
  .blog-sections {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 3 columns on desktop */
@media (min-width: 1024px) {
  .blog-sections {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================= */
/* BLOG CARDS */
/* ============================= */
.blog-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

/* Images */
.blog-section-photo {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  margin-bottom: 1rem;
  border-radius: 4px;
  border: 1px solid #000;
}

/* Card heading */
.blog-section-heading {
  font-family: "Baskerville", serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: #000;
  margin-bottom: 0.5rem;
}

/* Card text */
.blog-section-text {
  font-family: "Baskerville", serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: #000;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 320px;
}

/* Read more link */
.blog-section-link {
  font-family: "Baskerville", serif;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: rgb(216, 188, 27);
  text-decoration: none;
}

.blog-section-link:hover {
  text-decoration: underline;
}





/* ============================= */
/* FOOTER */
/* ============================= */
footer {
  background-color: #ffffff;
  color: rgb(216, 188, 27);
}

/* ============================= */
/* FOOTER MAIN BAR */
/* ============================= */
.footer {
  padding: 2rem 1rem;
  border-top-style: solid;
  border-color: #000;
}

/* Layout */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================= */
/* FOOTER LOGO / ADDRESS */
/* ============================= */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-family: "Baskerville", serif;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: rgb(216, 188, 27);
  line-height: 1.4;
}

.footer-logo img {
  width: 60px;
  height: auto;
}

/* ============================= */
/* FOOTER NAV LINKS */
/* ============================= */
.footer-foot {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-item {
  list-style: none;
}

.footer-link {
  text-decoration: none;
  font-family: "Baskerville", serif;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: rgb(216, 188, 27);
}

.footer-link:hover {
  color: #000;
}

/* ============================= */
/* POLICIES */
/* ============================= */
.policies {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
  background-color: #ffffff;
  margin: 0;
}

.policy_text {
  text-decoration: none;
  font-family: "Baskerville", serif;
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: rgb(216, 188, 27);
}

.policy_text:hover {
  color: #000;
}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 767px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-foot {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-logo {
    justify-content: center;
    text-align: center;
  }
}