@charset "UTF-8";
/* CSS Document */

body {
    margin: 0;
    padding: 0;
    background: #4e5f66;
    min-height: 100vh;
    min-width: 100vw;
    font-family: 'Montserrat', Arial, sans-serif;
}

.background-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    max-width: none;
    max-height: none;
    min-width: 100vw;
    min-height: 100vh;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.overlay {
    position: absolute;
    width: 92vw;
    max-width: 1700px;
    height: 92vh;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.top-text {
    margin-top: 48px;
	margin-bottom: 5vh;
    letter-spacing: 0.32em;
    color: #FFF;
    font-size: 2.1rem;
    display: flex;
    gap: 1.2rem;
    font-weight: 400;
    justify-content: center;
    flex-wrap: wrap;
}

.top-text .sep {
    color: #75b6aa;
    font-weight: bold;
}

@media (max-width: 600px) {
    .top-text {
        flex-direction: column;
        align-items: center;
        font-size: 1.2rem;
        gap: 0.5rem;
    }
    .top-text .sep {
        display: none;
    }
}

.logo-img {
    margin: 70px 0 40px 0;
    text-align: center;
    position: relative;
    z-index: 10;
    will-change: transform;
}

.logo-img img {
    width: 410px;
    max-width: 90vw;
    height: auto;
    display: block;
    margin: 0 auto;
    will-change: transform;
}

@media (max-width: 600px) {
    .logo-img img {
        width: 250px;
        max-width: 70vw;
    }
}

.contact {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
    color: #FFF;
    letter-spacing: 0.03em;
    opacity: 0.92;
}
.societe {
	font-weight: bold;
	font-size: 1.6rem;
	line-height: 3.5rem;
}

.contact a {
    color: #FFF;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: inherit;
}

.contact a:hover,
.contact a:focus {
    color: #75b6aa;
    text-decoration: none;
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1.1s cubic-bezier(0.25, 0.9, 0.25, 1) 0.1s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-el {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s cubic-bezier(0.25, 0.9, 0.25, 1) forwards;
}
.fade-el:nth-child(1) { animation-delay: 0.15s; }
.fade-el:nth-child(2) { animation-delay: 0.4s; }
.fade-el:nth-child(3) { animation-delay: 0.7s; }
