* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
/* topbar */
.top-bar {
  background: #FCCD2A;
  color: #000;
  font-size: 13px;
  padding: 6px 0;
}
body {
  padding-top: 120px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-left span {
  margin-right: 15px;
}

.top-right a {
  color: #000;
  text-decoration: none;
  margin-left: 15px;
  transition: 0.3s;
}

.top-right a:hover {
  color: #399918;
}

/* Navbar */
.navbar {
  position: fixed;   /* 👈 makes it sticky */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: #fff;
  padding: 18px 0;
  border-bottom: 1px solid #eee;

  box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* subtle depth */
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* logo  */

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 80px;
  height: 80px;
  margin-right: 10px;
}

.logo span {
  font-size: 22px;
  font-weight: 600;
  color: #399918;
  letter-spacing: 0.5px;
}

/* navigation links  */
.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: #399918;
}
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: #399918;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* cta buttun reserve  */
.btn {
  background: #399918;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 500;
  transition: 0.3s;
}

.btn:hover {
  background: #FCCD2A;
  color: #000;
}

/* hamburger for mobile  */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;

    flex-direction: column;
    align-items: center;

    display: none;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-right {
    display: none; /* hide button in navbar */
  }
}

@media (max-width: 768px) {

  .top-bar .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .top-left {
    margin-bottom: 5px;
  }

  .top-left span {
    display: block;
    margin: 2px 0;
  }

  .top-right {
    margin-top: 5px;
  }

}

/* hero background  */

.hero {
  height: 90vh;
  background: url('../assets/images/hero 3.jpg') no-repeat center center/cover;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: #fff;
  position: relative;
}
/* Overlay  */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}
/* Content styling  */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
}
/* Buttons spacing  */
.hero-buttons .btn {
  margin: 5px;
}
/* Secondary button  */
.btn-secondary {
  background: #FCCD2A;
  color: #000;
}

.btn-secondary:hover {
  background: #e6b800;
}
/* Typography focus  */
.hero-title {
  font-size: 64px;
  font-weight: 600;
  color: #FCCD2A;
}

.hero-subtitle {
  font-size: 20px;
  margin: 15px 0;
}

.hero-desc {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 25px;
}
/* HERO ANIMATION */
.hero-title,
.hero-subtitle,
.hero-desc,
.hero-buttons {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.hero-subtitle {
  animation-delay: 0.3s;
}

.hero-desc {
  animation-delay: 0.6s;
}

.hero-buttons {
  animation-delay: 0.9s;
}

/* Keyframes */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Why us section  */
/* section base  */
.why-us {
  padding: 80px 0;
  background: #f9f9f9;
  text-align: center;
}
/* Title  */
.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #399918;
}
/* Features layout  */
.features {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
/* Feature cards  */
.feature {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  flex: 1;
  min-width: 250px;

  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.feature:hover i {
  background: #399918;
  color: #000;
}
/* Text  */
.feature h3 {
  margin-bottom: 10px;
  color: #333;
}

.feature p {
  font-size: 14px;
  color: #555;
}
.feature i {
  font-size: 20px;
  color: #fff;
  background: #FCCD2A;;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  margin-bottom: 15px;

  transition: 0.3s;
}
/* .why-us extra writings  */
.why-extra {
  margin-top: 50px;
  padding: 20px 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;

  background: #fff;
  border-left: 5px solid #399918;
  border-radius: 8px;

  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.why-main-text {
  font-size: 16px;
  color: #444;
  margin-bottom: 10px;
  line-height: 1.6;
}

.why-tagline {
  font-size: 18px;
  font-weight: 600;
  color: #399918;
}
.why-extra:hover {
  transform: translateY(-3px);
  transition: 0.3s;
}
/* menu section styling  */
.menu-preview {
  padding: 80px 0;
  text-align: center;
}
/* Layout  */
.menu-items {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
/* Cards  */
.menu-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  width: 280px;

  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}
/* Images  */
.menu-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
/* Content  */
.menu-card h3 {
  margin: 15px 0 5px;
}

.menu-card p {
  font-size: 14px;
  color: #666;
}
/* Price  */
.price {
  display: block;
  margin: 10px 0 15px;
  font-weight: 600;
  color: #FCCD2A;;
}
.menu-card:hover {
  transform: translateY(-5px);
}
.menu-btn {
  margin-top: 30px;
  color: #FCCD2A;
}
/* testimonials section  */

/* base  */
/* SECTION */
.testimonials {
  padding: 80px 0;
  background: #f9f9f9;
  text-align: center;
}

/* SLIDER CONTAINER */
.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: 40px auto 0;
}

/* TESTIMONIAL CARD */
.testimonial {
  display: none;

  background: #fff;
  padding: 30px;
  border-radius: 10px;

  box-shadow: 0 4px 15px rgba(0,0,0,0.05);

  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
}

/* ACTIVE TESTIMONIAL */
.testimonial.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* TEXT */
.testimonial p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
  font-style: italic;
  line-height: 1.6;
}
.section-title{
    color: #FCCD2A;;
}

/* NAME */
.testimonial h4 {
  font-size: 14px;
  color: #399918;
  font-weight: 500;
}
/* gallery section  */
.gallery {
  padding: 80px 0;
  text-align: center;
}
/* grid layout  */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 30px;
}
/* images  */
.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;

  transition: 0.3s;
}
.gallery-grid img:hover {
  transform: scale(1.05);
}
.gallery-btn {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* contact preview section  */
.contact-preview {
  padding: 80px 0;
  background: #f9f9f9;
}
/* layout */
.contact-content {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}
/* Left side  */
.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 15px;
  color: #555;
}

