/* Page-specific styles for accueil.html */
:root {
    --zoo-green: #0f6b3a;
    --zoo-gold: #d4af37;
    --zoo-black: #0b0b0b;
    --zoo-white: #ffffff
}

.hero-home {
    position: relative;
    padding: 5rem 0;
    color: var(--zoo-white);
    min-height: 520px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/espace/espace_01.png');
    background-size: cover;
    background-position: center;
    filter: contrast(.95) brightness(.4);
    z-index: 0;
}

.hero-home .hero-inner {
    position: relative;
    z-index: 1;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0
}

.quick-card {
    display: block;
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    transition: transform .28s ease, box-shadow .28s ease;
    box-shadow: 0 6px 18px rgba(11, 11, 11, .08)
}

.quick-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 36px rgba(11, 11, 11, .15)
}

.quick-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: .5rem
}

.featured-wrapper {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(11, 11, 11, .1)
}

.featured-wrapper img {
    width: 45%;
    object-fit: cover;
    height: 320px
}

.featured-text {
    padding: 2rem;
    flex: 1
}

.featured-text .eyebrow {
    color: var(--zoo-gold)
}

.featured-meta {
    margin: 1rem 0;
    font-size: .95rem;
    color: #555
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0
}

.value-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(11, 11, 11, .05)
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0
}

.cta-card {
    background: linear-gradient(135deg, var(--zoo-green), #0b8a4e);
    color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-decoration: none;
    transition: transform .28s ease
}

.cta-card:hover {
    transform: translateY(-4px);
    color: #fff
}

.cta-card h3 {
    margin: 0
}

@media(max-width:900px) {
    .featured-wrapper {
        flex-direction: column
    }

    .featured-wrapper img {
        width: 100%;
        height: 240px
    }
}

@media(max-width:480px) {
    .quick-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}