/* Event Page Styling - Premium Dark Theme */

.event-div {
    padding: 1rem 0;
    margin-top: 1.5rem;
    text-align: center;
}
.event-title-banner{
    margin : auto;
    width: 100%;
    min-height: 28rem;
    background-image: url('../resource/banner/2.gif');
    background-size: cover;  
    border-radius: 2rem;
}

.event-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold, #D4AF37);
    margin: 1rem 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.event-section {
    background: var(--bg-card, #1A1A24);
    padding: 2rem;
    margin: 2rem auto;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    max-width: 800px;
}

.event-section h2 {
    color: var(--primary-gold, #D4AF37);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    /* margin-bottom: 1.5rem; */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.event-section h4 {
    color: var(--text-primary, #FFFFFF);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.event-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-gold, #D4AF37) 50%, 
        transparent 100%);
    margin: 1rem auto;
}

.event-section p {
    color: var(--text-secondary, #B8B8C8);
    font-size: 1.1rem;
    text-align: center;
    margin: 0.5rem 0;
    font-weight: bold;
}

.event-div > p {
    font-size: 1.8rem;
    font-weight: 400;
}

.text-color {
    color: var(--primary-gold, #D4AF37) !important;
    font-weight: 700;
}

/* Event Images Grid */
.event-images {
    margin: 2rem auto;
    padding: 0 1rem;
    max-width: 1200px;
}

.event-img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}


.event-img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(212, 175, 55, 0.3);
    border-color: var(--primary-gold, #D4AF37);
}

/* Telegram Contact */
.telegram-contact {
    text-align: center;
    margin: 3rem auto;
    padding: 2rem;
    background: var(--bg-card, #1A1A24);
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    max-width: 400px;
}

.telegram-contact img {
    width: 80px;
    height: 80px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.3));
}

.telegram-contact img:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 10px 25px rgba(212, 175, 55, 0.5));
}

.telegram-contact p {
    color: var(--text-primary, #FFFFFF);
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 480px) {
    .event-title-banner{
        margin : auto;
        width: 100%;
        min-height: 11rem;
        background-image: url('../resource/banner/2.gif');
        background-size: cover;  
    }
    .event-div {
        padding: 0.5rem 0;
        margin-top: 0.5rem;
    }
    .event-title {
        font-size: 1.8rem;
        margin: 0.5rem 0;
    }
    
    .event-section {
        padding: 0.5rem 1rem;
        margin: 0.5rem 0.5rem;
    }
    
    .event-section h2 {
        font-size: 1.5rem;
    }
    
    .event-section h4 {
        font-size: 1.2rem;
    }
    
    .event-section p {
        font-size: 1rem;
    }
    
    .event-images {
        padding: 0 0.5rem;
    }
    
    .telegram-contact {
        padding: 1.5rem;
        margin: 2rem 0.5rem;
    }
    
    .telegram-contact img {
        width: 60px;
        height: 60px;
    }
    
    .telegram-contact p {
        font-size: 1.1rem;
    }
    
    .event-line {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .event-title {
        font-size: 1.5rem;
    }
    
    .event-section h2 {
        font-size: 1.3rem;
    }
    
    .event-div > p {
        font-size: 1.4rem;
    }
}