﻿/* ================= HERO SECTION ================= */

.maize-hero {
    background: url('../Images/maizebk.jpeg') center/cover no-repeat;
    height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.maize-hero-overlay {
    background: rgba(0, 0, 0, 0.55);
    width: 100%;
    height: 100%;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.maize-hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.maize-hero p {
    font-size: 1.2rem;
    margin-top: 10px;
}


/* ================= PRODUCT SECTION ================= */

.maize-product-section {
    padding: 80px 5%;
    background: #f9fbf7;
}

.maize-card {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

    .maize-card.reverse {
        flex-direction: row-reverse;
    }

.maize-image img {
    width: 100%;
    border-radius: 15px;
}

.maize-image {
    flex: 1;
}

.maize-content {
    flex: 1;
}

    .maize-content h2 {
        font-size: 2rem;
        color: #2e7d32;
    }

    .maize-content h4 {
        margin-bottom: 20px;
        color: #555;
    }

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

    .feature-list li {
        margin-bottom: 10px;
        font-weight: 500;
    }

.tech-box {
    background: #f1f8e9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.product-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #ed6c02;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

    .product-btn:hover {
        background: #c75a00;
    }


/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .maize-card {
        flex-direction: column;
    }

        .maize-card.reverse {
            flex-direction: column;
        }

    .maize-hero h1 {
        font-size: 2.2rem;
    }
}
