/* ================================
   Global Styles
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================================
   Header
================================ */
header {
  background: #2e7d32; /* Green header background */
  color: white;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 105px;
  max-height: 120px;
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
}

.nav-links li {
  display: inline;
}

.btn {
  text-decoration: none;
  padding: 10px 18px;
  background: #2e7d32;
  color: white;
  border-radius: 8px;
  transition: background 0.3s ease;
  border: none;
}

.btn:hover {
  background: #1b5e20;
  color: white;
}

/* Hamburger menu hidden on desktop */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* ================================
   Banner Section
================================ */
.banner {
  position: relative;
  text-align: center;
  margin: 20px auto;
  max-width: 1000px;
  background: #2e7d32; /* Green background */
  border-radius: 12px;
  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  opacity: 0.8;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  padding: 15px 30px;
  border-radius: 10px;
  max-width: 80%;
}

.banner-text p {
  margin: 0;
  font-size: 1.6rem;
  font-weight: bold;
}

/* ================================
   Introduction
================================ */
.introduction {
  padding: 40px 20px;
  text-align: center;
}

.introduction h2 {
  color: #2e7d32;
  font-size: 2rem;
  margin-bottom: 15px;
}

.introduction p {
  max-width: 800px;
  margin: auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ================================
   Contact Form
================================ */
.contact {
  padding: 40px 20px;
  background: #e8f5e9;
  border-radius: 10px;
  margin: 20px auto;
  max-width: 800px;
}

.contact h2 {
  color: #2e7d32;
  margin-bottom: 20px;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input, form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

form button {
  padding: 12px;
  background: #2e7d32;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
}

form button:hover {
  background: #1b5e20;
}

/* ================================
   Footer
================================ */
footer {
  text-align: center;
  padding: 20px;
  background: #2e7d32;
  color: white;
  margin-top: 30px;
}

/* ================================
   Responsive Styles
================================ */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 15px;
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 0;
    background: #2e7d32;
    border-radius: 8px;

    /* ✅ Smooth slide + fade */
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.4s ease;
  }

  .nav-links.active {
    max-height: 500px; /* large enough for all links */
    opacity: 1;
    padding: 15px;
    transition: max-height 0.5s ease-in, opacity 0.5s ease;
  }

  .btn {
    width: 100%;
    text-align: center;
    background: #2e7d32;
    color: white;
    border: none;
  }

  .btn:hover {
    background: #1b5e20;
    color: white;
  }

  /* ✅ Bigger Logo for Mobile */
  .logo {
    height: 110px;
    max-height: 125px;
  }

  .banner-text p {
    font-size: 1rem;
  }

  .introduction h2 {
    font-size: 1.5rem;
  }
}

/* ✅ Gallery Section */
.gallery-section {
  margin: 40px auto;
  text-align: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* ✅ Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
}

.lightbox .close {
  position: absolute;
  top: 20px; right: 35px;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  font-weight: bold;
}

.caption {
  margin-top: 15px;
  color: #f1f1f1;
  font-size: 1.1rem;
  text-align: center;
}

/* ✅ Lightbox Buttons */
.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(46, 125, 50, 0.85);
  color: white;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 50%;
  transition: background 0.3s;
  z-index: 10;
}

.lightbox-btn:hover {
  background: #1b5e20;
}

.lightbox-btn.prev {
  left: 15px;
}

.lightbox-btn.next {
  right: 15px;
}

/* ✅ Carousel */
.carousel-section {
  margin: 40px auto;
  text-align: center;
}

.carousel-container {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
}

.carousel-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.carousel-track img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-track img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* ✅ Carousel Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(46, 125, 50, 0.85);
  color: white;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 50%;
  transition: background 0.3s;
  z-index: 10;
}

.carousel-btn:hover {
  background: #1b5e20;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}
