* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'InterSemiBold';
    src: url('font/Inter-SemiBold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Déclaration de la deuxième police */
@font-face {
    font-family: 'InterLight';
    src: url('font/Inter-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Classyvogueregular';
    src: url('font/Classyvogueregular 2.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: Arial, sans-serif;
    background-color: #e6e6f4;
}
.container {
    width: 60vw;   /* Largeur maximum de 1000px */
    margin: 0 auto;      /* Centrer le conteneur */

}
@media (max-width: 600px) {
    .container {
        width: 80vw;     /* Utiliser 90% de la largeur de l'écran */
    }
}
nav {
    display: flex;
    font-family: InterSemiBold;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #e84e1b;
    color: #e6e6f4;
    position: sticky;
    top: 0; /* Position initiale en haut de la page */
    transition: top 0.6s;
    z-index: 3;
}

.nav-left {
    display: flex;
    align-items: center;
}

.logo img {
    width: 50px;
    height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin-left: 20px;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links li a {
    color: #e6e6f4;
    text-decoration: none;
    font-size: 25px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #d6d6e4;
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-right a {
    color: #e6e6f4;
    margin-right: 10px;
    font-size: 30px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: #d6d6e4;
}

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    height: 30px;
}

.burger span {
    width: 35px;
    height: 5px;
    background-color: white;
}

.overlay-menu {
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    top: 0;
    right: -100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
    z-index: 3;
}

.overlay-menu.show {
    right: 0;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.overlay-menu ul {
    list-style: none;
    text-align: center;
}

.overlay-menu ul li {
    margin: 20px 0;
}

.overlay-menu ul li a {
    color: white;
    font-size: 40px;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: InterSemiBold;
}

.overlay-menu ul li a:hover {
    color: #ccc;
}

.overlay-footer {
    position: absolute;
    bottom: 20px;
    display: flex;
    justify-content: space-between;
    width: 100px;
}

.overlay-footer a {
    color: white;
    font-size: 40px;
}

/* Responsive */
@media (max-width: 1000px) {
    .nav-left {
        justify-content: center;
        width: 100%;
    }

    .nav-right {
        position: absolute;
        right: 20px;
    }

    .nav-links {
        display: none;
    }

    .burger {
        display: flex;
    }

    /* Masquer les icônes en haut à droite pour la version mobile */
    .nav-right a {
        display: none;
    }

    /* Icônes LinkedIn et Instagram apparaîtront en bas dans l'overlay pour mobile */
}
