* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Lulo';
    src: url('/font/Lulo.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/font/Montserrat.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat2';
    src: url('/font/Montserrat-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat3';
    src: url('/font/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat4';
    src: url('/font/Montserrat-Thin.ttf');
}

html, body {
    height: 100%;
    --scroll-behavior: smooth;
    scroll-behavior: smooth;
}

html {
    background-color: black;
}


#contenu {
    min-height: 100%;
    position: relative;
}

header {
    justify-content: space-between;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    height: 7%;

    h1 {
        color: white;
        font-family: 'Montserrat';
    }
    
    img {
        margin-left: 50px;
        margin-top: 15px;
    } 

    div.headerdiv2 {

        justify-content: right;
        display: flex;
        align-items: center;
        height: 100px;

        

        div.reseau {
            display: flex;
            
        }   

        .reseau:hover {
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }
    
        .lien:hover {
            text-decoration: underline;
        }
        
    }
 
}

.headerdiv2 {
    display: flex;
    gap: 2.5em;
    align-items: center;

    a {
        text-decoration: none;
        color: white;
        font-family: 'Montserrat';
        font-size: 1.3em;
    }

    div.reseau {
        display: flex;
        margin-right: 15px;       
    }   

    .reseau:hover {
        text-decoration: none;
    }

    div.lien {
        display: flex;
        align-items: center;    
        white-space: nowrap;
        gap: 20px;

    
    }   
        
}

body {
    background-color: black;
}

h1 {
    color: white;
}

h2 {
    color: white;
    font-family: 'Lulo';
    margin-top: 50px;
    margin-right: 5%;
    margin-left: 5%; 
    text-align: center;
}

p {
    padding-top: 2%;
    color: white;
    font-family: 'Montserrat';
    text-align: center;
}

.tel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2%;

    p {
        padding: 0;
        margin-left: 20px;
    }  
}

div.form {
    margin: 4%;
    text-align: center;

    input {
        padding: 8px;
        margin-bottom: 2%;
        width: 300px;   
        border: 1px solid white;
        background: none;
        color: white;
    }

    textarea {
        padding: 8px;
        margin-bottom: 2%;
        width: 300px;
        height: 100px;   
        border: 1px solid white;
        background: none;
        color: white;
    }

    input::placeholder, textarea::placeholder {
        color: white;
        font-family: 'Montserrat';
    }

    button {
        width: 300px;
        height: 50px;
        color: white;
        background: none;
        font-family: 'Lulo';
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    button:hover {
        background-color: white; /* Couleur de fond au survol */
        color: black; /* Couleur de la police au survol */
        cursor: pointer;
    }

    .message container {
        font-family: 'Montserrat';
        color: white;
        font-size: 200%;
    }
}

div#message-container {
    color: white;
    font-family: 'Montserrat';
    margin-top: 5%;
    font-size: 20px;
}
footer {
    display: flex;
    position: absolute;
    justify-content: space-between;
    align-items: bottom;
    background-color: black; /* Couleur de fond transparente */
    height: 3%;
    width: 100%;
    color: white;
    font-family: "Montserrat";
    margin-top: 7vh;


    div {
        margin-right: 5%;
        margin-left: 5%;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    transition: right 0.3s ease;
    z-index: 1000;
    padding-top: 80px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.mobile-menu-links a {
    color: white;
    text-decoration: none;
    font-family: 'Montserrat';
    font-size: 1.5em;
    transition: color 0.3s;
}

.mobile-menu-links a:hover {
    color: #ccc;
}

.mobile-menu-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.mobile-menu {
    display: block;
}

h2 {
    font-size: 120% !important;
    margin-left: 5% !important;
    margin-right: 5%;
    text-align: center;
    letter-spacing: 8px !important;
}



header {
    padding: 15px 20px;
    height: auto;

    img {
        margin-left: 0;
        margin-top: 0;
    }
}