/* Events Page Specific Styles */

/* Festival Calendar */
.festival-calendar {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.calendar-header {
    background: linear-gradient(135deg, #F97316, #EA580C);
    padding: .5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.calendar-title {
    font-size: 1.5rem;
    margin: 0;
}

.calendar-grid {
    padding: 0;
}

.calendar-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #F97316;
}

.calendar-day-header {
    padding: .5rem;
    text-align: center;
    font-weight: 600;
    color: white;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #f0f0f0;
    border: 1px solid #f0f0f0;
}

.calendar-day {
    background: white;
    min-height: 80px;
    padding: 0.5rem;
    position: relative;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.calendar-day.empty {
    background: #f8f9fa;
}

.day-number {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.25rem;
}

.festival-day {
    background: #fff8f0 !important;
    /* border: 2px solid #F97316 !important; */
}

.festival-day .day-number {
    color: #F97316;
    font-weight: 700;
}

.festival-dot {
    width: 8px;
    height: 8px;
    background: #F97316;
    border-radius: 50%;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
}

.festival-name {
    font-size: 0.7rem;
    color: #F97316;
    font-weight: 600;
    text-align: center;
    line-height: 1;
    margin-top: auto;
}

.chhath-day {
    background: #fff0f0 !important;
    /* border: 2px solid #DC2626 !important; */
}

.chhath-day .day-number {
    color: #DC2626;
}

.chhath-day .festival-dot {
    background: #DC2626;
}

.chhath-day .festival-name {
    color: #DC2626;
}

/* Calendar Highlights */
.calendar-highlights {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: fit-content;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-content h6 {
    margin-bottom: 0.25rem;
    color: #333;
}

/* Event Cards */
.event-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.08);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.event-date-section {
    background: linear-gradient(135deg, #F97316, #EA580C);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.event-date-large {
    text-align: center;
    color: white;
}

.event-date-large .date-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.event-date-large .date-month {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}
.event-date-large {
    background: var(--brand-orange);
    color: white;
    border-radius: 0.75rem 0 0;
    padding: 1rem;
    text-align: center;
    margin-bottom: 1rem;
    min-width: 80px;
    margin-bottom: 0;
    display: flex
;
    flex-direction: column;
    justify-content: center;
}
/* Guideline Cards */
.guideline-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.guideline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Past Event Cards */
.past-event-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.past-event-card:hover {
    transform: scale(1.02);
}

.past-event-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 2rem 1rem 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.past-event-card:hover .past-event-overlay {
    opacity: 1;
}

/* Involvement Cards */
.involvement-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.involvement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.involvement-card.featured {
    border: 2px solid #F97316;
    background: linear-gradient(135deg, #fff8f0, #ffffff);
}

/* Responsive Design */
@media (max-width: 768px) {
    .calendar-day {
        min-height: 60px;
        padding: 0.25rem;
    }

    .festival-name {
        font-size: 0.6rem;
    }

    .calendar-highlights {
        margin-top: 2rem;
    }

    .event-date-section {
        padding: 1rem;
    }

    .event-date-large .date-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .calendar-day {
        min-height: 50px;
    }

    .calendar-day-header {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .festival-name {
        display: none;
    }

    .calendar-title {
        font-size: 1.2rem;
    }
}