/*
===========
LESTIJDEN PAGE
===========
*/

/* Breadcrumb */
.lestijden-breadcrumb-section {
    padding-top: var(--breadcrumb-padding-top);
}

.breadcrumb {
    font-family: var(--font-family);
    font-size: var(--breadcrumb-size);
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb a {
    text-decoration: none;
    color: var(--text-dark);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb .current {
    font-weight: 700;
    color: var(--heading-color);
}

/* Container */
.lestijden-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Info sectie */
.lestijden-info-section {
    padding: 2rem 0 3rem;
}

.lestijden-info-section h1 {
    font-size: var(--h1-size-desktop);
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.lestijden-info-section p {
    font-size: var(--p-size);
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0.3rem;
}

.lestijden-info-section .highlight {
    font-weight: 700;
}

.lestijden-note {
    margin-top: 1rem;
    margin-bottom: 1.5rem !important;
}

/* Google Agenda */
.lestijden-agenda-section {
    padding: 0 0 6rem;
}

.agenda-container {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.agenda-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .lestijden-breadcrumb-section {
        padding-top: var(--breadcrumb-padding-top-mobile);
    }

    .lestijden-info-section h1 {
        font-size: var(--h1-size-mobile);
    }

    .lestijden-container {
        padding: var(--container-padding-mobile);
    }

    .agenda-container {
        height: 400px;
    }
}
