/* ==========================================
   GALA PAGE STYLES
   ========================================== */

/* HERO GALA */
.gala-hero {
    position: relative;
    min-height: 700px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.9), rgba(109, 40, 217, 0.9)),
                url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?w=1600') center/cover;
    display: flex;
    align-items: center;
    color: white;
    padding: 100px 0 80px;
}

.gala-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.gala-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.gala-hero-title {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.gala-hero-subtitle {
    font-size: 32px;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 40px;
    opacity: 0.95;
}

.gala-hero-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.info-icon {
    font-size: 42px;
}

.info-text {
    text-align: center;
    line-height: 1.4;
}

.btn-hero-cta {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    margin-top: 20px;
}

.btn-hero-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* COUNTDOWN */
.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.countdown-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 14px;
    margin-top: 8px;
    opacity: 0.9;
}

/* INTRO SECTION */
.gala-intro-section {
    padding: 80px 0;
    background: white;
}

.gala-intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.gala-intro-content h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.intro-lead {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.6;
}

.gala-intro-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.intro-highlight {
    background: var(--bg-light);
    padding: 25px;
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

/* AXES SECTION */
.axes-section {
    background: var(--bg-light);
    padding: 100px 0;
}

.axes-intro {
    font-size: 20px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.axes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.axe-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    border-top: 5px solid var(--primary-color);
    transition: var(--transition);
}

.axe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.axe-number-badge {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    font-size: 32px;
    font-weight: 700;
    border-radius: 50%;
    line-height: 60px;
    text-align: center;
    margin-bottom: 20px;
}

.axe-card h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.axe-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.axe-details {
    list-style: none;
    padding: 0;
}

.axe-details li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 15px;
    color: var(--text-gray);
}

.axe-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.objectif-financier {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.objectif-financier h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.objectif-montant {
    font-size: 64px;
    font-weight: 700;
    margin: 20px 0;
}

/* PANEL SECTION */
.panel-section {
    padding: 100px 0;
    background: white;
}

.panel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.panel-category h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 10px;
}

.panel-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.panel-card:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.panel-card.highlight {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: white;
}

.panel-card.artist {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
}

.panel-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.panel-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.panel-card p {
    font-size: 15px;
    opacity: 0.9;
}

.panel-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.panel-item {
    background: var(--bg-light);
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    font-size: 15px;
}

.panel-highlight {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
}

.panel-highlight p {
    font-size: 18px;
    margin-bottom: 15px;
}

/* PROGRAMME SECTION */
.programme-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.programme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.programme-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.programme-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.programme-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.programme-item h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.programme-item p {
    font-size: 15px;
    color: var(--text-gray);
}

.dress-code {
    text-align: center;
    font-size: 18px;
    margin-top: 40px;
    padding: 20px;
    background: white;
    border-radius: 12px;
}

/* RESERVATION SECTION */
.reservation-section {
    padding: 100px 0;
    background: white;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.ticket-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: var(--shadow-lg);
    border: 3px solid transparent;
    transition: var(--transition);
}

.ticket-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.ticket-card.premium {
    border-color: #fbbf24;
    background: linear-gradient(to bottom, #fffbeb, white);
}

.ticket-card.prestige {
    border-color: var(--primary-color);
    background: linear-gradient(to bottom, var(--bg-light), white);
}

.ticket-card.classique {
    border-color: var(--border-color);
}

.ticket-badge {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
}

.ticket-prices {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    padding: 25px 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.price-option {
    text-align: center;
}

.price {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.label {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
}

.ticket-benefits {
    list-style: none;
    padding: 0;
}

.ticket-benefits li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-gray);
}

.reservation-contact {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
}

.reservation-contact h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.urgence-text {
    font-size: 18px;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 30px;
}

.contact-numbers {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-btn {
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.contact-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.email-contact {
    font-size: 18px;
}

.email-contact a {
    color: var(--primary-color);
    font-weight: 600;
}

/* SPONSORING SECTION */
.sponsoring-section {
    background: var(--bg-light);
    padding: 100px 0;
}

.stands-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.stands-info h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stands-info p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.sponsoring-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.sponsor-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.sponsor-card:hover {
    transform: translateY(-10px);
}

.sponsor-card.platinum {
    border: 3px solid #fbbf24;
}

.sponsor-card.gold {
    border: 3px solid #f59e0b;
}

.sponsor-card.silver {
    border: 3px solid #9ca3af;
}

.sponsor-badge {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.sponsor-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
}

.sponsor-benefits {
    list-style: none;
    padding: 0;
}

.sponsor-benefits li {
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-color);
}

.sponsor-gains {
    background: white;
    padding: 50px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.sponsor-gains h3 {
    font-size: 32px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

.gains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.gain-item {
    text-align: center;
    padding: 25px;
    border-radius: 12px;
    background: var(--bg-light);
}

.gain-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.gain-item p {
    font-size: 16px;
    color: var(--text-gray);
}

.sponsor-cta {
    text-align: center;
    padding: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 15px;
}

.sponsor-cta p {
    font-size: 24px;
    margin-bottom: 25px;
}

.sponsor-contact {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-sponsor {
    background: white;
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: var(--transition);
}

.btn-sponsor:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* GALERIE SECTION */
.galerie-section {
    padding: 80px 0;
    background: white;
}

.video-galerie {
    max-width: 900px;
    margin: 0 auto;
}

.main-video {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.main-video video {
    width: 100%;
    display: block;
}

.video-caption {
    text-align: center;
    padding: 15px;
    background: var(--bg-light);
    font-style: italic;
    color: var(--text-gray);
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.photos-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.photos-grid img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* MESSAGE FINAL */
.message-final {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 100px 0;
    text-align: center;
}

.message-content {
    max-width: 900px;
    margin: 0 auto;
}

.message-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.message-quote {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 25px;
    opacity: 0.95;
    line-height: 1.6;
}

.message-text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
}

.btn-final-cta {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-final-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.message-details {
    margin-top: 30px;
    font-size: 18px;
    opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .gala-hero-title {
        font-size: 38px;
    }

    .gala-hero-subtitle {
        font-size: 24px;
    }

    .gala-hero-info {
        flex-direction: column;
        gap: 25px;
    }

    .countdown {
        gap: 15px;
    }

    .countdown-number {
        font-size: 36px;
    }

    .axes-grid {
        grid-template-columns: 1fr;
    }

    .objectif-montant {
        font-size: 48px;
    }

    .panel-grid {
        grid-template-columns: 1fr;
    }

    .tickets-grid,
    .sponsoring-grid {
        grid-template-columns: 1fr;
    }

    .contact-numbers {
        flex-direction: column;
    }

    .message-content h2 {
        font-size: 32px;
    }

    .message-quote {
        font-size: 18px;
    }
}