/**
 * NETRAA — Festivals Calendar Stylesheet
 */
.festival-hero {
    background: linear-gradient(135deg, #4a148c 0%, #7b1fa2 50%, #e65100 100%);
    padding: 80px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.festival-hero::before {
    content: '🪔 🔱 🕉️ 🪷 🎆 🪔';
    position: absolute;
    font-size: 3rem;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.15;
    letter-spacing: 30px;
    white-space: nowrap;
}
.festival-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.festival-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}
.festival-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.festival-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(74, 20, 140, 0.2);
}
.festival-card .card-header {
    padding: 20px;
    color: #fff;
    text-align: center;
    position: relative;
}
.festival-card .festival-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}
.festival-card .festival-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}
.festival-card .festival-hindi {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 1rem;
    opacity: 0.9;
}
.festival-card .card-body {
    padding: 20px;
}
.festival-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #4a148c, #7b1fa2);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.festival-duration-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fff3e0;
    color: #e65100;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 6px;
}
.festival-traditions {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
}
.festival-traditions li {
    padding: 4px 0;
    font-size: 0.88rem;
    color: #555;
}
.festival-traditions li::before {
    content: '✦ ';
    color: #7b1fa2;
    font-weight: bold;
}
.countdown-strip {
    background: linear-gradient(135deg, #fff8e1, #fff3e0);
    border: 2px solid #ffe082;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 40px;
}
.countdown-strip h4 {
    color: #e65100;
    margin-bottom: 5px;
}
.countdown-strip .days-left {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4a148c;
}
.calendar-month-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}
.calendar-month-card .month-header {
    background: #f5f5f5;
    padding: 12px 20px;
    font-weight: 700;
    color: #4a148c;
}