.contact-info i {
  color: #399918;
  margin-right: 10px;
}
/* Buttons  */
.contact-buttons .btn {
  margin-right: 10px;
  margin-top: 10px;
}
/* maps  */
.contact-map {
  flex: 1;
  min-width: 280px;
}

.contact-map iframe {
  width: 100%;
  height: 250px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }
}
/* Footer section  */

/* =========================
   FOOTER BASE (FULL WIDTH)
========================= */
.footer {
  width: 100%;
  background: #FCCD2A;
  color: #fff;
  padding: 60px 0 20px;
}

/* =========================
   FOOTER CONTENT LAYOUT
========================= */
.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* =========================
   FOOTER BOXES
========================= */
.footer-box {
  flex: 1;
  min-width: 200px;
  padding: 10px;
  transition: 0.3s;
}

/* Hover effect */
.footer-box:hover {
  transform: translateY(-5px);
}

/* =========================
   HEADINGS (YELLOW ACCENT)
========================= */
.footer-box h3,
.footer-box h4 {
  color: #399918;
  margin-bottom: 10px;
}

/* =========================
   TEXT & LINKS
========================= */
.footer-box p {
  font-size: 14px;
  color: #399918;
  margin-bottom: 8px;
}

.footer-box a {
  display: block;
  color: #399918;
  text-decoration: none;
  margin-bottom: 6px;
  font-size: 14px;
  transition: 0.3s;
}

.footer-box a:hover {
  color: #399918;
}

/* =========================
   COPYRIGHT CENTER
========================= */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 13px;
  color: #399918;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}



/* Menu .html css  */
/* Menu.html css  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
/* topbar */
.top-bar {
  background: #FCCD2A;
  color: #000;
  font-size: 13px;
  padding: 6px 0;
}
body {
  padding-top: 120px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-left span {
  margin-right: 15px;
}

.top-right a {
  color: #000;
  text-decoration: none;
  margin-left: 15px;
  transition: 0.3s;
}

.top-right a:hover {
  color: #399918;
}

/* Navbar */
.navbar {
  position: fixed;   /* 👈 makes it sticky */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: #fff;
  padding: 18px 0;
  border-bottom: 1px solid #eee;

  box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* subtle depth */
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* logo  */

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 80px;
  height: 80px;
  margin-right: 10px;
}

.logo span {
  font-size: 22px;
  font-weight: 600;
  color: #399918;
  letter-spacing: 0.5px;
}

/* navigation links  */
.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: #399918;
}
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: #399918;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* cta buttun reserve  */
.btn {
  background: #399918;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 500;
  transition: 0.3s;
}

.btn:hover {
  background: #FCCD2A;
  color: #000;
}

/* hamburger for mobile  */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;

    flex-direction: column;
    align-items: center;

    display: none;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-right {
    display: none; /* hide button in navbar */
  }
}

@media (max-width: 768px) {

  .top-bar .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .top-left {
    margin-bottom: 5px;
  }

  .top-left span {
    display: block;
    margin: 2px 0;
  }

  .top-right {
    margin-top: 5px;
  }

}
/* contact preview section  */
.contact-preview {
  padding: 80px 0;
  background: #f9f9f9;
}
/* layout */
.contact-content {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}
/* Left side  */
.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 15px;
  color: #555;
}

