/* ============================================
   ANIMATIONS POUR LES SECTIONS DE RÉSERVATION
   ============================================
   Styles partagés pour toutes les pages :
   - elClasico, elColectivo, elFavorito, losAventureros
   - Toutes les langues (fr, en, es, de)
   ============================================ */

/* Animation d'entrée */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation de la flèche */
@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Animation des particules */
@keyframes floatUp {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-150px);
        opacity: 0;
    }
}

/* Container pour le titre avec effets */
.booking-title-container {
    position: relative;
    padding: 40px 20px;
    overflow: hidden;
    background: transparent;
    animation: none;
}

/* Styles génériques pour tous les titres de réservation */
.elclasico-booking-title,
.elcolectivo-booking-title,
.elfavorito-booking-title,
.losaventureros-booking-title {
    color: #F1FADA;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.75rem;
    padding: 0 20px;
    display: block;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease;
    z-index: 1;
    text-shadow: 0 0 10px rgba(72, 202, 228, 0.3);
}

/* Flèche sous le texte - pleine et grasse */
.elclasico-booking-title::after,
.elcolectivo-booking-title::after,
.elfavorito-booking-title::after,
.losaventureros-booking-title::after {
    content: '▼';
    display: block;
    text-align: center;
    font-size: 2.5rem;
    color: #F1FADA;
    margin-top: 15px;
    font-weight: bold;
    line-height: 1;
    animation: bounceArrow 2s ease-in-out infinite;
}

/* Particules flottantes - 2px, positions aléatoires */
.booking-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: rgba(72, 202, 228, 0.6);
    animation: floatUp 6s linear infinite;
}

/* Positions aléatoires horizontales ET verticales avec délais variés */
.particle:nth-child(1) { left: 5%; bottom: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 12%; bottom: 30%; animation-delay: 0.3s; }
.particle:nth-child(3) { left: 18%; bottom: 5%; animation-delay: 0.6s; }
.particle:nth-child(4) { left: 25%; bottom: 50%; animation-delay: 0.9s; }
.particle:nth-child(5) { left: 32%; bottom: 15%; animation-delay: 1.2s; }
.particle:nth-child(6) { left: 38%; bottom: 70%; animation-delay: 1.5s; }
.particle:nth-child(7) { left: 45%; bottom: 25%; animation-delay: 1.8s; }
.particle:nth-child(8) { left: 52%; bottom: 8%; animation-delay: 2.1s; }
.particle:nth-child(9) { left: 58%; bottom: 40%; animation-delay: 2.4s; }
.particle:nth-child(10) { left: 65%; bottom: 20%; animation-delay: 2.7s; }
.particle:nth-child(11) { left: 72%; bottom: 60%; animation-delay: 3s; }
.particle:nth-child(12) { left: 78%; bottom: 12%; animation-delay: 3.3s; }
.particle:nth-child(13) { left: 85%; bottom: 35%; animation-delay: 3.6s; }
.particle:nth-child(14) { left: 92%; bottom: 18%; animation-delay: 3.9s; }
.particle:nth-child(15) { left: 8%; bottom: 55%; animation-delay: 4.2s; }
.particle:nth-child(16) { left: 15%; bottom: 22%; animation-delay: 4.5s; }
.particle:nth-child(17) { left: 22%; bottom: 45%; animation-delay: 4.8s; }
.particle:nth-child(18) { left: 28%; bottom: 7%; animation-delay: 5.1s; }
.particle:nth-child(19) { left: 35%; bottom: 65%; animation-delay: 5.4s; }
.particle:nth-child(20) { left: 42%; bottom: 28%; animation-delay: 5.7s; }

/* Effet au survol */
.booking-title-container:hover .elclasico-booking-title,
.booking-title-container:hover .elcolectivo-booking-title,
.booking-title-container:hover .elfavorito-booking-title,
.booking-title-container:hover .losaventureros-booking-title {
    transform: scale(1.02);
    text-shadow: 0 0 15px rgba(72, 202, 228, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .elclasico-booking-title,
    .elcolectivo-booking-title,
    .elfavorito-booking-title,
    .losaventureros-booking-title {
        font-size: 1.5rem;
        padding: 0 15px;
    }
    
    .elclasico-booking-title::after,
    .elcolectivo-booking-title::after,
    .elfavorito-booking-title::after,
    .losaventureros-booking-title::after {
        font-size: 1.5rem;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .elclasico-booking-title,
    .elcolectivo-booking-title,
    .elfavorito-booking-title,
    .losaventureros-booking-title {
        font-size: 1.3rem;
    }
}

