/* ==================== INDEX & ACTIVITIES CARDS ==================== */

/* ===== MAIN PADDING ===== */
main {
    padding-top: 80px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    height: auto;
    padding: 80px 20px 60px;
    background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(80, 44, 145, 0.3), transparent);
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.hero::before {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--immersio-purple), transparent);
    top: -150px;
    left: -150px;
}

.hero::after {
    display: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-hero-full {
    max-width: 350px;
    margin: 0 auto 40px;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== HERO H1 - CONTRASTE AMÉLIORÉ ===== */
.hero h1 {
    font-family: 'Audiowide', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.6),
                 0 0 60px rgba(139, 92, 246, 0.4);
    margin: 30px 0 20px 0;
    font-weight: 900;
    line-height: 1.1;
}

.hero h1 em {
    color: #ec4899;
    font-style: italic;
    text-shadow: 0 0 30px rgba(236, 72, 153, 0.6);
}

.hero-lead {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-bottom: 60px;
}

.hero-actions > * {
    animation: fadeInUp 0.8s ease-out;
}

/* ===== MASQUER LE STAMP 04 COMPLÈTEMENT ===== */
.hero-stamp {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* ===== INTRO SECTION ===== */
.section-wrap:has(.intro) {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-block: clamp(60px, 8vw, 120px);
    padding-left: 20px;
    padding-right: 20px;
    background: transparent !important;
}

.intro {
    text-align: center;
    width: 100%;
    max-width: 1100px;
}

.intro h2 {
    margin-bottom: 20px;
    color: #ffffff;
}

.intro-copy {
    color: var(--text-light);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
}

/* ===== ACTIVITIES SECTION ===== */
#activites {
    scroll-margin-top: 100px;
}

.section-wrap:has(.activities) {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-block: clamp(60px, 8vw, 120px);
    padding-left: 20px;
    padding-right: 20px;
    background: transparent !important;
}

.activities {
    width: 100%;
    max-width: 1100px;
}

.activities-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 60px;
}

.activities-heading h2 {
    flex: 0 0 auto;
    color: #ffffff;
}

.eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--immersio-purple-light);
    margin-bottom: 10px;
}

/* ===== HOME GRID (CARTES) - GRILLE 2x2 ===== */
.home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
    animation: fadeIn 0.8s ease-out 0.3s both;
}

.home-grid.activities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== HOME CARD (CARTE D'ACTIVITÉ) ===== */
.home-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(80, 44, 145, 0.1));
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: var(--border-radius-lg);
    padding: 0;
    overflow: hidden;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 450px;
}

.home-card:hover {
    border-color: rgba(167, 139, 250, 0.7);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.25);
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(80, 44, 145, 0.2));
}

/* HEADER DE LA CARTE */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    gap: 12px;
    border-bottom: 1px solid rgba(167, 139, 250, 0.2);
}

.card-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #ffffff !important;
    margin: 0 0 8px 0;
    font-weight: 800;
    line-height: 1.2;
}