.contact-info i {
  color: #399918;
  margin-right: 10px;
}
/* Buttons  */
.contact-buttons .btn {
  margin-right: 10px;
  margin-top: 10px;
}
/* maps  */
.contact-map {
  flex: 1;
  min-width: 280px;
}

.contact-map iframe {
  width: 100%;
  height: 250px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }
}
/* Footer section  */

/* =========================
   FOOTER BASE (FULL WIDTH)
========================= */
.footer {
  width: 100%;
  background: #FCCD2A;
  color: #fff;
  padding: 60px 0 20px;
}

/* =========================
   FOOTER CONTENT LAYOUT
========================= */
.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* =========================
   FOOTER BOXES
========================= */
.footer-box {
  flex: 1;
  min-width: 200px;
  padding: 10px;
  transition: 0.3s;
}

/* Hover effect */
.footer-box:hover {
  transform: translateY(-5px);
}

/* =========================
   HEADINGS (YELLOW ACCENT)
========================= */
.footer-box h3,
.footer-box h4 {
  color: #399918;
  margin-bottom: 10px;
}

/* =========================
   TEXT & LINKS
========================= */
.footer-box p {
  font-size: 14px;
  color: #399918;
  margin-bottom: 8px;
}

.footer-box a {
  display: block;
  color: #399918;
  text-decoration: none;
  margin-bottom: 6px;
  font-size: 14px;
  transition: 0.3s;
}

.footer-box a:hover {
  color: #399918;
}

/* =========================
   COPYRIGHT CENTER
========================= */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 13px;
  color: #399918;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

/* filter sections for menu  */
/* FILTER BUTTONS */
.menu-filter {
    text-align: center;
    padding: 30px;
}

.filter-btn {
    border: none;
    padding: 12px 20px;
    margin: 5px;
    cursor: pointer;
    background: #eee;
    border-radius: 25px;
    font-weight: bold;
    transition: 0.3s;
}

.filter-btn:hover {
    background: #FCCD2A;
}

.filter-btn.active {
    background: #399918;
    color: white;
}

/* MENU GRID */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 20px;
}

/* SHOW ACTIVE */
.menu-grid.active {
    display: grid;
}

/* SHOW DEFAULT */
.menu-grid.active {
    display: flex;
}

/* CARD */
.menu-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}


.menu-card:hover {
    transform: translateY(-8px);
}

.menu-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.menu-card h3 {
    margin: 10px;
}

.menu-card p {
    margin: 0 10px 10px;
    font-size: 14px;
}

.menu-card span {
    display: block;
    margin: 10px;
    color: #399918;
    font-weight: bold;
}

/* SPECIAL OFFER */
/* SPECIAL OFFER CARD */
.special {
    background: #fff;
    border: 2px solid #FCCD2A;
    position: relative;
}

/* IMAGE */
.special img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

/* CONTENT */
.offer-content {
    padding: 15px;
    text-align: center;
}

