/* Basis stijlen en reset */
:root {
    --primary-color: #000000;
    --secondary-color: #007984;
    --text-color: #333333;
    --background-color: #ffffff;
    --accent-color: #007984;
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Toegankelijkheid verbeteringen */
:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Header en navigatie */
header {
    background-color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 10px;
    color: #007984;
}

.logo-top {
    font-size: 14px;
    text-transform: lowercase;
    font-weight: normal;
    letter-spacing: 1px;
}

.logo-bottom {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    white-space: nowrap;
}

.nav-links a[aria-current="page"] {
    color: var(--accent-color);
    font-weight: bold;
}

/* Mobiel menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    position: relative;
    transition: background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    transition: transform 0.3s ease;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    bottom: -6px;
}

/* Hero sectie */
.hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    padding: 2rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Intro sectie */
.intro {
    max-width: var(--max-width);
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.intro h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Highlights sectie */
.highlights {
    background-color: #f7fafc;
    padding: 4rem 2rem;
}

.highlights h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.highlights-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.highlight-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.highlight-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Sponsoren */
.sponsors {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.sponsors h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.sponsor-card {
    min-height: 150px;
    padding: 0.4rem 0.6rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sponsor-call {
    margin-top: 2rem;
    text-align: center;
    font-size: 1rem;
    color: var(--text-color);
}

.sponsor-call a {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
}

.sponsor-call a:hover,
.sponsor-call a:focus {
    text-decoration: underline;
}
.sponsor-card:hover,
.sponsor-card:focus {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.sponsor-card img {
    display: block;
    max-width: 100%;
    max-height: 126px;
    object-fit: contain;
}

.sponsors-grid .sponsor-card:nth-child(1) img {
    transform: scale(1.2);
}

.sponsors-grid .sponsor-card:nth-child(2) img {
    transform: scale(1.22);
}

.sponsors-grid .sponsor-card:nth-child(3) img {
    transform: scale(1.08);
}

.sponsors-grid .sponsor-card:nth-child(4) img {
    transform: scale(1.35);
}

.sponsor-card-dark {
    background: #050505;
    border-color: #202020;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #ffffff;
}

.footer-sponsors {
    max-width: var(--max-width);
    margin: 2rem auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
}

.footer-sponsors a {
    width: 104px;
    height: 48px;
    padding: 0.45rem;
    border-radius: 6px;
    background: rgba(255,255,255,0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-sponsors a:hover,
.footer-sponsors a:focus {
    opacity: 1;
    transform: translateY(-1px);
}

.footer-sponsors img {
    display: block;
    max-width: 100%;
    max-height: 32px;
    object-fit: contain;
}

.footer-sponsors .footer-sponsor-dark {
    background: #050505;
}

.social-links {
    list-style: none;
}

.social-links ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.social-links a, 
.social-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-links a:hover,
.social-link:hover {
    color: var(--accent-color-dark);
    text-decoration: underline;
}

.footer-bottom {
    position: relative;
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.site-version {
    position: absolute;
    right: 0;
    bottom: 0;
    color: rgba(255,255,255,0.45);
    font-size: 0.75rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        padding: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: var(--accent-color);
        padding: 1rem;
        width: 100%;
        text-align: center;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .sponsors {
        padding: 3rem 1rem;
    }

    .sponsors-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .sponsor-card {
        min-height: 104px;
        padding: 0.35rem 0.5rem;
    }

    .sponsor-card img {
        max-height: 82px;
    }

    .sponsors-grid .sponsor-card:nth-child(1) img,
    .sponsors-grid .sponsor-card:nth-child(2) img {
        transform: scale(1.12);
    }

    .sponsors-grid .sponsor-card:nth-child(3) img {
        transform: scale(1.02);
    }

    .sponsors-grid .sponsor-card:nth-child(4) img {
        transform: scale(1.2);
    }

    .footer-sponsors a {
        width: 92px;
        height: 42px;
    }

    .footer-sponsors img {
        max-height: 28px;
    }
}

/* Print stijlen */
@media print {
    .hero {
        height: auto;
    }

    .hero-image {
        display: none;
    }

    .hero-content {
        position: static;
        transform: none;
        color: var(--text-color);
        text-shadow: none;
    }

    .menu-toggle,
    .social-links {
        display: none;
    }

    .nav-links {
        display: block;
    }
}

/* Routes pagina */
.routes-header {
    background-color: var(--primary-color);
    color: #ffffff;
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
}

.routes-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.routes-grid {
    max-width: var(--max-width);
    margin: 2rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.route-map {
    width: 100%;
    height: 300px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    position: relative;
}

.route-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.route-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.2s;
    border: 1px solid #eee;
    margin-bottom: 2rem;
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.route-content {
    padding: 1.5rem;
}

.route-content h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.route-meta {
    color: #666;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.route-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.route-meta span::before {
    content: '🚴';
    font-size: 1.2rem;
}

.route-actions {
    margin-top: 1rem;
}

.route-actions .button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--accent-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.route-actions .button::before {
    content: '⬇️';
    font-size: 1.2rem;
}

.route-actions .button:hover {
    background-color: #005f68;
}

/* Responsive aanpassingen voor routes */
@media (max-width: 768px) {
    .routes-header h1 {
        font-size: 2rem;
    }

    .routes-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .route-card {
        padding: 1.5rem;
    }
}

/* Veiligheid & Regels pagina */
.safety-header {
    background-color: var(--primary-color);
    color: #ffffff;
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
}

.safety-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.safety-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.safety-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.safety-card h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.safety-list {
    list-style: none;
    padding: 0;
}

.safety-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.safety-list li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.video-section {
    margin-top: 4rem;
}

.video-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-container {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.video-container h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.video-container iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 4px;
}

/* Responsive aanpassingen voor veiligheid pagina */
@media (max-width: 768px) {
    .safety-header h1 {
        font-size: 2rem;
    }

    .safety-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }

    .safety-card {
        padding: 1.5rem;
    }
}

/* Foto's pagina */
.photos-header {
    background-color: var(--primary-color);
    color: #ffffff;
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
}

.photos-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.photo-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f7fafc;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-button {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: transparent;
    cursor: zoom-in;
    z-index: 1;
}

.photo-button::after {
    content: '+';
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(0,0,0,0.65);
    color: #ffffff;
    font-size: 1.75rem;
    line-height: 2.35rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-item:hover .photo-button::after,
.photo-button:focus::after {
    opacity: 1;
}

.photo-item:hover img {
    transform: scale(1.1);
}

.photo-link {
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 1rem;
}

.photo-link .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.photo-link .link-text {
    font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 2rem;
}

.lightbox[hidden] {
    display: none !important;
}

.lightbox-content {
    width: 90vw;
    height: 90vh;
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox .lightbox-image {
    display: block;
    width: 90vw;
    height: 90vh;
    max-width: none;
    max-height: none;
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(0,0,0,0.35);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    z-index: 1001;
}

.lightbox-close {
    top: 1rem;
    right: 1rem;
}

.lightbox-prev {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

/* Responsive aanpassingen voor foto's pagina */
@media (max-width: 768px) {
    .photos-header h1 {
        font-size: 2rem;
    }

    .photos-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        font-size: 1.5rem;
        padding: 0.5rem;
    }
}

/* Contact pagina */
.contact-header {
    background-color: var(--primary-color);
    color: #ffffff;
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
}

.contact-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-content {
    max-width: var(--max-width);
    margin: 2rem auto;
    padding: 0 2rem;
}

.contact-info {
    text-align: center;
    margin: 0 auto;
    max-width: 600px;
}

.contact-details {
    margin: 2rem 0;
}

.contact-details p {
    margin: 1rem 0;
}

.social-links {
    margin: 2rem 0;
}

.social-links h3 {
    margin-bottom: 1rem;
}

.social-links ul {
    list-style: none;
    padding: 0;
}

.social-links li {
    margin: 0.5rem 0;
}

.social-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
}

/* Formulier stijlen */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(44, 82, 130, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
}

/* Responsive aanpassingen voor contact pagina */
@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        text-align: center;
    }

    .contact-details {
        margin-bottom: 1.5rem;
    }
}

/* Over ons pagina */
.about-header {
    background-color: var(--primary-color);
    color: #ffffff;
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
}

.about-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 2rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-join {
    text-align: center;
    background: #f7fafc;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 4rem;
}

.about-join h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-join p {
    margin-bottom: 2rem;
}

.membership-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.membership-benefits li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.membership-benefits li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Responsive aanpassingen voor over ons pagina */
@media (max-width: 768px) {
    .about-header h1 {
        font-size: 2rem;
    }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-join {
        padding: 2rem;
    }
}

/* Safety notice */
.safety-notice {
    background-color: #f7fafc;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.safety-content {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.safety-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.safety-content p {
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.8;
}

/* Handsignalen en Tips sectie */
.signals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.signal-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.signal-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
}

.signal-list,
.tips-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.signal-item,
.tip-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.signal-item:hover,
.tip-item:hover {
    background-color: #f7fafc;
}

.signal-icon,
.tip-icon {
    font-size: 1.8rem;
    min-width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7fafc;
    border-radius: 50%;
    padding: 0.5rem;
}

.signal-item p,
.tip-item p {
    margin: 0;
    line-height: 1.4;
}

/* Responsive aanpassingen voor signalen */
@media (max-width: 768px) {
    .signals-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .signal-card {
        padding: 1.5rem;
    }

    .signal-icon,
    .tip-icon {
        font-size: 1.5rem;
        min-width: 2rem;
        height: 2rem;
    }
}

.instagram-feed {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

#curator-feed-default-feed-layout {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Responsive aanpassingen voor het logo */
@media (max-width: 768px) {
    .logo {
        gap: 10px;
        padding: 5px;
    }

    .logo-image {
        height: 35px;
    }

    .logo-text {
        font-size: 0.9em;
    }

    .logo-top {
        font-size: 1.2rem;
    }

    .logo-bottom {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 30px;
    }

    .logo-top {
        font-size: 1rem;
    }

    .logo-bottom {
        font-size: 1.4rem;
    }
}

/* NTFU Banner */
.ntfu-banner {
    background-color: #007984;
    color: white;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    border-radius: 8px;
}

.ntfu-content {
    max-width: 800px;
    margin: 0 auto;
}

.ntfu-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.ntfu-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .ntfu-banner {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .ntfu-content h2 {
        font-size: 1.5rem;
    }

    .ntfu-content p {
        font-size: 1rem;
    }
}

/* Routes informatie sectie */
.routes-info {
    background-color: #f7fafc;
    padding: 2rem;
    margin: 2rem auto;
    max-width: var(--max-width);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
}

.info-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.info-content ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.info-content ul li {
    margin-bottom: 0.5rem;
    position: relative;
}

.info-content ul li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: -1.5rem;
}

.info-content strong {
    color: var(--primary-color);
}

/* Zondagse routes */
.sunday-routes {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.sunday-routes h1 {
    color: var(--primary-color);
}

/* Route meta informatie */
.route-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
    color: #666;
    font-size: 0.9rem;
}

.route-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.route-meta span::before {
    content: '🚴';
    font-size: 1rem;
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .routes-info {
        padding: 1.5rem;
        margin: 1.5rem 1rem;
    }

    .route-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .sunday-routes {
        margin-top: 3rem;
        padding-top: 3rem;
    }
}

.route-content .btn {
    display: inline-block;
    background-color: #007984;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #007984;
    text-align: center;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.route-content .btn:hover {
    background-color: white;
    color: #007984;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.route-content .btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
} 
