/* COMMUN */
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Outfit', Helvetica, sans-serif;
    background-color: rgb(255, 255, 255);
    color: white;
    height: 100%;
}

/* COMMUN */
a {
    color: inherit;
    text-decoration: none;
}

/* Animation Active State */
.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: transform 1s ease-in-out, opacity 1s ease-out;
}

/* Initial State for Animation */
.animate-start {
    opacity: 0;
    transform: translateY(-100%);
}


/* COMMUN */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
    
}

/* COMMUN */
.logo, .about-button, .lets-talk-button {
    font-weight: bold;

}

/* COMMUN */
.menu-icon {
    font-size: 1.5em;
    cursor: pointer;
    margin-right: 20px;
    padding: 20px;
}

.menu-icon div {
    width: 35px;
    height: 6px;
    background-color: white;
    margin: 5px 0;
    transition: 0.4s;
}

.menu-icon.open .bar1 {
    transform: rotate(-45deg) translate(-10px, 5px);
}

.menu-icon.open .bar2 {
    opacity: 0;
}

.menu-icon.open .bar3 {
    transform: rotate(45deg) translate(-10px, -5px);
}

/* COMMUN */
.menu {
    display: none;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: black !important; /* Full black background */
    z-index: 500;
    color: white;
    text-align: center;
}

/* COMMUN */
.menu .menu-content {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center text */
    justify-content: center; /* Align to center */
    height: 100%; /
}

/* COMMUN */
.menu .menu-content .label,
.menu .menu-content .contact-detail {
    font-size: 1em;
    font-weight: regular;
    margin-bottom: 50px;
}


/* COMMUN */
.menu .instagram-logo {
    width: 32px;
    height: 32px;
    margin-top: 16px;
}

/* COMMUN */
.about-text {
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    margin-bottom: 10px;

}

/* COMMUN */
.contact-info {
    display: none;
    position: absolute;
    bottom: 0%;
    right: 0%;
    background-color: rgba(255, 255, 255);
    z-index: 1000;
    width: calc(100% - 0%);
    height: calc(100% - 0%);
    color: rgb(85, 85, 85);
}

/* COMMUN */
.contact-info p {
    margin: 0;
    padding: 2px;
    margin-right: 8px;
}

/* COMMUN */
.contact-info .label {
    padding-top: 20px;
    padding-left: 60px;
    font-weight: bold;
    font-size: 0.9em;
}

/* COMMUN */
.contact-info .contact-detail {
    padding-left: 60px;
    font-size: 1.2em;
    font-weight: regular;
}

/* COMMUN */
.contact-info .contact-detail a {
    color: rgb(21, 21, 21);
    text-decoration: none;
}

/* COMMUN */
.contact-info .close-button {
    background-color: transparent;
    font-weight: bold;
    border: none;
    color: rgb(85, 85, 85);
    font-size: 1.75em;
    cursor: pointer;
    position: absolute;
    top: 8px;
    right: 32px;
}

/* COMMUN */
.contact-info .instagram-logo {
    padding-left: 60px;
    width: 24px;
    height: 24px;
    margin-top: 8px;
}

/* COMMUN */
.image-container {
    display: flex;
    flex-direction: column;
}

/* COMMUN */
.image-container {
    display: flex;
    flex-direction: column;
}

/* COMMUN */
.image-item {
    position: relative;
    width: 100%;
    height: calc(100vh - 30px);
    margin-bottom: -30px;
}

/* COMMUN */
.image-item img, .image-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Classe spécifique pour les éléments avec priorité à gauche */
.left-image img, .left-image video {
    object-position: left;
}

/* Classe spécifique pour les éléments centrés */
.centered-image img, .centered-image video {
    object-position: center;
}

/* Classe spécifique pour les éléments avec priorité à droite */
.right-image img, .right-image video {
    object-position: right;
}


/* COMMUN */
.text {
    position: absolute;
    bottom: 60px;
    left: 56px;
    right: 56px;
    color: white;
}

/* COMMUN */
.title {
    font-weight: bold;
    font-size: 1.5em;
    margin: 0;
}

/* COMMUN */
.description {
    font-size: 1em;
    margin-top: 0.2%;
}



/* DESKTOP */
.logo {
    font-size: 6em;
    pointer-events: none;
    margin-left: 55px;
    margin-top: 30px;
}

/* DESKTOP */
.menu-icon {
    display: none;
}

/* DESKTOP */
.about-button {
    text-align: right;
    font-size: 1.5em;
    cursor: pointer;
    margin-right: 80px;
    margin-top: 96px;
}

/* DESKTOP */
.lets-talk-button {
    text-align: right;
    position: fixed;
    bottom: 76px;
    right: 80px;
    font-size: 1.5em;
    cursor: pointer;
    z-index: 1000;
    background-color: transparent;
    border: none;
    color: white;
}



/* MOBIL */
@media only screen and (max-width: 768px) {
    .logo {
        font-size: 2em;
        margin-top: 5px;
        margin-left: 35px;
    }

    .about-button {
        display: none;
    }

    .menu-icon {
        display: block;
        font-size: 3em;
        margin-right: 40px;
        margin-top: 5px;
    }

    .lets-talk-button {
        display: none;
    }

    .image-item {
        height: 90vh;
    }

    .menu .menu-content .label,
    .menu .menu-content .contact-detail {
        margin: 5px;
    }

    .text {
        font-size: 0.9em;
        left: 36px;
        right: 36px;
    }
}