/* --- Festival Calendar Styles --- */

.festivals-section {
    padding: 8rem 0;
    background-color: var(--valley-mist);
}

.festivals-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.festivals-intro h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 300;
    color: var(--mountain-dusk);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.festivals-intro p {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

/* Year Toggle / Navigation */
.festival-year-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.year-link {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #999;
    text-decoration: none;
    padding-bottom: 8px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.year-link.active {
    color: var(--dzong-gold);
    border-bottom-color: var(--dzong-gold);
}

.year-link:hover {
    color: var(--mountain-dusk);
}

/* Calendar Table Styling */
.calendar-container {
    max-width: 1100px;
    margin: 0 auto;
    overflow-x: auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.festival-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.festival-table th {
    background-color: var(--mountain-dusk);
    color: var(--white);
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 20px 30px;
    text-align: left;
    font-weight: 500;
}

.festival-table td {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    color: #444;
    transition: background 0.3s ease;
}

.festival-table tr:last-child td {
    border-bottom: none;
}

.festival-table tr:hover td {
    background-color: var(--valley-mist);
}

.festival-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--mountain-dusk);
    font-weight: 500;
}

.festival-place {
    color: #777;
    font-style: italic;
    font-size: 14px;
}

.festival-date {
    font-family: 'Jost', sans-serif;
    color: var(--dzong-gold);
    font-weight: 600;
    font-size: 14px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .festivals-section {
        padding: 5rem 0;
    }

    .festival-table th {
        display: none;
        /* Stack them on mobile */
    }

    .festival-table td {
        display: block;
        width: 100%;
        padding: 15px 20px;
        border: none;
    }

    .festival-table td:first-child {
        padding-top: 30px;
        font-weight: bold;
        color: var(--dzong-gold);
        font-size: 12px;
    }

    .festival-table tr {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        display: block;
        padding-bottom: 20px;
    }

    .festival-name {
        font-size: 22px;
        margin-bottom: 5px;
        display: block;
    }
}