/* Harvest Page Styles */

.harvest-main {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.harvest-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    padding: 70px 20px;
    text-align: center;
}

.harvest-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #f5a623;
    margin-bottom: 15px;
}

.harvest-hero p {
    font-size: 20px;
    color: #e0e0e0;
}

/* Harvest Info Section */
.harvest-info {
    padding: 70px 20px;
    background: linear-gradient(135deg, #fff9e6 0%, #ffeebb 100%);
}

.harvest-info-container {
    max-width: 900px;
    margin: 0 auto;
}

.harvest-text {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #f5a623;
}

.harvest-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.harvest-text p:last-child {
    margin-bottom: 0;
}

/* Harvest Gallery */
.harvest-gallery {
    padding: 70px 20px;
    background: #fff;
}

.harvest-gallery h2 {
    font-size: 36px;
    font-weight: 700;
    color: #8b6914;
    text-align: center;
    margin-bottom: 40px;
}

.harvest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.harvest-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4/3;
}

.harvest-image:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.harvest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .harvest-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .harvest-hero h1 {
        font-size: 36px;
    }

    .harvest-hero p {
        font-size: 18px;
    }

    .harvest-info {
        padding: 50px 20px;
    }

    .harvest-text {
        padding: 30px 25px;
    }

    .harvest-text p {
        font-size: 16px;
    }

    .harvest-gallery {
        padding: 50px 20px;
    }

    .harvest-gallery h2 {
        font-size: 28px;
    }

    .harvest-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .harvest-grid {
        grid-template-columns: 1fr;
    }
}
