.background-image {
    background-image: url('/../images/background.jpg'); /* Remplace l'URL par ton image */
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: white;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5); /* optionnel : ajoute un filtre sombre pour améliorer la lisibilité du texte */
    height: 100%;
}

.logo {
    max-height: 150px; /* taille du logo */
}

.logo-container {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.store-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 150px;
    margin-top: 20px;
}

.store-buttons img {
    height: 60px;
    object-fit: contain;
}

@media (max-width: 576px) {
    .store-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}