
*{
    margin:0;
    padding:0;box-sizing:
    border-box;font-family:'Poppins',sans-serif}
body{background:#f5f2e9;color:#333}

.logo{font-size:26px;font-weight:700;color:#2e7d32}
nav ul{list-style:none;display:flex;gap:40px}
nav a{text-decoration:none;color:#333;font-weight:500}
.hero{
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white} 

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 2;
    background: rgba(0,0,0,0.45);
    padding: 40px 40px;
    border-radius: 10px;
}
.hero-content h1{font-size:50px;margin-bottom:15px}
.hero-content p{font-size:20px}
.hero-carousel {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    height: 60vh;
}

.hero-slide {
    height:100%;
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
}

.carousel-dots {
    text-align: center;
    padding: 15px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #27ae60;
}

.dot:hover {
    background-color: #27ae60;
}
/* Overlay container */

#products.section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}


#products h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 50px;
    font-weight: 700;
}

.products-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0 30px;
}

.section-header h3 {
    font-size: 1.8rem;
    color: #333;
    font-weight: 600;
    white-space: nowrap;
}

.gradient-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, #27ae60, transparent);
}



.products-subsection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 300px));
    gap: 25px;
    justify-content: center;  /* THIS prevents stretching */
}

.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 20px;
}



.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 15px 15px 20px;
    font-weight: 600;
}

.learn-more-btn,
.card .btn {
    display: block;
    width: calc(100% - 30px);
    margin: 10px 15px;
    padding: 10px;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.learn-more-btn {
    background-color: #f0f0f0;
    color: #27ae60;
    border: 2px solid #27ae60;
}

.learn-more-btn:hover {
    background-color: #27ae60;
    color: white;
}

.card .btn {
    background-color: #27ae60;
    color: white;
    text-decoration: none;
}

.card .btn:hover {
    background-color: #229954;
}
.product-details {
    display: none;
    padding: 15px;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
    margin-top: 10px;
    border-radius: 0 0 10px 10px;
}
.section{
padding:70px 20px;
text-align:center;
}
.light{
background:#f0f5f1;
}
button{padding:12px;background:#1b5e20;color:white;border:none;border-radius:6px;cursor:pointer}
.whatsapp{position:fixed;bottom:20px;right:20px;background:#25D366;color:white;padding:15px;border-radius:50%;font-size:24px;text-decoration:none}
.footer {
    /*background: #1e1e1e;
    color: #fff;*/
    background:#111;
    color:#aaa;
    padding: 50px 20px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-column h3 {
    margin-bottom: 15px;
    color: #27ae60;
}

.footer-column p,
.footer-column li,
.footer-column a {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
    text-decoration: none;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column a:hover {
    color: #27ae60;
}

.social-icons a {
    display: inline-block;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 13px;
    color: #aaa;
}
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #2c2c2c;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: 0.3s ease;
}

.social-icons a:hover {
    background: #27ae60;
    transform: translateY(-3px);
}


@media(max-width:768px){
header{flex-direction:column;gap:15px;padding:20px}
.hero h1{font-size:32px}
.section{padding:60px 20px}
}
/* ========================= */
/* HEADER */
/* ========================= */



.logo {
    font-size: 26px;
    font-weight: 700;
    color: #2e7d32;
}


/* Highlight Button */
.highlight-menu {
    background: linear-gradient(135deg, #2e7d32, #66bb6a);
    color: white !important;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    white-space: nowrap;
}
.highlight-menu-yellow {
    background: linear-gradient(135deg, #7d552e, #bbb266);
    color: white !important;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    white-space: nowrap;
}



/* ===== HEADER ===== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #fff;
    position: relative;
    z-index: 1000;
}

/* ===== NAV LINKS DESKTOP ===== */
.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* ===== HAMBURGER ICON ===== */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 20px;

        display: none;  /* hidden by default */
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;  /* show when active */
    }
}





.product-gallery {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.gallery-img {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
}


.gallery-img:hover {
    transform: scale(1.05);
}

/* Modal Styling */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    display: block;
    margin: auto;
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.farm-tour-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.farm-tour-modal-content {
    background-color: white;
    border-radius: 10px;
    padding: 5px;
    max-width: 800px;
    width: 90%;
    position: relative;
    
}

.close-farm-tour {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
}

.close-farm-tour:hover {
    color: #e74c3c;
}

.farm-tour-carousel {
    display: flex;
    align-items: center;
   /* gap: 20px;*/
    margin-top: 20px;
}

.farm-tour-images-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
}

.farm-tour-img {
    min-width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 3px;
}

.carousel-btn {
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 12px 16px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.carousel-btn:hover {
    background-color: #229954;
}