/* BADGE EFFECT */
.special::before {
    content: "Special";
    position: absolute;
    top: 10px;
    left: 10px;
    background: #399918;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 5px;
}
/* Tablet */
@media (max-width: 992px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .menu-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
/* HERO SECTION */
.menu-hero {
    position: relative;
    height: 80vh;
    background: url('../assets/images/hero2.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* DARK OVERLAY */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* CONTENT */
.hero-content {
    position: relative;
    color: white;
    z-index: 2;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.tagline {
    font-size: 24px;
    color: #FCCD2A;
    margin-bottom: 10px;
}

.subtext {
    font-size: 16px;
    margin-bottom: 20px;
}

/* BUTTONS */
.hero-buttons a {
    text-decoration: none;
    padding: 12px 25px;
    margin: 5px;
    border-radius: 5px;
    display: inline-block;
}

/* PRIMARY BUTTON */
.btn-primary {
    background: #399918;
    color: white;
}

/* SECONDARY BUTTON */
.btn-secondary {
    background: #FCCD2A;
    color: black;
}

/* HOVER EFFECT */
.btn-primary:hover {
    background: #2e7d14;
}

.btn-secondary:hover {
    background: #e6b800;
}@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .tagline {
        font-size: 18px;
    }
}


/* Gallery.html css  */
/* Gallery.html css  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
/* topbar */
.top-bar {
  background: #FCCD2A;
  color: #000;
  font-size: 13px;
  padding: 6px 0;
}
body {
  padding-top: 120px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-left span {
  margin-right: 15px;
}

.top-right a {
  color: #000;
  text-decoration: none;
  margin-left: 15px;
  transition: 0.3s;
}

.top-right a:hover {
  color: #399918;
}

/* Navbar */
.navbar {
  position: fixed;   /* 👈 makes it sticky */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: #fff;
  padding: 18px 0;
  border-bottom: 1px solid #eee;

  box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* subtle depth */
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* logo  */

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 80px;
  height: 80px;
  margin-right: 10px;
}

.logo span {
  font-size: 22px;
  font-weight: 600;
  color: #399918;
  letter-spacing: 0.5px;
}

/* navigation links  */
.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: #399918;
}
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: #399918;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* cta buttun reserve  */
.btn {
  background: #399918;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 500;
  transition: 0.3s;
}

.btn:hover {
  background: #FCCD2A;
  color: #000;
}

/* hamburger for mobile  */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;

    flex-direction: column;
    align-items: center;

    display: none;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-right {
    display: none; /* hide button in navbar */
  }
}

@media (max-width: 768px) {

  .top-bar .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .top-left {
    margin-bottom: 5px;
  }

  .top-left span {
    display: block;
    margin: 2px 0;
  }

  .top-right {
    margin-top: 5px;
  }

}
/* contact preview section  */
.contact-preview {
  padding: 80px 0;
  background: #f9f9f9;
}
/* layout */
.contact-content {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}
/* Left side  */
.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 15px;
  color: #555;
}

.contact-info i {
  color: #399918;
  margin-right: 10px;
}
/* Buttons  */
.contact-buttons .btn {
  margin-right: 10px;
  margin-top: 10px;
}
/* maps  */
.contact-map {
  flex: 1;
  min-width: 280px;
}

.contact-map iframe {
  width: 100%;
  height: 250px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }
}
/* Footer section  */

/* =========================
   FOOTER BASE (FULL WIDTH)
========================= */
.footer {
  width: 100%;
  background: #FCCD2A;
  color: #fff;
  padding: 60px 0 20px;
}

/* =========================
   FOOTER CONTENT LAYOUT
========================= */
.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* =========================
   FOOTER BOXES
========================= */
.footer-box {
  flex: 1;
  min-width: 200px;
  padding: 10px;
  transition: 0.3s;
}

/* Hover effect */
.footer-box:hover {
  transform: translateY(-5px);
}

/* =========================
   HEADINGS (YELLOW ACCENT)
========================= */
.footer-box h3,
.footer-box h4 {
  color: #399918;
  margin-bottom: 10px;
}

/* =========================
   TEXT & LINKS
========================= */
.footer-box p {
  font-size: 14px;
  color: #399918;
  margin-bottom: 8px;
}

.footer-box a {
  display: block;
  color: #399918;
  text-decoration: none;
  margin-bottom: 6px;
  font-size: 14px;
  transition: 0.3s;
}

.footer-box a:hover {
  color: #399918;
}

/* =========================
   COPYRIGHT CENTER
========================= */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 13px;
  color: #399918;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

/* HERO */
.gallery-hero {
    position: relative;
    height: 80vh;
    background: url('../assets/images/hero-gallery.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.gallery-hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.gallery-hero .hero-content {
    position: relative;
    color: white;
}

.gallery-hero h1 {
    font-size: 42px;
}

.gallery-hero p {
    color: #FCCD2A;
}

/* FILTER */
.gallery-filter {
    text-align: center;
    padding: 30px;
}

.g-btn {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    background: #eee;
    border-radius: 20px;
    cursor: pointer;
}

.g-btn.active {
    background: #399918;
    color: white;
}

/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    cursor: pointer;
    transition: 0.4s;
}

.gallery-item img:hover {
    transform: scale(1.1);
}

/* HIDE */
.gallery-item.hide {
    display: none;
}

