/* BOISSONS PAGE - PASTEL THEME */

.hero-boissons {
    background: transparent;
    padding: 120px 2rem 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-boissons::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(227, 171, 71, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 217, 102, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* FILTERS SECTION */
.filters-section {
    background: transparent;
    padding: 2rem 0;
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: none;
    border-bottom: 1px solid rgba(227, 171, 71, 0.1);
}

.season-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--yellow-primary);
    background: white;
    color: var(--text-dark);
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover {
    background: var(--yellow-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.filter-btn.active {
    background: var(--yellow-primary);
    color: var(--text-dark);
    box-shadow: 0 4px 12px rgba(227, 171, 71, 0.2);
}

/* BEVERAGES GALLERY */
.beverages-gallery {
    background: transparent;
    padding: 4rem 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.season-section {
    margin-bottom: 5rem;
    opacity: 1;
    transition: all 0.5s ease;
}

.season-section.hidden {
    display: none;
}

.season-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

/* .season-icon removed */

/* BEVERAGES GRID */
.beverages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.beverage-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.beverage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(227, 171, 71, 0.2);
}

.beverage-image-container {
    width: 100%;
    height: 300px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

/* Shimmer effect removed */

@keyframes shimmer {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.beverage-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s ease;
    mix-blend-mode: multiply;
}

.beverage-card:hover .beverage-img {
    transform: scale(1.05);
}

.beverage-info {
    padding: 1.5rem;
}

.beverage-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.beverage-type {
    font-size: 0.9rem;
    color: var(--yellow-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.beverage-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.beverage-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.4rem 0.8rem;
    background: var(--yellow-light);
    color: var(--text-dark);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid var(--yellow-secondary);
}

/* SEASON-SPECIFIC COLORS */
.season-section[data-season="printemps"] .beverage-image-container {
    background: linear-gradient(135deg, var(--pack-printemps) 0%, #f0f9e8 100%);
}

.season-section[data-season="ete"] .beverage-image-container {
    background: linear-gradient(135deg, var(--pack-ete) 0%, #fff8e1 100%);
}

.season-section[data-season="automne"] .beverage-image-container {
    background: linear-gradient(135deg, var(--pack-automne) 0%, #fff0e5 100%);
}

.season-section[data-season="hiver"] .beverage-image-container {
    background: linear-gradient(135deg, var(--pack-hiver) 0%, #e8f4fd 100%);
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, #e3ab47 0%, #f5c563 100%);
    padding: 5rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.btn-primary-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--yellow-primary);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(227, 171, 71, 0.2);
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    background-color: var(--yellow-secondary);
    box-shadow: 0 6px 20px rgba(227, 171, 71, 0.3);
}

/* FOOTER */
footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--yellow-primary);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos="fade-up"] {
    animation: fadeInUp 0.6s ease-out;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .season-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .beverages-grid {
        grid-template-columns: 1fr;
    }

    .beverage-img {
        mix-blend-mode: normal;
    }

    .season-title {
        font-size: 2rem;
    }
}

.navbar a.active {
    background: rgba(227, 171, 71, 0.2);
    color: var(--yellow-primary);
}
