/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4a90e2;
    --secondary-color: #f39c12;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-color: #333;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.8), rgba(243, 156, 18, 0.7)), url('pictures/voorpagina.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 8rem 2rem;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Video Section */
.video-section {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.video-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.section-intro {
    text-align: center;
    max-width: 850px;
    margin: -1.5rem auto 2.5rem;
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
}

.section-actions {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.media-layout {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

.media-text .section-intro {
    margin-top: 0;
}

.media-video .video-container {
    max-width: 100%;
}

@media (min-width: 992px) {
    .media-layout {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
        align-items: start;
    }
}

.links-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem auto 0;
    max-width: 900px;
    display: grid;
    gap: 1rem;
}

.links-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--light-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    background-color: var(--white);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.links-list a:hover {
    transform: translateY(-2px);
    border-color: rgba(74, 144, 226, 0.4);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.link-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    flex-shrink: 0;
    background-color: var(--light-color);
}

.info-highlight {
    margin: 1.5rem auto 0;
    padding: 1.25rem 1.5rem;
    max-width: 850px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.12), rgba(243, 156, 18, 0.12));
    border: 1px solid rgba(74, 144, 226, 0.2);
    text-align: center;
}

.info-highlight p {
    margin: 0;
    font-weight: 600;
    color: var(--dark-color);
}

.warning-highlight {
    margin: 1.5rem auto 0;
    padding: 1.35rem 1.6rem;
    max-width: 850px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.22), rgba(243, 156, 18, 0.2));
    border: 2px solid rgba(231, 76, 60, 0.6);
    text-align: center;
    box-shadow: 0 14px 30px rgba(231, 76, 60, 0.18);
    position: relative;
    padding-left: 4.2rem;
}

.warning-highlight p {
    margin: 0;
    font-weight: 800;
    color: #8f1c12;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.warning-highlight::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 50%;
    width: 40px;
    height: 40px;
    background: url('pictures/waarschuwing.png') center / contain no-repeat;
    transform: translateY(-50%);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--light-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form .btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    width: 100%;
}

.contact-form .btn-primary:hover {
    background-color: #357abd;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--dark-color);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        background-attachment: scroll;
        padding: 6rem 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .activities-grid {
        grid-template-columns: 1fr;
    }
}