/* LIGHTBOX */
#lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
}
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Contact.html css  */
/* contact .html css  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
/* topbar */
.top-bar {
  background: #FCCD2A;
  color: #000;
  font-size: 13px;
  padding: 6px 0;
}
body {
  padding-top: 120px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-left span {
  margin-right: 15px;
}

.top-right a {
  color: #000;
  text-decoration: none;
  margin-left: 15px;
  transition: 0.3s;
}

.top-right a:hover {
  color: #399918;
}

/* Navbar */
.navbar {
  position: fixed;   /* 👈 makes it sticky */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: #fff;
  padding: 18px 0;
  border-bottom: 1px solid #eee;

  box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* subtle depth */
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* logo  */

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 80px;
  height: 80px;
  margin-right: 10px;
}

.logo span {
  font-size: 22px;
  font-weight: 600;
  color: #399918;
  letter-spacing: 0.5px;
}

/* navigation links  */
.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: #399918;
}
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: #399918;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* cta buttun reserve  */
.btn {
  background: #FCCD2A;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 500;
  transition: 0.3s;
}

.btn:hover {
  background: #FCCD2A;
  color: #000;
}

/* hamburger for mobile  */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;

    flex-direction: column;
    align-items: center;

    display: none;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-right {
    display: none; /* hide button in navbar */
  }
}

@media (max-width: 768px) {

  .top-bar .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .top-left {
    margin-bottom: 5px;
  }

  .top-left span {
    display: block;
    margin: 2px 0;
  }

  .top-right {
    margin-top: 5px;
  }

}
/* contact preview section  */
.contact-preview {
  padding: 80px 0;
  background: #f9f9f9;
}
/* layout */
.contact-content {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}
/* Left side  */
.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 15px;
  color: #555;
}

.contact-info i {
  color: #399918;
  margin-right: 10px;
}
/* Buttons  */
.contact-buttons .btn {
  margin-right: 10px;
  margin-top: 10px;
}
/* maps  */
.contact-map {
  flex: 1;
  min-width: 280px;
}

.contact-map iframe {
  width: 100%;
  height: 250px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }
}
/* Footer section  */

/* =========================
   FOOTER BASE (FULL WIDTH)
========================= */
.footer {
  width: 100%;
  background: #FCCD2A;
  color: #fff;
  padding: 60px 0 20px;
}

/* =========================
   FOOTER CONTENT LAYOUT
========================= */
.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* =========================
   FOOTER BOXES
========================= */
.footer-box {
  flex: 1;
  min-width: 200px;
  padding: 10px;
  transition: 0.3s;
}

/* Hover effect */
.footer-box:hover {
  transform: translateY(-5px);
}

/* =========================
   HEADINGS (YELLOW ACCENT)
========================= */
.footer-box h3,
.footer-box h4 {
  color: #399918;
  margin-bottom: 10px;
}

/* =========================
   TEXT & LINKS
========================= */
.footer-box p {
  font-size: 14px;
  color: #399918;
  margin-bottom: 8px;
}

.footer-box a {
  display: block;
  color: #399918;
  text-decoration: none;
  margin-bottom: 6px;
  font-size: 14px;
  transition: 0.3s;
}

.footer-box a:hover {
  color: #399918;
}

/* =========================
   COPYRIGHT CENTER
========================= */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 13px;
  color: #399918;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

/* HERO */
.contact-hero {
    position: relative;
    height: 80vh;
    background: url('../assets/images/Contact-Us.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.contact-hero .hero-content {
    position: relative;
    color: white;
    text-align: center;
}

.contact-hero p {
    color: #FCCD2A;
}

/* INFO */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px 0;
}

.info-card {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-top: 4px solid #FCCD2A;
}

/* HOURS */
.hours {
    text-align: center;
    padding: 20px;
}

/* FORM */
.reservation {
    padding: 40px 0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

form input, form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

textarea {
    margin-top: 15px;
    height: 100px;
}

.btn-primary {
    margin-top: 15px;
    background: #FCCD2A;
    color: white;
    padding: 12px;
    border: none;
    cursor: pointer;
}

/* QUICK ACTIONS */
.quick-actions {
    text-align: center;
    padding: 30px;
}

.call-btn {
    background: #FCCD2A;
    color: white;
    padding: 12px 20px;
    margin: 5px;
    text-decoration: none;
}

.whatsapp-btn {
    background: #FCCD2A;
    color: white;
    padding: 12px 20px;
    margin: 5px;
    text-decoration: none;
}
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}



