/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Raleway', sans-serif;
    height: 100%;
    background-color: #000;
}

/* Conteneur principal */
.landing {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

/* Logo avec animation */
.logo {
    width: 200px;
    height: auto;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInZoom 1.5s ease-out forwards;
}

/* Animation */
@keyframes fadeInZoom {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.socials {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
}

.social-icon {
    margin: 0 15px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1); /* au cas où l'icône n'est pas déjà blanche */
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover img {
    transform: scale(1.2);
    opacity: 0.8;
}
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.coming-soon {
    margin-top: 16px;
    color: white;
    font-size: 1rem;
    letter-spacing: 1px;
    animation: fadeInText 2s ease-in-out 1.2s forwards;
    opacity: 0;
}

/* Animation pour le texte */
@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}