/* Events Page Specific Styles - Dark Theme */

.page-header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #dc3545;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.nav-link.active {
    color: #dc3545 !important;
    font-weight: 600;
}

/* Schedule Section */
.schedule {
    padding: 80px 20px;
    background: #1a1a1a;
}

.schedule h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #dc3545;
}

.schedule-notice {
    max-width: 800px;
    margin: 0 auto;
}

.notice-card {
    background: #2a2a2a;
    border: 1px solid #333;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.2);
    text-align: center;
}

.notice-card i {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: 1rem;
}

.notice-card h3 {
    color: #dc3545;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.notice-card p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.notice-card p:last-child {
    margin-bottom: 0;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.day-schedule {
    background: #2a2a2a;
    border: 1px solid #333;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.2);
}

.day-schedule h3 {
    color: #dc3545;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #444;
}

.schedule-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(220, 53, 69, 0.1);
}

.time {
    background: #dc3545;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 80px;
    text-align: center;
    align-self: flex-start;
}

.event-info h4 {
    color: #dc3545;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.event-info p {
    color: #ccc;
    font-size: 0.95rem;
}

/* Committees Section */
.committees {
    padding: 80px 20px;
    background: #0a0a0a;
}

.committees h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #dc3545;
}

.committees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.committee-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.committee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(220, 53, 69, 0.3);
}

.committee-header {
    background: linear-gradient(135deg, #dc3545 0%, #b71c1c 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.committee-header i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.committee-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.difficulty {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.committee-details {
    padding: 1.5rem;
    background: #2a2a2a;
}

.committee-details p {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: #ccc;
}

.committee-details strong {
    color: #dc3545;
}

.committee-description {
    padding: 1.5rem;
}

.committee-description p {
    color: #ccc;
    line-height: 1.6;
}

/* Special Events */
.special-events {
    padding: 80px 20px;
    background: #1a1a1a;
}

.special-events h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #dc3545;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.event-card {
    background: #2a2a2a;
    border: 1px solid #333;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.2);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-card i {
    font-size: 2.5rem;
    color: #dc3545;
    margin-bottom: 1rem;
}

.event-card h3 {
    color: #dc3545;
    margin-bottom: 1rem;
    font-weight: 600;
}

.event-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.event-time {
    background: #dc3545;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Registration CTA */
.registration-cta {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-top: 1px solid #333;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Responsive Design for Events Page */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .committees-grid {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .time {
        align-self: flex-start;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 20px 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .committee-header {
        padding: 1.5rem;
    }
    
    .committee-header h3 {
        font-size: 1.1rem;
    }
    
    .committee-details,
    .committee-description {
        padding: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}
