/* === POLICE CUSTOM === */
@font-face {
    font-family: "titreAccueil";
    src: url("../../fonts/CampanaScript_PERSONAL_USE_ONLY.otf");
}
@font-face {
    font-family: "titreHeader2";
    src: url("../../fonts/soopafre.ttf");
}




/* === BURGER MENU === */
#burger {
    display: none;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: white;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
    cursor: pointer;
}

/* === CONTENU CENTRAL === */
.main_accueil {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-image: url("../../images/salon.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    border: 2px solid white;
    border-radius: 15px;
    padding: 20px;
    row-gap: 40px;
}

#titreH2 {
    font-size: 3.5rem;
    color: rgb(10, 176, 218);
    text-align: center;
    -webkit-text-stroke: 1px rgb(3, 1, 32);
    text-shadow: 2px 2px 2px black;
    font-family: "titreAccueil", cursive;
}

.presentation, .historique {
    background-color: rgba(3, 1, 32, 0.9);
    border: 2px solid white;
    border-radius: 15px;
    padding: 20px;
    margin: 10px auto;
    width: 90%;
}

.pAccueil {
    text-align: center;
    font-family: cursive, Verdana, Geneva, Tahoma, sans-serif;
    font-size: large;
    margin-bottom: 25px;
    line-height: 1.6;
}

.lienAccueil {
    color: white;
    text-decoration: underline;
}

strong {
    font-weight: normal;
}

/* === RESPONSIVE DESIGN === */
@media screen and (max-width: 900px) {
    .flexLine {
        flex-direction: column;
    }

    .leftSide {
        position: fixed;
        top: 0;
        left: -100%;
        width: 75%;
        height: 100%;
        background-color: rgb(3, 1, 32);
        flex-direction: column;
        align-items: center;
        padding-top: 80px;
        transition: left 0.3s ease-in-out;
        z-index: 999;
    }

    .leftSide.active {
        left: 0;
    }

    #burger {
        display: block;
    }

    .rightSide {
        display: none;
    }

    .main_accueil {
        padding: 15px;
    }

    #titreH2 {
        font-size: 2.5rem;
    }
}