/* About.html css  */
/* About .html css  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
/* topbar */
.top-bar {
  background: #FCCD2A;
  color: #000;
  font-size: 13px;
  padding: 6px 0;
}
body {
  padding-top: 120px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-left span {
  margin-right: 15px;
}

.top-right a {
  color: #000;
  text-decoration: none;
  margin-left: 15px;
  transition: 0.3s;
}

.top-right a:hover {
  color: #399918;
}

/* Navbar */
.navbar {
  position: fixed;   /* 👈 makes it sticky */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: #fff;
  padding: 18px 0;
  border-bottom: 1px solid #eee;

  box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* subtle depth */
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* logo  */

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 80px;
  height: 80px;
  margin-right: 10px;
}

.logo span {
  font-size: 22px;
  font-weight: 600;
  color: #399918;
  letter-spacing: 0.5px;
}

/* navigation links  */
.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: #399918;
}
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: #399918;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* cta buttun reserve  */
.btn {
  background: #399918;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 500;
  transition: 0.3s;
}

.btn:hover {
  background: #FCCD2A;
  color: #000;
}

/* hamburger for mobile  */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;

    flex-direction: column;
    align-items: center;

    display: none;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-right {
    display: none; /* hide button in navbar */
  }
}

@media (max-width: 768px) {

  .top-bar .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .top-left {
    margin-bottom: 5px;
  }

  .top-left span {
    display: block;
    margin: 2px 0;
  }

  .top-right {
    margin-top: 5px;
  }

}
/* contact preview section  */
.contact-preview {
  padding: 80px 0;
  background: #f9f9f9;
}
/* layout */
.contact-content {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}
/* Left side  */
.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 15px;
  color: #555;
}

.contact-info i {
  color: #399918;
  margin-right: 10px;
}
/* Buttons  */
.contact-buttons .btn {
  margin-right: 10px;
  margin-top: 10px;
}
/* maps  */
.contact-map {
  flex: 1;
  min-width: 280px;
}

.contact-map iframe {
  width: 100%;
  height: 250px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }
}
/* Footer section  */

/* =========================
   FOOTER BASE (FULL WIDTH)
========================= */
.footer {
  width: 100%;
  background: #FCCD2A;
  color: #fff;
  padding: 60px 0 20px;
}

/* =========================
   FOOTER CONTENT LAYOUT
========================= */
.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* =========================
   FOOTER BOXES
========================= */
.footer-box {
  flex: 1;
  min-width: 200px;
  padding: 10px;
  transition: 0.3s;
}

/* Hover effect */
.footer-box:hover {
  transform: translateY(-5px);
}

/* =========================
   HEADINGS (YELLOW ACCENT)
========================= */
.footer-box h3,
.footer-box h4 {
  color: #399918;
  margin-bottom: 10px;
}

/* =========================
   TEXT & LINKS
========================= */
.footer-box p {
  font-size: 14px;
  color: #399918;
  margin-bottom: 8px;
}

.footer-box a {
  display: block;
  color: #399918;
  text-decoration: none;
  margin-bottom: 6px;
  font-size: 14px;
  transition: 0.3s;
}

.footer-box a:hover {
  color: #399918;
}

/* =========================
   COPYRIGHT CENTER
========================= */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 13px;
  color: #399918;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

/* HERO */
.about-hero {
    position: relative;
    height: 80vh;
    background: url('../assets/images/hero-about.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.about-hero .hero-content {
    position: relative;
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: 42px;
}

.about-hero p {
    color: #FCCD2A;
}

/* ABOUT SECTION */
.about-section {
    padding: 50px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    color: #FCCD2A;;
    margin-bottom: 10px;
}
.parent-text h2 {
    color: #FCCD2A !important;
}

.parent-text strong {
    color: #FCCD2A !important;
}
.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* TEAM */
.team-section {
    background: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.team-card {
    width: 250px;
    background: white;
    padding: 15px;
    border-radius: 10px;
}

.team-card img {
    width: 100%;
    border-radius: 10px;
}

/* WHY */
.why-section {
    padding: 50px 30px;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid #FCCD2A;
}

/* CTA */
.about-cta {
    background: #FCCD2A;
    color: white;
    text-align: center;
    padding: 80px;
}

.btn-primary {
    background: #399918;
    color: rgb(250, 248, 248);
    padding: 7px 20px;
    text-decoration: none;
    border-radius: 5px;
}
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* PARENT COMPANY */
.parent-company {
    padding: 50px 0;
}

.parent-box {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: center;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
}

/* TEXT */
.parent-text h2 {
    color: #399918;
    margin-bottom: 10px;
}

.parent-text p {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* LOGO */
.parent-logo img {
    width: 100%;
    max-width: 200px;
}

/* HIGHLIGHT */
.parent-box strong {
    color: #399918;
}
@media (max-width: 768px) {
    .parent-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .parent-logo img {
        margin: auto;
    }
}