/* Calendar of Events Page Specific Styles - Premium Redesign */

:root {
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

.section-padding {
    padding: 50px 0;
}

/* Inner Banner */
.inner-banner {
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    position: relative;
    overflow: hidden;

    background-size: cover;
    background-position: center 12%;
    background-repeat: no-repeat;}

.inner-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(59, 22, 91, 0.35), rgba(59, 22, 91, 0.45)), url('../images/calendar_events_banner_indian.png');
    background-size: cover;
    background-position: center 12%;
    z-index: 1;
}

.banner-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/* Calendar Filter */
.calendar-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    border-radius: 30px;
    background: var(--white);
    border: 1px solid #eee;
    color: var(--gray);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Timeline */
.calendar-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.month-block {
    margin-bottom: 60px;
}

.month-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 5px solid var(--orange);
    text-transform: uppercase;
}

.event-item {
    background: var(--white);
    padding: 30px;
    border-radius: 25px;
    box-shadow: var(--card-shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.event-item:hover {
    transform: translateX(10px);
    border-color: var(--orange);
}

.event-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary);
}

.event-meta {
    display: flex;
    gap: 20px;
    color: var(--gray);
    font-size: 14px;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-meta i {
    color: var(--orange);
}

.event-category {
    padding: 6px 15px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.cat-national { background: #e3f2fd; color: #1976d2; }
.cat-state { background: #f1f8e9; color: #388e3c; }
.cat-intl { background: #fff3e0; color: #ef6c00; }

/* Download Box */
.download-box {
    background: var(--primary);
    padding: 60px;
    border-radius: 40px;
    color: var(--white);
    text-align: center;
    margin-top: 50px;
}

.download-box i {
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--orange);
}

.download-box a.btn {
    display: inline-block;
    margin-top: 25px;
    padding: 15px 40px;
    background: var(--orange, #ff6b00);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: var(--transition);
}

.download-box a.btn:hover {
    background: #e65c00;
    transform: translateY(-3px);
}

.event-item a.btn {
    display: inline-block;
    padding: 10px 25px;
    background: var(--orange, #ff6b00);
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.event-item a.btn:hover {
    background: #e65c00;
}

/* Responsive */
@media (max-width: 992px) {
    .banner-title { font-size: 40px; }
    .download-box { padding: 40px 30px; }
    .inner-banner { height: 200px; }
}

@media (max-width: 768px) {
    .event-item { flex-direction: column; text-align: center; gap: 15px; align-items: center; }
    .event-meta { justify-content: center; flex-wrap: wrap; gap: 10px; }
    .banner-title { font-size: 28px; }
    .inner-banner { height: 160px !important; }
    .download-box { padding: 30px 20px; border-radius: 20px; }
    .download-box i { font-size: 36px; }
    .event-info h3 { font-size: 17px; }
    .month-title { font-size: 20px; }
}

@media (max-width: 480px) {
    .banner-title { font-size: 22px; }
    .inner-banner { height: 140px !important; }
    .event-item { padding: 20px 15px; border-radius: 16px; }
    .filter-btn { padding: 9px 18px; font-size: 13px; }
    .download-box { padding: 25px 15px; }
}
