 @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
body{
      font-family: "Montserrat", sans-serif !important;

}
   body, html {
    overflow-x: hidden;
  }
 
.custom-navbar {
  background: #fff;
}

/* =========================
   NAV LINKS
========================= */
.navbar-nav .nav-link {
  color: #2b4d2e !important;
  margin-right: 20px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #558a60 !important;
}

/* =========================
   LOGO
========================= */
.brand-logo {
  height: 100px;
  width: auto;
  display: block;
}

/* =========================
   BUTTONS
========================= */
.btn-franchise {
  background-color: #396f2b !important;
  color: #fbd053 !important;
  border-radius: 30px !important;
  padding: 10px 22px !important;
  font-weight: 500 !important;
  border: none !important;
  transition: all 0.3s ease;
}

.btn-franchise:hover {
  background-color: #2f5d24 !important;
  color: #fbd053 !important;
}

.btn-contact {
  background-color: #fbd053 !important;
  color: #2b4d2e !important;
  border-radius: 30px !important;
  padding: 10px 22px !important;
  font-weight: 500 !important;
  border: none !important;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background-color: #f1c63a !important;
  color: #2b4d2e !important;
}

/* =========================
   DESKTOP 3-COLUMN LAYOUT
========================= */
.desktop-navbar-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  column-gap: 20px;
}

.desktop-nav-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-width: 0;
}

.desktop-nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.desktop-nav-right {
  min-width: 0;
}

.desktop-nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.desktop-nav-links .nav-link:last-child {
  margin-right: 0;
}

/* =========================
   MOBILE
========================= */
.mobile-navbar-wrap .navbar-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.mobile-nav-spacer {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.navbar-toggler {
  z-index: 2;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

/* =========================
   OFFCANVAS
========================= */
.custom-offcanvas .nav-link {
  color: #2b4d2e !important;
  font-weight: 500;
  margin-right: 0;
  padding: 10px 0;
}

/* =========================
   LARGE SCREEN ADJUSTMENTS
========================= */
@media (max-width: 1399.98px) {
  .navbar-nav .nav-link {
    margin-right: 14px;
    font-size: 15px;
  }

  .btn-franchise,
  .btn-contact {
    padding: 9px 18px !important;
    font-size: 15px;
  }
}

@media (max-width: 1199.98px) {
  .brand-logo {
    height: 88px;
  }

  .navbar-nav .nav-link {
    margin-right: 12px;
    font-size: 14px;
  }

  .btn-franchise,
  .btn-contact {
    padding: 8px 16px !important;
    font-size: 14px;
  }
}

/* =========================
   MOBILE / TABLET
========================= */
@media (max-width: 991.98px) {
  .custom-navbar {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  .brand-logo {
    height: 72px;
  }

  .mobile-navbar-wrap {
    position: relative;
    min-height: 72px;
  }

  .navbar-toggler-icon {
    width: 1.4em;
    height: 1.4em;
  }
}

@media (max-width: 575.98px) {
  .brand-logo {
    height: 60px;
  }

  .mobile-navbar-wrap {
    min-height: 60px;
  }

  .mobile-nav-spacer {
    width: 34px;
    height: 34px;
  }
}
.hero-banner {
  background-image: url('main-food.png'); /* Set your image path */
  background-size: cover;
  background-position: center;
  height: 80vh; /* Full screen height */
  position: relative;
  z-index: 1;
}

.hero-banner .overlay {
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
}

.hero-banner .container {
  z-index: 3;
}

.hero-banner .small-text {
  font-size: 14px;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-banner .main-heading {
  font-size: 60px;
  color: #fbd053;
  font-weight: bold;
}

@media (max-width: 767px) {
  .hero-banner {
    height: 60vh;
  }

  .hero-banner .main-heading {
    font-size: 36px;
  }
}
 .section-title {
      font-weight: 700;
      font-size: 1.5rem;
      color: #2e7d67; /* Dark green */
      margin-bottom: 25px;
    }
    .form-label {
      font-weight: 500;
    }
    .form-section {
      background-color: #f9f9f9;
      padding: 30px;
      border-radius: 10px;
    }

  .footer-bg {
      background: url('main-food.png') no-repeat center center/cover;
      position: relative;
    }
    .footer-overlay {
      background: rgba(0, 0, 0, 0.8);
      padding: 60px 0;
    }
    .contact-card {
      background-color: #f6b909; /* yellow */
      padding: 40px;
    }
    .contact-card h2 {
      background: #000;
      color: #f6b909;
      padding: 10px 20px;
      display: inline-block;
      font-weight: bold;
    }
    .contact-card input,
    .contact-card textarea {
      border: none;
      border-bottom: 1px solid #333;
      border-radius: 0;
      background: transparent !important;
    }
    .contact-card input:focus,
    .contact-card textarea:focus {
      box-shadow: none;
    }
    .send-btn {
      background-color: #2f5d2e;
      color: #fff;
      font-weight: bold;
      padding: 10px 30px;
      border-radius: 10px;
      border: none;
    }
    .right-contact-box {
      background: #fff;
      padding: 30px;
    }
    .footer-links a {
      color: #fff;
      text-decoration: none;
      margin: 0 15px;
      font-weight: 500;
    }
    .social-icons a {
      display: inline-flex;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: #fff;
      color: #000;
      align-items: center;
      justify-content: center;
      margin: 5px;
      text-decoration: none;
    }
    .form-control input::placeholder,
.form-control textarea::placeholder {
  color: #000;            /* Black placeholder text */
  opacity: 1;             /* Ensure it's fully visible */
}

.form-control input,
.form-control textarea {
  background-color: transparent !important;  /* Transparent background */
  color: #000;                    /* Ensure input text is black */
  border: none;
  border-bottom: 1px solid #000;  /* Optional bottom border for styling */
  border-radius: 0;
  outline: none;
  box-shadow: none;
}
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin: 0;
}
@media (max-width: 767.98px) {
  .footer-links {
    gap: 10px 14px;
    padding: 0 10px;
  }

  .footer-links a {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media (max-width: 575.98px) {
  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 10px 18px;
    text-align: center;
  }

  .footer-links a {
    font-size: 13px;
  }
}
