/* Partenaires Page Specific Styles */

.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-09.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 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.tiers-section {
    margin-bottom: 5rem;
}

.tier {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.tier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
}

.tier.platinum::before {
    background: linear-gradient(90deg, #E5E7EB, #9CA3AF, #6B7280, #9CA3AF, #E5E7EB);
}

.tier.gold::before {
    background: var(--fire-gradient);
}

.tier.silver::before {
    background: linear-gradient(90deg, #D1D5DB, #9CA3AF, #D1D5DB);
}

.tier.bronze::before {
    background: linear-gradient(90deg, #92400E, #B45309, #92400E);
}

.tier.table-sponsor::before {
    background: linear-gradient(90deg, #9CA3AF, #6B7280, #9CA3AF);
}

.tier-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.tier-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--jci-navy);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tier-price {
    font-size: 2rem;
    font-weight: 700;
    background: var(--fire-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tier-description {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(12, 149, 211, 0.05);
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    color: var(--fire-red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-text {
    flex: 1;
}

.benefit-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--jci-navy);
    margin-bottom: 0.25rem;
}

.benefit-text p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.tier-cta {
    margin-top: 2rem;
    text-align: center;
}

.tier-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--fire-gradient);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.tier-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.sponsors-showcase {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.sponsors-showcase h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--jci-navy);
    text-align: center;
    margin-bottom: 3rem;
}

.sponsor-tier-section {
    margin-bottom: 3rem;
}

.sponsor-tier-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-700);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.sponsor-tier-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
}

.sponsor-tier-title.platinum::after {
    background: linear-gradient(90deg, #E5E7EB, #9CA3AF, #E5E7EB);
}

.sponsor-tier-title.platinum {
    border: 3px solid var(--jci-navy);
    padding: 1rem 2rem;
    border-radius: 15px;
    background: rgba(19, 13, 52, 0.03);
}

.sponsor-tier-title.gold::after {
    background: var(--fire-gradient);
}

.sponsor-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    min-height: 150px;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 20px;
}

.sponsor-placeholder {
    width: 280px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sponsor-placeholder:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.15);
}

.sponsor-logo-area {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--jci-cyan), var(--jci-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.sponsor-name {
    padding: 1.5rem;
    text-align: center;
    color: var(--jci-navy);
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-section {
    background: linear-gradient(135deg, var(--fire-red) 0%, var(--fire-orange) 50%, var(--fire-gold) 100%);
    border-radius: 25px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.contact-content {
    position: relative;
    z-index: 1;
}

.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.contact-section p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.contact-icon {
    font-size: 2rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
}

.contact-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: white;
    color: var(--fire-red);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-button-primary {
    background: white;
    color: var(--fire-red);
    font-size: 1.1rem;
    padding: 1.25rem 3rem;
}

.contact-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
}

.contact-button-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    padding: 1.15rem 2.5rem;
}

.contact-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .main-content {
        padding: 2rem 1rem;
    }

    .tier {
        padding: 2rem;
        border-radius: 20px;
    }

    .tier-header {
        flex-direction: column;
        text-align: center;
    }

    .tier-name {
        font-size: 1.75rem;
        justify-content: center;
    }

    .tier-price {
        font-size: 1.5rem;
    }

    .tier-description {
        font-size: 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .tier-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .sponsors-showcase {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .sponsors-showcase h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .sponsor-tier-title {
        font-size: 1.35rem;
    }

    .sponsor-logos {
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .sponsor-placeholder {
        width: 100%;
        max-width: 320px;
    }

    .contact-section {
        padding: 3rem 1.5rem;
        border-radius: 20px;
    }

    .contact-section h2 {
        font-size: 1.75rem;
    }

    .contact-section p {
        font-size: 1rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 5rem 1rem 2.5rem;
    }

    .tier {
        padding: 1.5rem;
    }

    .tier-name {
        font-size: 1.5rem;
    }

    .tier-price {
        font-size: 1.25rem;
    }

    .sponsors-showcase {
        padding: 1.5rem 1rem;
    }

    .sponsors-showcase h2 {
        font-size: 1.5rem;
    }

    .contact-section {
        padding: 2.5rem 1rem;
    }

    .contact-section h2 {
        font-size: 1.5rem;
    }
}