/* --------- STYLE GÉNÉRAL --------- */
body {
    font-family: 'Poppins', sans-serif;
    background: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* --------- HEADER --------- */
header {
    padding: 20px;
    background: #aa7942;
    color: white;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
}


/* --------- GALERIE --------- */
.gallery-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Chaque section (chambre, salon, etc.) */
.gallery-section {
    margin-bottom: 40px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-section h2 {
    text-align: center;
    font-size: 22px;
    color: #fff;
    margin-bottom: 10px;
}

/* Grille des images */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 10px;
    justify-content: center;
}

/* Style des images */
.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.gallery-item:hover img {
    transform: scale(1.05);
}
/* --------- CONTAINER PRINCIPAL --------- */
.gallery-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* --------- TITRE DES SECTIONS --------- */
.gallery-header {
    background: #aa7942;
    color: white;
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}

.gallery-header:hover {
    background: #f5cf20;
}

/* --------- FLÈCHE D'OUVERTURE --------- */
.arrow {
    font-size: 18px;
    color: white; /* Même couleur que le titre */
    transition: transform 0.3s ease;
}

/* --------- CONTENU DE LA GALERIE (CACHÉ PAR DÉFAUT) --------- */
.gallery-content {
    display: none; /* Fermé par défaut */
    padding: 15px;
    background: white;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

/* --------- GRILLE DES IMAGES (Garde l'ancien style) --------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 10px;
    justify-content: center;
}

/* Style des images */
.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* --------- CLASSE POUR OUVERTURE --------- */
.gallery-section.open .gallery-content {
    display: block;
}

.gallery-section.open .arrow {
    transform: rotate(180deg);
}

/* --------- BOUTON RETOUR --------- */
.btn-retour {
    display: inline-block;
    margin: 20px auto;
    padding: 10px 20px;
    background: #ff5733;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn-retour:hover {
    background: #e04e2a;
}