.card-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.age-badge {
    background: rgba(139, 92, 246, 0.3);
    color: var(--immersio-purple-light);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-reserve-top {
    background: rgba(139, 92, 246, 0.2);
    color: var(--immersio-purple-light);
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(167, 139, 250, 0.4);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-reserve-top:hover {
    background: rgba(139, 92, 246, 0.4);
    border-color: rgba(167, 139, 250, 0.7);
    color: #fff;
}

/* CONTENU VIDEO */
.video-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}

.video-container iframe,
.video-container video {
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

/* CORPS DE LA CARTE */
.card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-description {
    color: #d0cfd6 !important;
    line-height: 1.7;
    margin: 0;
    margin-bottom: 20px;
    font-size: 1.05rem;
    flex: 1;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.feature-tag {
    background: rgba(167, 139, 250, 0.15);
    color: var(--immersio-purple-light);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(167, 139, 250, 0.3);
    transition: all var(--transition-base);
}

.feature-tag:hover {
    background: rgba(167, 139, 250, 0.25);
    border-color: rgba(167, 139, 250, 0.6);
}

/* ACTIONS DE LA CARTE */
.card-actions {
    display: flex;
    gap: 12px;
    padding: 0 20px 20px 20px;
    margin-top: auto;
}

.btn-discover,
.btn-reserve {
    flex: 1;
    text-align: center;
    padding: 12px 16px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    text-decoration: none;
    border: 1px solid transparent;
}

.btn-discover {
    color: var(--immersio-purple-light);
    border: 1px solid rgba(167, 139, 250, 0.4);
    background: transparent;
}

.btn-discover:hover {
    background: rgba(167, 139, 250, 0.2);
    border-color: rgba(167, 139, 250, 0.7);
    color: #fff;
}

.btn-reserve {
    background: linear-gradient(135deg, var(--immersio-purple), var(--immersio-purple-dark));
    color: white;
    border: 1px solid var(--immersio-purple-light);
}

.btn-reserve:hover {
    background: linear-gradient(135deg, var(--immersio-purple-dark), var(--immersio-purple));
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
}

/* ===== RESET SECTION WRAP ===== */
.section-wrap {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ===== BOOKING SECTION (OPTIMISÉE) ===== */
.section-wrap:has(.booking) {
    width: 100%;
    display: flex;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding-block: clamp(60px, 8vw, 120px) !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    margin: 0 !important;
}

.booking {
    background: transparent !important;
    padding: 0 !important;
    width: 100%;
    max-width: 1100px;
    border: none !important;
    box-shadow: none !important;
    margin: 0 !important;
}

.booking-panel {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
    min-height: auto !important;
    height: auto !important;
}

.booking-container {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.booking-content {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    margin-bottom: 0;
    width: 100%;
}

.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-content .eyebrow {
    margin-bottom: 8px;
}

.booking-subtitle {
    color: var(--text-light);
    margin: 0;
    font-size: 1.05rem;
}

.booking-wrapper {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    display: flex;
    flex-direction: row;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0 0 0;
}

.booking-summary {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.btn-booking {
    display: inline-flex;
    padding: 12px 30px;
    font-size: 1.05rem;
    text-align: center;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all var(--transition-base);
    min-width: 240px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-booking:hover {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
    transform: translateY(-3px);
}

/* ===== TÉLÉPHONE EN AVANT ===== */
.phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.5rem !important;
    color: #ec4899 !important;
    text-decoration: none;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    transition: all var(--transition-base);
    padding: 20px 0 !important;
    border-top: 2px solid rgba(236, 72, 153, 0.3) !important;
    border-bottom: 2px solid rgba(236, 72, 153, 0.3) !important;
    margin-top: 20px !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.8rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: transparent;
    padding: 60px 20px;
    width: 100%;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    height: 500px;
    border: 1px solid rgba(167, 139, 250, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info-wrapper {
    background: rgba(30, 20, 60, 0.6);
    border: 1px solid rgba(167, 139, 250, 0.4);
    border-radius: 16px;
    padding: 40px;
}

.contact-info-wrapper h2 {
    margin-bottom: 30px;
}

.address {
    color: #d0cfd6 !important;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.address strong {
    color: #fff;
}

/* ===== FAQ ===== */
.faq {
    max-width: 1200px;
    margin: 0 auto;
    width: min(100% - 30px, 1200px);
}

.section-wrap:has(.faq) {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-block: clamp(60px, 8vw, 120px) !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.faq {
    width: 100%;
    max-width: 1100px;
}

.section-heading {
    margin-bottom: 50px;
}

.section-heading h2 {
    margin-bottom: 30px;
    color: #ffffff;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-list details {
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: var(--border-radius-md);
    padding: 20px;
    cursor: pointer;
    transition: all var(--transition-base);
}

.faq-list details:hover {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(167, 139, 250, 0.5);
}

.faq-list details[open] {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(167, 139, 250, 0.5);
}

.faq-list summary {
    font-weight: 700;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    list-style: none;
    font-size: 1.1rem;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    color: var(--immersio-purple-light);
    font-size: 1.2rem;
    transition: transform var(--transition-base);
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list p {
    margin-top: 15px;
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 1.05rem;
}

/* ===== JOKERS GRID ===== */
.jokers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.joker-card {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: var(--border-radius-md);
    padding: 30px;
    text-align: center;
    transition: all var(--transition-base);
}

.joker-card:hover {
    border-color: rgba(167, 139, 250, 0.7);
    background: rgba(139, 92, 246, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(139, 92, 246, 0.2);
}

.joker-card h3 {
    color: var(--immersio-purple-light);
    margin-bottom: 12px;
    font-size: 1.5rem;
    margin-top: 0;
}

.joker-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 1.05rem;
}

/* ===== RESPONSIVE TABLETTE ===== */
@media (max-width: 768px) {
    .activities-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-grid.activities-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .booking-panel {
        display: flex;
        flex-direction: column;
        padding: 0 !important;
    }

    .booking-wrapper {
        flex-direction: column;
        gap: 12px;
        margin-top: 15px;
    }

    .btn-booking {
        width: 100%;
        justify-content: center;
        min-width: auto;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-container {
        height: 300px;
    }

    .contact-info-wrapper {
        padding: 30px 20px;
    }

    .home-grid {
        grid-template-columns: 1fr;
    }

    .phone-link {
        margin-top: 15px !important;
        font-size: 1.3rem !important;
    }
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 480px) {
    main {
        padding-top: 70px;
    }

    .hero {
        padding: 40px 15px 30px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .logo-hero-full {
        max-width: 250px;
        margin: 0 auto 30px;
    }

    .hero-lead {
        font-size: 0.9rem;
    }

    .home-grid.activities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .booking-panel {
        padding: 0 !important;
    }

    .booking-content h2 {
        font-size: 1.5rem;
    }

    .booking-wrapper {
        flex-direction: column;
        gap: 12px;
    }

    .btn-booking {
        width: 100%;
        padding: 11px 25px;
        min-width: auto;
        font-size: 0.95rem;
    }

    .contact-info-wrapper {
        padding: 20px 15px;
    }

    .faq-list details {
        padding: 15px;
    }

    .section-wrap {
        width: 100% !important;
    }

    .phone-link {
        font-size: 1.2rem !important;
    }
}