.pub {
    background: linear-gradient(rgba(240, 240, 240, 0.452), rgba(0, 27, 77, 0.596)), url('bgstudio.jpg') no-repeat center center/cover;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f2f5;
    margin: 0;
    color: #333;
    background-attachment: fixed; /* Parallax effect */
}

.promo-container {
   background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    width: 90%;
    box-sizing: border-box;
    position: relative; /* Ajouté pour positionner potentiellement la flèche */
}

h1 {
    color: #2c3e50;
    font-size: 2.2em;
    margin-bottom: 30px;
    line-height: 1.3;
}

/* Nouveau style pour le nom du studio */
.studio-name {
    color: #e74c3c; /* Une couleur vive, par exemple rouge orangé */
    font-weight: 900; /* Plus gras */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1); /* Petite ombre pour le faire ressortir */
    /* Vous pouvez ajuster la taille si vous voulez qu'il soit légèrement plus grand que le reste du texte */
    /* font-size: 1.1em; */
}


.buy-button {
    display: inline-block;
    background-color: #28a745; /* Couleur verte pour le bouton */
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-bottom: 20px; /* Réduire la marge pour faire de la place à la flèche */
}

.buy-button:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

/* Style pour la flèche de défilement */
.scroll-indicator {
    margin-top: 10px;
    margin-bottom: 30px; /* Espace après la flèche avant les icônes */
    font-size: 2.5em; /* Taille de la flèche */
    color: #007bff; /* Couleur de la flèche */
    animation: bounce 1.5s infinite; /* Animation de rebond */
}

/* Définition de l'animation de rebond */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}


.contact-icons {
    margin-top: 20px;
}

.contact-icons a {
    color: #555;
    font-size: 2.5em;
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
}

.contact-icons a:hover {
    color: #007bff; /* Couleur bleue au survol des icônes */
    transform: translateY(-2px);
}

/* Couleurs spécifiques pour les icônes */
.contact-icons .fa-facebook-f {
    color: #3b5998; /* Bleu Facebook */
}

.contact-icons .fa-whatsapp {
    color: #25d366; /* Vert WhatsApp */
}

.contact-icons .fa-facebook-f:hover {
    color: #2d4373;
}

.contact-icons .fa-whatsapp:hover {
    color: #1da851;
}

/* Media Queries pour la responsivité */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8em;
    }

    .buy-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }

    .scroll-indicator {
        font-size: 2em;
    }

    .contact-icons a {
        font-size: 2em;
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .promo-container {
        padding: 30px;
    }

    h1 {
        font-size: 1.5em;
    }

    .buy-button {
        padding: 10px 20px;
        font-size: 1em;
    }

    .scroll-indicator {
        font-size: 1.8em;
    }
}