body {
    background-image: url('images/garrett-sears.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}


.home-link {
    position: absolute;
    top: 20px;
    right: 30px;
    color: orange;
    font-size: 1.2em;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    z-index: 3;
}

.home-link:hover {
    color: #ff8c00;
}

.logo-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: -200px;
    padding: 0 10px;
    box-sizing: border-box;
    max-width: 100%;
}

.logo {
    width: 80px;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo:hover {
    opacity: 1;
    transform: scale(1.5);
}

@media (max-width: 768px) {
    .logo {
        width: 60px; /* Réduit la taille des logos */
    }

    .logo-container {
        gap: 10px; /* Réduit l'espacement entre les logos */
        padding: 0 15px; /* Ajoute plus d'espace latéral */
    }
}


/* Credits Photos */
.footer-text {
    position: absolute;
    top: 20px;
    left: 30px;
    color: orange;
    font-size: 0.8em;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    text-align: center;
    text-decoration: none;
    padding: 8px 12px;
    z-index: 3;

}

/* Applique l'effet chrome aux liens également et désactive la couleur par défaut des liens */
.footer-text a {
    color: inherit; /* Utilise la couleur de l'effet chrome */
    text-decoration: none; /* Supprime le soulignement */
}

/* Change uniquement la couleur des liens au survol */
.footer-text a:hover {
    color: #427de3; /* Couleur bleue au survol */
}



/* Style du canevas pour l'effet de vague */
#waveCanvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    pointer-events: none;
}
