/* Hero section */
.hero {
    padding: 0 0 40px;
    margin-top: -30px;
    background: radial-gradient(1000px 400px at 90% -10%, rgba(212, 175, 55, .15), transparent 60%),
                var(--vg-cream);
    position: relative;
    overflow: hidden;
}

/* Logo Vite & Gourmand page d'accueil */
.home-logo {
    max-width: 105px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    margin-top: -10px;
}

@media (max-width: 768px) {
    .home-logo {
        max-width: 65px;
        margin-right: 10px;
        margin-top: -6px;
    }
}

/* Particules dorées subtiles */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(212, 175, 55, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(212, 175, 55, 0.2), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(212, 175, 55, 0.3), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(212, 175, 55, 0.25), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(212, 175, 55, 0.2), transparent),
        radial-gradient(1px 1px at 33% 80%, rgba(212, 175, 55, 0.3), transparent);
    background-size: 200% 200%;
    animation: particlesFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.hero > .container {
    position: relative;
    z-index: 1;
}

@keyframes particlesFloat {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 80% 10%, 90% 60%, 33% 80%;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 60% 40%, 70% 20%, 80% 50%, 40% 90%;
    }
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Animation pulse sur le bouton CTA */
.btn-pulse {
    animation: pulse 2s infinite;
    box-shadow: 0 4px 12px rgba(196, 155, 99, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-pulse:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 155, 99, 0.5) !important;
    animation: none;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(196, 155, 99, 0.3), 0 0 0 0 rgba(196, 155, 99, 0.7);
    }
    50% {
        box-shadow: 0 4px 12px rgba(196, 155, 99, 0.3), 0 0 0 20px rgba(196, 155, 99, 0);
    }
}

/* Key figures */
.key-figures {
    background: linear-gradient(135deg, var(--vg-bordeaux-600) 0%, var(--vg-bordeaux-600) 100%);
    padding: 2.5rem 0 !important;
}

.key-figures .figure-number {
    color: var(--vg-gold);
    font-size: clamp(2.5rem, 5vw, 4rem) !important;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.key-figures > .container > .row > div > div:not(.figure-number) {
    font-size: 1rem;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

/* Hero video */
/* Responsive */
@media (max-width: 575.98px) {
    .hero h1 {
        font-size: 28px !important;
        line-height: 1.2;
    }
    .hero {
        padding: 30px 0 20px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .hero h1 {
        font-size: 42px;
    }
            }

@media (min-width: 992px) and (max-width: 1199.98px) {
    .hero {
        padding: 80px 0 60px;
    }
}

@media (min-width: 1200px) {
    .hero {
        padding: 100px 0 80px;
    }
    .hero h1 {
        font-size: 56px;
    }
}

@media (max-width: 767.98px) and (orientation: landscape) {
    .hero {
        padding: 20px 0;
    }
}
