/* Inspired by the 2026 design aesthetic */
:root {
    --primary-bg: #fdfdfb;
    --secondary-bg: #fafaf8;
    --text-dark: #333333;
    --text-light: #777777;
    --accent-green: #6a994e;
    --accent-green-dark: #5a8e3e;
    --border-color: #eeeeee;
}

body {
    font-family: 'Poppins', sans-serif; /* A more modern, clean font */
    background-color: var(--primary-bg);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23eeeeee' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif; /* A clean, geometric sans-serif for headings */
    font-weight: 700;
}

a {
    text-decoration: none;
    color: var(--accent-green);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-green-dark);
}

header {
    background: var(--secondary-bg);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.logo img {
    height: 30px;
    margin-right: 10px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav a {
    color: var(--text-dark);
    font-weight: 500;
}

.cta-button {
    background-color: var(--accent-green);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.cta-button:hover {
    background-color: var(--accent-green-dark);
    color: #fff;
}

.hero {
    padding: 0;
    margin: 0;
    max-height: 500px;
    overflow: hidden;
}

.hero-carousel img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.slick-dots {
    bottom: 25px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: white;
    opacity: 0.75;
}

.slick-dots li.slick-active button:before {
    color: white;
    opacity: 1;
}

.why-us {
    display: flex;
    justify-content: space-around;
    padding: 4rem 2rem;
    background-color: var(--secondary-bg);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.why-us-item {
    max-width: 250px;
}

.why-us-item img {
    height: 50px;
    margin-bottom: 1rem;
}

.featured-produce {
    padding: 4rem 2rem;
    text-align: center;
}

.featured-produce h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.produce-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.produce-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px; /* Softer rounded corners */
    background: var(--secondary-bg);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produce-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.produce-item img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    display: block;
    object-fit: cover;
}

.produce-info {
    padding: 1.5rem;
    text-align: left;
}

.produce-info h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.produce-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.produce-info .price {
    font-weight: 700;
    color: var(--accent-green);
    font-size: 1.2rem;
}

.add-to-cart-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--accent-green);
    color: white;
    text-align: center;
    border: none;
    border-radius: 0 0 15px 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: var(--accent-green-dark);
}

.newsletter {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    background-size: cover;
    background-position: center;
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.newsletter-form input {
    width: 70%;
    padding: 1rem;
    border: none;
    border-radius: 5px 0 0 5px;
}

.newsletter-form button {
    padding: 1rem 2rem;
    border: none;
    background-color: var(--accent-green);
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--accent-green-dark);
}


.smart-farming {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/FarmLandscap1.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

/* About & Contact Page Specifics */
.content-section {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: auto;
}

.split-screen {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.split-screen .text-content {
    flex: 1;
}

.split-screen .image-content {
    flex: 1;
}

.image-content img {
    width: 100%;
    border-radius: 15px;
}

.methods-list {
    list-style: none;
    padding-left: 0;
}

.methods-list li {
    padding-left: 2rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236a994e'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-card {
    background: var(--secondary-bg);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: center;
}

.contact-card h1 {
     color: var(--text-dark);
}

.contact-card .phone {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 1rem 0;
}
.contact-card a{
    color: var(--accent-green);
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin: 1rem 0;
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-sizing: border-box; /* Important */
    background: var(--primary-bg);
}

.submit-button {
    width: 100%;
    background-color: var(--accent-green);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    font-weight: 700;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        display: none; /* Simplistic toggle logic would be needed */
    }
    .why-us, .split-screen {
        flex-direction: column;
    }
    .why-us-item {
        margin-bottom: 2rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger .line {
        width: 30px;
        height: 3px;
        background: #333;
        margin: 6px 0;
    }

    .nav-active .nav-links {
        display: block;
    }
}
