/* Réinitialisation des styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: black;
}

/* Conteneur des images */
#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
}

.artwork {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    object-fit: cover; /* Evite la découpe tout en maintenant l'homothétie */
    transform: translate(-50%, -50%);
    opacity: 0;
    border: 150px solid black; /* Encadrement noir */
}

/* Filtre blanc semi-transparent augmenté */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.8); /* Augmenté de 20% */
    backdrop-filter: blur(30px);
    z-index: 1;
    pointer-events: none;
    opacity: 1;
    transition: opacity 2s ease;
}

/* Logo centré */
#logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    z-index: 100;
}

#logo img {
    width: 100%;
    height: auto;
}

footer {
    z-index: 10;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: transparent;
    text-align: center;
    padding: 10px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
}

footer p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: black;
}

.separator {
    border-left: 1px solid black;
    height: 14px;
}

/* Style du lien email */
footer a {
    color: black;
    text-decoration: none;
}

/* Icône Instagram toujours noire */
.social-icon {
    color: black;
    font-size: 18px;
    text-decoration: none;
}

.social-icon:hover {
    color: black;
}

/* Supprimer les bordures sur iPhone */
@media only screen and (max-width: 480px) {
    .artwork {
        border: 5px solid black !important;
        width: 300vw !important;       /* Réduit la largeur à 90% du viewport */
        height: auto !important;        /* Hauteur ajustée automatiquement */
        max-height: 90vh;               /* Ne dépasse pas 90% de la hauteur du viewport */
        border: none !important;        /* Supprime l'encadrement sur mobile */
        object-fit:  !important; /* Affiche l'image entière sans recadrage excessif */
        object-position: center;        /* Centre l'image */
        transform: translate(-50%, -50%); 
        margin-top: -50px!important;
    }

    
}