/* Inscription Page Specific Styles */

/* ========== Hero Section ========== */

.page-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, rgba(19, 13, 52, 0.85) 0%, rgba(23, 20, 44, 0.95) 100%), url('../images/photosOfficiel/2024-08-07 (3).webp') center/cover no-repeat;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, var(--fire-red) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--fire-orange) 0%, transparent 50%);
    opacity: 0.15;
    animation: fireGlow 8s ease-in-out infinite;
}

.page-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
}

/* ========== Main Content ========== */

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* ========== Section Headers ========== */

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--jci-navy);
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    padding: 0.4rem 1.25rem;
    background: rgba(255, 0, 0, 0.06);
    color: var(--fire-red);
    border: 1px solid rgba(255, 0, 0, 0.15);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

/* ========== Pricing Grid ========== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 5rem;
}

/* ========== Pricing Card Base ========== */

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.75rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.pricing-card:hover::after {
    opacity: 1;
}

/* ========== Card Variants ========== */

/* National Board */
.card-board {
    border-color: rgba(19, 13, 52, 0.12);
}

.card-board::after {
    background: linear-gradient(135deg, var(--jci-navy) 0%, #2d2558 100%);
}

.card-board:hover {
    border-color: var(--jci-navy);
    box-shadow: 0 20px 50px rgba(19, 13, 52, 0.15);
}

.card-board .card-icon {
    color: var(--jci-navy);
    background: rgba(19, 13, 52, 0.06);
}

/* Early Bird */
.card-earlybird {
    border-color: rgba(239, 196, 15, 0.25);
}

.card-earlybird::after {
    background: linear-gradient(135deg, #EFC40F 0%, #f5d442 100%);
}

.card-earlybird:hover {
    border-color: var(--fire-gold);
    box-shadow: 0 20px 50px rgba(239, 196, 15, 0.18);
}

.card-earlybird .card-icon {
    color: #c5a00a;
    background: rgba(239, 196, 15, 0.1);
}

/* Regular (Featured) */
.card-regular {
    border-color: rgba(255, 0, 0, 0.15);
}

.card-regular::after {
    background: var(--fire-gradient);
    opacity: 1;
}

.card-regular:hover {
    border-color: var(--fire-red);
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.15);
}

.card-regular .card-icon {
    color: var(--fire-red);
    background: rgba(255, 0, 0, 0.06);
}

/* Last Minute */
.card-lastminute {
    border-color: rgba(107, 114, 128, 0.15);
}

.card-lastminute::after {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);
}

.card-lastminute:hover {
    border-color: #6b7280;
    box-shadow: 0 20px 50px rgba(107, 114, 128, 0.15);
}

.card-lastminute .card-icon {
    color: #6b7280;
    background: rgba(107, 114, 128, 0.08);
}

/* ========== Card Icon ========== */

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
}

.pricing-card:hover .card-icon {
    transform: scale(1.05);
}

/* ========== Badge Styles ========== */

.card-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.badge-board {
    background: var(--jci-navy);
    color: white;
}

.badge-earlybird {
    background: linear-gradient(135deg, #EFC40F, #f5d442);
    color: #5c4a00;
}

.badge-popular {
    background: var(--fire-gradient);
    color: white;
}

.badge-lastminute {
    background: #f3f4f6;
    color: #6b7280;
}

/* ========== Featured Card ========== */

.pricing-card.featured {
    border: 2px solid rgba(255, 0, 0, 0.15);
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.08);
}

.pricing-card.featured:hover {
    box-shadow: 0 24px 56px rgba(255, 0, 0, 0.18);
}

/* ========== Card Typography ========== */

.pricing-type {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--jci-navy);
    margin-bottom: 0.35rem;
}

.pricing-subtitle {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
}

/* ========== Price Display ========== */

.pricing-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.25rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--jci-navy);
    margin-right: 0.15rem;
    align-self: flex-start;
    margin-top: 0.5rem;
}

.price-amount {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1;
    background: var(--fire-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-decimal {
    font-size: 1.25rem;
    font-weight: 600;
    color: #9ca3af;
    margin-left: 0.1rem;
}

.pricing-period {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 1.75rem;
}

/* ========== Feature List ========== */

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.check-icon {
    color: var(--fire-red);
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.save-icon {
    color: #16a34a;
    font-weight: 800;
}

/* ========== Pricing Button ========== */

.pricing-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--fire-gradient);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
    margin-top: auto;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.35);
}

.btn-lastminute {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    box-shadow: 0 4px 15px rgba(107, 114, 128, 0.25);
}

.btn-lastminute:hover {
    box-shadow: 0 8px 25px rgba(107, 114, 128, 0.4);
}

/* ========== Add-on Events Section - 3 colonnes centrées ========== */

.addons-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 320px));
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.addon-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid #f3f4f6;
}

.addon-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.12);
}

.addon-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.addon-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.addon-card:hover .addon-icon {
    transform: scale(1.08);
}

.addon-icon-dinner {
    background: rgba(255, 0, 0, 0.06);
    color: var(--fire-red);
}

.addon-icon-gala {
    background: rgba(239, 196, 15, 0.1);
    color: #c5a00a;
}

.addon-icon-lunch {
    background: rgba(12, 149, 211, 0.08);
    color: var(--jci-cyan);
}

.addon-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--jci-navy);
    margin-bottom: 0.2rem;
}

.addon-day {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--fire-red);
    margin-bottom: 0.3rem;
}

.addon-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.4;
}

.addon-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    flex-wrap: wrap;
}

.addon-price {
    display: flex;
    align-items: baseline;
    white-space: nowrap;
}

.addon-currency {
    font-size: 1rem;
    font-weight: 700;
    color: var(--jci-navy);
    margin-right: 0.1rem;
}

.addon-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--jci-navy);
    line-height: 1;
}

.addon-decimal {
    font-size: 0.9rem;
    font-weight: 600;
    color: #9ca3af;
}

.addon-button {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    background: white;
    color: var(--fire-red);
    border: 2px solid var(--fire-red);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    text-align: center;
}

.addon-button:hover {
    background: var(--fire-red);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.25);
}

/* ========== Info Section ========== */

.info-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.info-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--jci-navy);
    margin-bottom: 1rem;
}

.info-section > p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--jci-navy);
    margin-bottom: 0.5rem;
}

.info-text p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

/* ========== FAQ Section ========== */

.faq-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.faq-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--jci-navy);
    margin-bottom: 2rem;
    text-align: center;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 1.5rem;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--jci-navy);
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: #6b7280;
    line-height: 1.7;
}

/* ========== Responsive Design ========== */

@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

/* Responsive pour les add-ons : 2 colonnes sur tablette */
@media (max-width: 900px) {
    .addons-grid {
        grid-template-columns: repeat(2, minmax(260px, 300px));
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .info-section,
    .faq-section {
        padding: 2rem 1.5rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }
}

/* Responsive pour les add-ons : 1 colonne sur mobile */
@media (max-width: 640px) {
    .addons-grid {
        grid-template-columns: minmax(280px, 100%);
        justify-content: center;
    }

    .addon-card {
        padding: 1.25rem;
    }

    .addon-right {
        flex-direction: column;
        align-items: stretch;
    }

    .addon-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 2.5rem 1rem;
    }

    .pricing-card {
        padding: 1.75rem 1.5rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .pricing-price .price-amount {
        font-size: 2.5rem;
    }

    .addon-price .addon-amount {
        font-size: 1.5rem;
    }

    .addon-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}  


