/* ===== Layout ===== */

.lustrum-container {
    max-width: 1000px;
}

/* ===== Navigation ===== */

#lustrum-nav {
    backdrop-filter: blur(6px);
}

#lustrum-nav .nav-link {
    font-weight: 500;
    color: #555;
    transition: 0.2s ease;
}

#lustrum-nav .nav-link:hover,
#lustrum-nav .nav-link.active {
    color: #000;
    background: rgba(0,0,0,0.05);
    border-radius: 6px;
}

/* ===== Sections ===== */

.section-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: var(--bs-primary);
    display: block;
    margin-top: 8px;
    border-radius: 2px;
}

/* ===== Accordion Styling ===== */

.lustrum-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #eee;
}

.lustrum-accordion .accordion-button {
    background-color: #fff;
    padding: 1.2rem;
    font-weight: 500;
    font-size: 1rem;
}

.lustrum-accordion .accordion-button:not(.collapsed) {
    background-color: rgba(0, 0, 0, 0.03);
    box-shadow: none;
}

.lustrum-accordion .accordion-body {
    background: #fafafa;
    padding: 1.2rem;
    font-size: 0.95rem;
    color: #555;
}

/* ===== Typography ===== */

.time-title {
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== Responsive ===== */

@media (max-width: 768px) {

    .lustrum-container {
        padding: 1rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

}