/* -------------------------------------------------- */
/*             STYLES GLOBAUX                        */
/* -------------------------------------------------- */
body {
    margin: 0;
    padding: 0;
    font-family: 'Boldonse', sans-serif;
    color:#333;
    background-color: #f5f5f5;
}

/* -------------------------------------------------- */
/*                    HEADER FIXE                     */
/* -------------------------------------------------- */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 95%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0); /* transparent */
    z-index: 1000;
}

.header-fixed .logo {
    font-weight: bold;
    font-size: 1.5em;
}

.menu-right ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.menu-right li {
    margin-left: 20px;
}

.menu-right a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.menu-right a:hover {
    text-decoration: underline;
}

/* -------------------------------------------------- */
/*                SECTIONS AVEC IMAGES                */
/* -------------------------------------------------- */
.section-bg {
    min-height: 75vh;
    padding: 120px 40px 40px; /* espace pour header fixe */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #333;
    background-color: #f5f5f5;
}

.section-bg p{
	    width: 50%;

}
#accueil {
    background-image: url('images/accueil.jpg');
}

/* -------------------------------------------------- */
/*                   LAYERS (À PROPOS / CONTACT)      */
/* -------------------------------------------------- */
.layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: opacity 0.3s ease;
}

.layer-content {
    background: #fff;
    padding: 40px;
    border-radius: 5px;
    max-width: 600px;
    width: 90%;
    position: relative;
}

.layer.hidden {
    display: none;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.2em;
    background: none;
    border: none;
    cursor: pointer;
}

/* -------------------------------------------------- */
/*                   IMG MINI                         */
/* -------------------------------------------------- */

.miniatures {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.miniatures img {
    width: 60px;
    height: 60px;
    cursor: pointer;
    border: 2px solid #fff;
    border-radius: 6px;
    transition: transform 0.2s;
}

.miniatures img:hover {
    transform: scale(1.1);
}


/* -------------------------------------------------- */
/*                   RESPONSIVE DESIGN                */
/* -------------------------------------------------- */
@media (max-width: 768px) {
    .section-bg {
        padding: 100px 20px 40px;
        background-attachment: scroll;
    }

    .menu-right ul {
        flex-direction: column;
        align-items: flex-end;
    }

    .menu-right li {
        margin: 10px 0;
    }
}
