/* Fond noir total */
body {
    margin: 0;
    padding: 0;
    background: #000;
    font-family: 'Rubik', sans-serif;
    color: white;
}

/* Animation fade-in */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Wrapper vertical centré */
.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
}

/* GIF plein écran mais contenu */
.hero-gif {
    width: 100%;
    max-width: 900px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Lien Contact */
.contact-link {
    font-size: 2rem;
    color: white;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.contact-link:hover {
    opacity: 0.7;
}

/* Logos réseaux sociaux */
.socials {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.socials img {
    width: 70px;
    height: auto;
    transition: opacity 0.2s ease;
}

.socials img:hover {
    opacity: 0.7;
}

/* Effet hover Grow Rotate (repris de ton ancien CSS) */
.hvr-grow-rotate {
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    transition-duration: 0.3s;
    transition-property: transform;
}

.hvr-grow-rotate:hover,
.hvr-grow-rotate:focus,
.hvr-grow-rotate:active {
    transform: scale(1.1) rotate(4deg);
}

/* Lien Contact — version premium */
.contact-link {
    display: inline-flex;
    gap: 0.08em; /* tracking naturel très serré */
    color: white;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 400;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    opacity: 1;
}

.contact-link span {
    display: inline-block;
    transition: transform 0.35s ease, opacity 0.35s ease;
    opacity: 0.85;
}

.contact-link:hover span {
    transform: translateY(-1.5px); /* mouvement plus subtil */
    opacity: 1;
}

/* Décalage progressif pour l’effet morphing */
.contact-link span:nth-child(odd) {
    transition-delay: 0.02s;
}

.contact-link span:nth-child(even) {
    transition-delay: 0.04s;
}

/* Responsive mobile */
@media (max-width: 600px) {
    .contact-link {
        font-size: 1.6rem;
    }

    .socials img {
        width: 55px;
    }
}
