﻿body {
    font-family: 'Poppins', sans-serif;
    background: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

.crop-calendar-section {
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
    margin: auto;
}

.calendar-header {
    text-align: center;
    margin-bottom: 30px;
}

    .calendar-header h1 {
        font-size: 2.5rem;
        color: #2e7d32;
    }

    .calendar-header p {
        font-size: 1.1rem;
        color: #444;
    }

.highlight {
    color: #e67e22;
    font-weight: 600;
}

.calendar-image {
    text-align: center;
    margin-bottom: 20px;
}

    .calendar-image img {
        max-width: 800px;
        width: 100%;
        border-radius: 12px;
        box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    }

.img-note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 8px;
}

.legend {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1rem;
}

.legend-box {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: 0 6px;
    border-radius: 4px;
}

.sowing {
    background: #ffeb3b;
}
/* Yellow */
.pollination {
    background: #4caf50;
}
/* Green */
.harvest {
    background: #ff9800;
}
/* Orange */

.crop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.crop-card {
    background: #fefefe;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

    .crop-card:hover {
        transform: translateY(-6px);
    }

    .crop-card h2 {
        margin-bottom: 15px;
        color: #1b5e20;
        font-size: 1.4rem;
    }

.calendar-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

    .calendar-table th {
        background: #2e7d32;
        color: #fff;
        padding: 10px;
        font-size: 0.95rem;
    }

    .calendar-table td {
        border: 1px solid #ddd;
        padding: 10px;
        text-align: center;
        font-size: 0.95rem;
    }

        .calendar-table td.sowing {
            background: #fff9c4;
        }

        .calendar-table td.pollination {
            background: #c8e6c9;
        }

        .calendar-table td.harvest {
            background: #ffe0b2;
        }

.calendar-footer {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
    color: #444;
}
