/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Mise en page - Première page */
body.page-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    background-color: #ffffff;
    color: rgb(18, 1, 1);
    padding: 20px;
}

/* Mise en page - Seconde page */
body.page-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    background-color: white;
    color: black;
    padding: 20px;
}

/* Conteneur */
.container {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    width: 100%;
}

/* Logo principal */
#logo {
    width: 150px;
    max-width: 100%;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Logo principal hover */
#logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0px 0px 10px #0056b3);
}

/* Logo de redirection */
.logo-link img {
    width: 150px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #7c3aed;
    border-radius: 12px;
    padding: 5px;
}

/* Hover logo du bas */
.logo-link:hover img {
    transform: scale(1.1);
    box-shadow: 0 0 15px #7c3aed;
}

/* Texte en gras aligné à gauche */
strong {
    display: block;
    text-align: left;
}

/* Animation d'apparition */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 1s; }
.delay-3 { animation-delay: 1.5s; }

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

/* Responsivité */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .container {
        padding: 20px;
        max-width: 90%;
    }

    #logo {
        width: 120px;
    }

    .logo-link img {
        width: 120px;
    }
}
