/* ====== ACTIVITÉS SECTION ====== */
.activites-section {
    padding: 80px 20px;
    background: rgba(26, 26, 46, 0.5);
}

.activites-container {
    max-width: 1400px;
    margin: 0 auto;
}

.activites-title {
    font-family: 'Audiowide', sans-serif;
    font-size: clamp(28px, 6vw, 48px);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 50px;
    text-align: center;
    background: linear-gradient(135deg, #8B5CF6 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.activites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

/* ===== CARTE ACTIVITÉ ===== */
.activity-card {
    position: relative;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    padding: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.activity-card:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
    transform: translateY(-5px);
}

/* ===== HEADER DE LA CARTE (avec badge et bouton) ===== */
.activity-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.activity-badge {
    background: transparent;
    border: 2px solid #ff8c00;
    color: #ff8c00;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.activity-reserve-btn {
    background: linear-gradient(135deg, #8B5CF6, #ec4899);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.activity-reserve-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.5);
}

.activity-reserve-btn:active {
    transform: scale(0.98);
}

/* ===== TITRE DE L'ACTIVITÉ ===== */
.activity-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 2.2rem;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);  /* ← AJOUTER */
}

/* ===== VIDÉO ===== */
.activity-video {
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    overflow: hidden;
    background: #000000;
}

.activity-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== DESCRIPTION ===== */
.activity-description {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* ===== BOUTONS D'ACTION ===== */
.activity-more-btn {
    background: linear-gradient(135deg, #8B5CF6, #a78bfa);
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
}

.activity-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

.activity-more-btn:active {
    transform: translateY(-1px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .activites-grid {
        grid-template-columns: 1fr;
    }

    .activites-title {
        font-size: 32px;
    }

    .activity-title {
        font-size: 1.8rem;
    }

    .activity-video {
        height: 200px;
    }

    .activity-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .activity-reserve-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== BOOKING SECTION ===== */
.section-wrap {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.booking {
    max-width: 600px;
    margin: 40px auto 0;
    padding: 30px 20px;
    background: transparent;
    border: none;
    border-radius: 0;
}

.booking-panel {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
    min-height: auto !important;
    height: auto !important;
}

.booking-content {
    max-width: 600px;
    margin-bottom: 10px;
    padding-bottom: 0;
}

.booking-content .eyebrow {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: #a78bfa;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.booking-content h2 {
    font-family: 'Audiowide', sans-serif;
    font-size: clamp(32px, 6vw, 48px);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    margin-top: 0;
}

.booking-content h2 em {
    color: #ec4899;
    font-style: italic;
}

.booking-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

.booking-wrapper {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 15px 0 20px 0;
}

.btn-booking {
    background: linear-gradient(135deg, #8B5CF6, #ec4899);
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
}

.btn-booking:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
}

.btn-booking:active {
    transform: translateY(-1px);
}

/* ===== TÉLÉPHONE EN AVANT ===== */
.phone-link {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem !important;
    color: #ec4899 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0 !important;
    padding: 15px 0 !important;
    border-top: 2px solid rgba(236, 72, 153, 0.3) !important;
    border-bottom: 2px solid rgba(236, 72, 153, 0.3) !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
}

.phone-link:hover {
    color: #ff8c00 !important;
    transform: scale(1.1) !important;
    text-shadow: 0 0 20px rgba(236, 72, 153, 0.5) !important;
}

.phone-icon {
    font-size: 1.5rem;
}

/* ===== RESPONSIVE BOOKING ===== */
@media (max-width: 768px) {
    .booking {
        padding: 30px 20px;
        margin: 40px auto 0;
    }

    .booking-wrapper {
        flex-direction: column;
        gap: 12px;
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .btn-booking {
        width: 100%;
        justify-content: center;
        padding: 11px 25px;
    }

    .booking-content h2 {
        font-size: 28px;
    }

    .activity-description {
        font-size: 1rem;
        margin-bottom: 15px;
    }
}