/* ============================================================================
   STYLES THÉÂTRE IA JOHNNY - Rock'n'Roll Attitude
   ============================================================================ */

/* ===== HERO THÉÂTRE ===== */
.theatre-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1514320291840-2e0a9bf2a9ae?w=1920');
    background-size: cover;
    background-position: center;
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
}

.theatre-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,215,0,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ===== SECTION À PROPOS ===== */
.event-about-section {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}

.event-about {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 50px;
}

.event-about h2 {
    color: #ffd700;
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
    font-weight: 800;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 40px;
    text-align: center;
}

.intro-text strong {
    color: #ffd700;
    font-weight: 700;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255,215,0,0.1) 0%, rgba(220,20,60,0.1) 100%);
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 40px;
    margin-top: 30px;
}

.highlight-box h3 {
    color: #ffd700;
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.features-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 25px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border-left: 4px solid #ffd700;
    transition: all 0.3s ease;
}

.features-list li:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.features-list li > i {
    font-size: 32px;
    color: #ffd700;
    flex-shrink: 0;
    margin-top: 5px;
}

.features-list li > div {
    flex: 1;
}

.features-list strong {
    display: block;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 700;
}

.features-list p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
    font-size: 15px;
}

/* ===== CARTE TARIF PRINCIPALE (FEATURED) ===== */
.tarif-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.featured-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255,215,0,0.15) 0%, rgba(220,20,60,0.15) 100%);
    border: 3px solid #ffd700;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
}

.featured-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, #dc143c, #ffd700);
    border-radius: 20px;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.featured-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.6);
}

/* ===== INFOS PRATIQUES ===== */
.practical-info-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.2);
}

.practical-info-section h2 {
    color: #ffd700;
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: #000;
}

.info-card h3 {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.info-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
}

/* ===== MODAL STYLES ===== */
.person-menu-card {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
}

.person-number {
    color: #ffd700;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}

.person-identity {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.identity-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.identity-field label {
    color: #ffd700;
    font-size: 13px;
    font-weight: 600;
}

.identity-field input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 10px 12px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.identity-field input:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.identity-field input::placeholder {
    color: #666;
}

/* ===== ACCOUNT CHOICE MODAL ===== */
.account-choice-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
    max-width: 900px;
    width: 100%;
}

.account-choice-card {
    background: linear-gradient(135deg, rgba(255,215,0,0.08) 0%, rgba(220,20,60,0.08) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: 25px;
    min-height: 420px;
    justify-content: space-between;
}

.account-choice-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, rgba(255,215,0,0.15) 0%, rgba(220,20,60,0.15) 100%);
}

.choice-icon {
    font-size: 72px;
    color: #ffd700;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
    transition: all 0.3s ease;
}

.account-choice-card:hover .choice-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(255, 215, 0, 0.5));
}

.account-choice-card h3 {
    font-size: 26px;
    color: #ffd700;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.choice-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.choice-features li {
    padding: 12px 0;
    color: #ccc;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
    line-height: 1.5;
}

.choice-features li:last-child {
    border-bottom: none;
}

.choice-features i {
    color: #ffd700;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.choice-features .fa-info-circle {
    color: #999;
}

.choice-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    border: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.choice-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
}

.choice-btn.guest-btn {
    background: linear-gradient(135deg, #555, #777);
    box-shadow: 0 6px 20px rgba(85, 85, 85, 0.3);
}

.choice-btn.guest-btn:hover {
    background: linear-gradient(135deg, #666, #888);
    box-shadow: 0 10px 30px rgba(102, 102, 102, 0.5);
}

/* ===== RESPONSIVE TABLETTES ===== */
@media (max-width: 1024px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .event-about {
        padding: 35px;
    }
    
    .highlight-box {
        padding: 30px;
    }
    
    .account-choice-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .account-choice-card {
        min-height: auto;
    }
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 768px) {
    .theatre-hero {
        padding: 80px 0 40px;
    }
    
    .event-about {
        padding: 25px;
    }
    
    .event-about h2 {
        font-size: 28px;
    }
    
    .intro-text {
        font-size: 16px;
    }
    
    .highlight-box {
        padding: 20px;
    }
    
    .highlight-box h3 {
        font-size: 22px;
        flex-direction: column;
    }
    
    .features-list li {
        flex-direction: column;
        text-align: center;
    }
    
    .features-list li > i {
        margin: 0 auto 15px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .practical-info-section h2 {
        font-size: 28px;
    }
    
    .person-identity {
        grid-template-columns: 1fr;
    }
    
    .account-choice-options {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .account-choice-card {
        padding: 30px 20px;
        min-height: auto;
    }
    
    .choice-icon {
        font-size: 56px;
    }
    
    .account-choice-card h3 {
        font-size: 22px;
    }
    
    .choice-features {
        margin: 15px 0;
    }
    
    .choice-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* ===== RESPONSIVE TRÈS PETITS ÉCRANS ===== */
@media (max-width: 480px) {
    .event-about h2 {
        font-size: 24px;
    }
    
    .intro-text {
        font-size: 15px;
    }
    
    .highlight-box h3 {
        font-size: 20px;
    }
    
    .features-list strong {
        font-size: 16px;
    }
    
    .features-list p {
        font-size: 14px;
    }
    
    .info-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .choice-icon {
        font-size: 48px;
    }
    
    .account-choice-card {
        padding: 25px 15px;
    }
    
    .account-choice-card h3 {
        font-size: 18px;
    }
    
    .choice-features {
        font-size: 13px;
    }
    
    .choice-btn {
        padding: 12px 20px;
        font-size: 14px;
        gap: 8px;
    }
}

/* ===== ANIMATIONS SPÉCIFIQUES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.info-card:nth-child(1) {
    animation-delay: 0.1s;
}

.info-card:nth-child(2) {
    animation-delay: 0.2s;
}

.info-card:nth-child(3) {
    animation-delay: 0.3s;
}

.info-card:nth-child(4) {
    animation-delay: 0.4s;
}

.features-list li {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.features-list li:nth-child(1) {
    animation-delay: 0.1s;
}

.features-list li:nth-child(2) {
    animation-delay: 0.2s;
}

.features-list li:nth-child(3) {
    animation-delay: 0.3s;
}

.features-list li:nth-child(4) {
    animation-delay: 0.4s;
}