/* Specific styles for the Champagne page */
.champagne-hero {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6)), 
                linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%), /* Golden tint */
                url('assets/champagne-hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    color: white;
    position: relative;
    overflow: hidden;
    filter: contrast(1.05) brightness(0.95);
}

.champagne-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.champagne-hero > * {
    position: relative;
    z-index: 2;
}

.champagne-hero h1 {
    font-size: clamp(3rem, 10vw, 5.5rem);
    font-family: 'Playfair Display', serif;
    margin-bottom: 24px;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.champagne-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    opacity: 0;
    letter-spacing: 2px;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.3s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Adjusting the hero for champagnes specifically */
.champagne-page .whisky-hero::after {
    backdrop-filter: blur(2px); /* Less blur to see the bubbles */
    background-color: rgba(0, 0, 0, 0.2);
}

/* Enhancing product cards for a more premium look */
.champagne-page .product-card {
    border: none;
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1), -20px -20px 60px rgba(255,255,255,0.02);
}

.champagne-page .product-card:hover {
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
