/* Seasonal Page Styles */
.seasonal-main {
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.seasonal-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.seasonal-header {
    background: linear-gradient(135deg, var(--beige-white) 0%, #f0e6d2 100%);
    padding: 2rem;
    text-align: center;
    border-bottom: 3px solid var(--dark-blue);
}

.seasonal-header h2 {
    color: var(--dark-blue);
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.seasonal-intro {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.current-season-highlight {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #0056b3 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
    margin: 0;
}

.current-season-highlight h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Merriweather', serif;
}

.current-season-highlight p {
    opacity: 0.9;
    font-size: 1rem;
}

.season-nav {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.season-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    color: #666;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}

.season-btn:hover {
    background: rgba(0, 70, 139, 0.1);
    color: var(--dark-blue);
}

.season-btn.active {
    background: white;
    color: var(--dark-blue);
    border-bottom-color: var(--dark-blue);
}

.season-content {
    display: none;
    padding: 2rem;
}

.season-content.active {
    display: block;
}

.produce-section {
    margin-bottom: 3rem;
}

.section-title {
    color: var(--dark-blue);
    font-family: 'Merriweather', serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--beige-white);
}

.produce-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.produce-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.produce-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: white;
}

.produce-icon {
    font-size: 2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.produce-info h5 {
    color: var(--dark-blue);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.produce-peak {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

.seasonal-tips {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    margin-top: 2rem;
}

.seasonal-tips h3 {
    color: var(--dark-blue);
    font-family: 'Merriweather', serif;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tip-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-3px);
}

.tip-card h4 {
    color: var(--dark-blue);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.tip-card p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .seasonal-header {
        padding: 1.5rem 1rem;
    }
    
    .seasonal-header h2 {
        font-size: 1.5rem;
    }
    
    .seasonal-intro {
        font-size: 1rem;
    }
    
    .current-season-highlight {
        padding: 1rem;
    }
    
    .current-season-highlight h3 {
        font-size: 1.2rem;
    }
    
    .season-content {
        padding: 1rem;
    }
    
    .produce-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .produce-card {
        padding: 0.75rem;
    }
    
    .produce-icon {
        font-size: 1.5rem;
        margin-right: 0.75rem;
    }
    
    .seasonal-tips {
        padding: 1.5rem 1rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tip-card {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .season-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .produce-card {
        flex-direction: column;
        text-align: center;
        padding: 1rem 0.75rem;
    }
    
    .produce-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}
