body
{
   background-color: #FFFFFF;
   color: #000000;
   font-family: Arial;
   font-weight: normal;
   font-size: 16px;
   line-height: 1.1875;
   margin: 0;
   padding: 0;
}
        /* Algemene stijlen */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primair: #1e3a8a;
            --secundair: #c53030;
            --accent: #ecc94b;
            --licht: #f8fafc;
            --donker: #0f172a;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--donker);
            background-color: var(--licht);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        img {
            max-width: 100%;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--secundair);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 16px;
        }
        
        .btn:hover {
            background-color: #9b2c2c;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            position: relative;
            color: var(--primair);
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: var(--secundair);
            margin: 15px auto;
            border-radius: 2px;
        }
        
        /* Header & navigatie */
        header {
            background-color: rgba(15, 23, 42, 0.95);
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: var(--accent);
        }
        
        .logo i {
            margin-right: 10px;
            color: var(--accent);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            padding: 5px 0;
        }
        
        nav ul li a:hover {
            color: var(--accent);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
        }
        
        /* Hero sectie */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1470225620780-dba8ba36b745?ixlib=rb-4.0.3') no-repeat center center/cover;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            padding-top: 70px;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        .btn-secundair {
            background-color: transparent;
            border: 2px solid white;
        }
        
        .btn-secundair:hover {
            background-color: rgba(255,255,255,0.1);
        }
        
        /* Over sectie */
        .over {
            background-color: white;
        }
        
        .over-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .over-img {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .over-tekst {
            flex: 1;
        }
        
        .over-tekst h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--primair);
        }
        
        .over-tekst p {
            margin-bottom: 20px;
        }
        
        .kenmerken {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 30px 0;
        }
        
        .kenmerk {
            display: flex;
            align-items: center;
        }
        
        .kenmerk i {
            color: var(--secundair);
            font-size: 1.5rem;
            margin-right: 15px;
        }
        
        /* Muziek sectie */
        .muziek {
            background-color: #f1f5f9;
        }
        
        .muziek-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .nummer {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        
        .nummer:hover {
            transform: translateY(-10px);
        }
        
        .nummer-img {
            height: 200px;
            overflow: hidden;
        }
        
        .nummer-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .nummer:hover .nummer-img img {
            transform: scale(1.1);
        }
        
        .nummer-info {
            padding: 20px;
        }
        
        .nummer-info h3 {
            margin-bottom: 10px;
            color: var(--primair);
        }
        
        .audio-player {
            width: 100%;
            margin-top: 15px;
            background: #e2e8f0;
            border-radius: 5px;
            padding: 10px;
        }
        
        /* Video's sectie */
        .videos-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .video-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .video-item iframe {
            width: 100%;
            height: 250px;
            display: block;
            border: none;
        }
        
        /* Agenda sectie */
        .agenda {
            background-color: #f1f5f9;
        }
        
        .agenda-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .agenda-item {
            display: flex;
            border-left: 4px solid var(--secundair);
            background: white;
            margin-bottom: 20px;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            overflow: hidden;
        }
        
        .agenda-datum {
            background-color: var(--primair);
            color: white;
            padding: 20px;
            min-width: 120px;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .agenda-datum .dag {
            font-size: 2rem;
            font-weight: 700;
            line-height: 1;
        }
        
        .agenda-datum .maand {
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .agenda-info {
            padding: 20px;
            flex: 1;
        }
        
        .agenda-info h3 {
            margin-bottom: 5px;
            color: var(--primair);
        }
        
        .agenda-info .locatie {
            color: var(--secundair);
            font-weight: 600;
            margin-bottom: 10px;
            display: block;
        }
        
        /* Contact sectie */
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }
        
        .contact-info h3 {
            color: var(--primair);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        
        .contact-gegevens {
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            margin-bottom: 15px;
        }
        
        .contact-item i {
            color: var(--secundair);
            font-size: 1.2rem;
            width: 30px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: var(--primair);
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: var(--secundair);
            transform: translateY(-3px);
        }
        
        .contact-form .form-group {
            margin-bottom: 20px;
        }
        
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #cbd5e1;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
        }
        
        .contact-form textarea {
            height: 150px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background-color: var(--donker);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-col h4 {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secundair);
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 10px;
        }
        
        .footer-col ul li a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-col ul li a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #94a3b8;
        }
        
        /* Responsive design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .over-content {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            .hamburger {
                display: block;
                color: white;
                font-size: 1.5rem;
            }
            
            nav ul {
                position: absolute;
                top: 70px;
                left: 0;
                background: var(--primair);
                width: 100%;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: all 0.4s ease;
            }
            
            nav ul.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: center;
            }
            
            .kenmerken {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .agenda-item {
                flex-direction: column;
            }
            
            .agenda-datum {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
        }
    