/* Mobile Responsive Navigation */
@media (max-width: 600px) {
    nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 5px 0;  
    }
    .dropdown-container {
        display: flex;
        flex-direction: column;  
        justify-content: center;  
        align-items: center; 
        gap: 15px;  
        text-align: center;
        height: 100vh;
    }
    
    .dropdown {
        width: 100%;  
        text-align: center;
    }
    .dropdown-content {
        width: auto;  
    }
    .dropdown-btn {
        width: 100%;  
        text-align: center;
    }
    header {
        position: relative;  
        padding: 15px;  
        font-size: 18px;  
    }

    footer {
        position: relative;  
        font-size: 14px;  
    }
    .product-grid {
        display: grid;
        grid-template-columns: 1fr;  
        gap: 15px;  
    }

}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: yellow;
    color: purple;
    padding: 20px;
    text-align: center;
    z-index: 1000;
    font-size: 22px;
}

h2 {
    font-size: 24px;  
    font-weight: bold;
    background-color: orangered;  
    color: navy;  
    text-transform: uppercase;  
    letter-spacing: 1.5px;  
    text-align: center;  
    margin-bottom: 20px;  
}


p {
    font-size: 18px;  
    color: black;  
    line-height: 1.8;  
    text-align: justify;  
    padding: 10px;  
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    background-color: navy;
    color: red;
    text-decoration: none;
    font-size: 22px;
}

/* Main Content Styling */
main {
    margin-top: 120px;
    padding: 30px;
    background: powderblue;
}
 
/* Mission, Testimonials, & Facts Styling */
.mission, .testimonials, .farming-facts {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    transition: transform 0.3s ease-in-out;
}

.mission:hover, .testimonials:hover, .farming-facts:hover {
    transform: scale(1.02);  
}

/* Testimonials */
.testimonial {
    font-style: italic;
    font-size: 18px;
    color: #555;
}

/* Fun Facts */
.farming-facts p {
    font-weight: bold;
    font-size: 18px;
    color: #007bff;
}

/* Footer */
footer {
    text-align: center;
    background: yellow;
    color: purple;
    padding: 10px 0;
    font-size: 14px;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: auto;
}



/*dropdown styles */
.dropdown-container {
    display: flex;
    justify-content: center;  
    flex-wrap: nowrap;  
    gap: 10px;  
}

.dropdown {
    text-align: center;
    width: 20%; 
}

.dropdown-btn {
    background: indianred;
    color: navy;
    border: none;
    padding: 10px;
    cursor: pointer;
    width: 200px;
    text-align: left;
    font-size: 16px;
}

.dropdown-content {
    display: none;
    background: yellow;
    padding: 10px;
    border: 1px solid navy;
    width: 200px;
}
.dropdown img {
    width: 100%;
    max-width: 150px;  
    height: auto;
    border-radius: 10px;
    margin-bottom: 5px;
}

/* Contact Section */
.contact-info, .contact-form, .map, .social-links {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    text-align: center;
}

.contact-details p {
    font-size: 18px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 500px;
    margin: auto;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: indianred;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background: #218838;
}

.social-btn {
    display: inline-block;
    padding: 10px 15px;
    margin: 5px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.social-btn:hover {
    background: #0056b3;
}

/* Product Section */
.product-container {
    text-align: center;
    padding: 30px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-content: center;
}

.product-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: 8px;
}

button {
    background: indianred;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 6px;
    transition: 0.3s ease-in-out;
}

button:hover {
    background: #218838;
}

/* Cart Section */
.cart-container {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: auto;
}

#cart-items {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.checkout-btn {
    background: #28a745;
    color: white;
    padding: 12px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    border-radius: 6px;
    transition: 0.3s ease-in-out;
}

.checkout-btn:hover {
    background: #218838;
}
 

/* Checkout Section */
.checkout-container {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: auto;
}

input, select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 10px;
}

button {
    background: indianred;
    color: white;
    padding: 12px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    border-radius: 6px;
    transition: 0.3s ease-in-out;
}

button:hover {
    background: #218838;
}
 
