/* ===================================================
   PAGE AMBIANCE — styles spécifiques
=================================================== */

/* Compense la navbar fixe */
body { padding-top: 110px; }

/* ── HERO HEADER ── */
.hero-ambiance {
    background: linear-gradient(rgba(30, 18, 8, 0.8), rgba(30, 18, 8, 0.95)), url('images/veranda01.jpg') center/cover no-repeat;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 70px 5% 60px;
    text-align: center;
}

.hero-ambiance h1 {
    font-family: var(--font-titre);
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 400;
    font-style: italic;
    color: var(--texte-clair);
    margin-bottom: 10px;
}

.hero-ambiance h1 em { color: var(--or-moutarde); }

/* ── CONTENU PRINCIPAL ── */
.ambiance-page {
    background-color: var(--fond-sombre);
    padding: 80px 5% 100px;
}

.ambiance-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ── TEXTE DE PRÉSENTATION ── */
.ambiance-texte {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.ambiance-texte h2 {
    font-family: var(--font-titre);
    font-size: 2.2rem;
    color: var(--texte-clair);
    margin-bottom: 25px;
}

.ambiance-texte h2 em {
    color: var(--or-moutarde);
    font-style: italic;
}

.ambiance-texte p {
    font-family: var(--font-corps);
    font-size: 1rem;
    color: var(--text-gris);
    line-height: 1.6;
    margin-bottom: 15px;
}

/* ── GALERIE PHOTOS (Grille asymétrique) ── */
.galerie-grille {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.photo-item {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(212, 175, 55, 0.3);
    z-index: 10;
}