/*
Theme Name: Chanterelle Custom Theme
Author: Chanterelle
Version: 1.0
*/

        :root {
            --chanterelle-red: #8b0000; /* De bordeauxrode kleur van de huidige site */
            --dark-grey: #333333;
            --light-grey: #f9f9f9;
            --white: #ffffff;
        }

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

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.7;
            color: var(--dark-grey);
            background-color: var(--white);
            font-size:1.2rem;
        }

        h1, h2, h3 { 
            font-family: 'Crimson Text', serif; 
            color: var(--chanterelle-red);
        }

        /* Navigatie */
        nav {
            background: var(--white);
            padding: 1.2rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }

        .logo-text { 
            font-size: 1.6rem; 
            font-weight: 700; 
            color: var(--chanterelle-red);
            text-decoration: none;
            font-family: 'Crimson Text', serif;
        }

        nav ul { display: flex; list-style: none; }
        nav ul li { margin-left: 25px; }
        nav ul li a { 
            text-decoration: none; 
            color: var(--dark-grey); 
            font-weight: 400; 
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            transition: 0.3s; 
        }
        nav ul li a:hover { color: var(--chanterelle-red); }

        /* Hero Sectie */
        .hero {
            height: 70vh;
            /* background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1516280440614-37939bbacd81?auto=format&fit=crop&w=1500&q=80'); */ /* Tijdelijke koorfoto */
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('header_chanterelle.jpg');
            background: url('header_chanterelle.jpg');
                  background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: var(--white);
            text-align: center;
            padding: 0 20px;
        }

        .hero h1 { color: var(--white); font-size: 3.5rem; margin-bottom: 10px; }
        .hero p { font-size: 1.2rem; font-style: italic; }

        /* Algemene Sectie Stijl */
        section { padding: 80px 10%; max-width: 1200px; margin: 0 auto; }

.welkom .wp-block-columns,
.repertoire .wp-block-columns {
    align-items: flex-start;
}

        div.wp-block-group.welkom,
        div.wp-block-group.agenda, 
        div.wp-block-group.repertoire, 
        div.wp-block-group.repetities,
        div.wp-block-group.fotos,
        div.wp-block-group.bestuur 
        { padding: 80px 10%; max-width: 1200px; margin: 0 auto; }

        div.wp-block-group.agenda,
        div.wp-block-group.repetities {
        background: var(--light-grey);
    }

a.gallery {
    text-decoration:none;
    
}
        .section-title { text-align: center; margin-bottom: 50px; }
        .section-title h2 { font-size: 2.8rem; }
        .section-title .divider { 
            width: 80px; height: 3px; background: var(--chanterelle-red); margin: 15px auto; 
        }

        /* Content Blocks */
        .intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
        
        .info-card {
            background: var(--light-grey);
            padding: 40px;
            border-left: 5px solid var(--chanterelle-red);
            margin-bottom: 20px;
        }

        /* Bestuur / Contact Lijst */
        .contact-info { list-style: none; margin-top: 20px; }
        .contact-info li { margin-bottom: 10px; padding-bottom: 5px; border-bottom: 1px solid #eee; }
        .contact-info strong { color: var(--chanterelle-red); }

        /* Footer */
        footer {
            background: var(--dark-grey);
            color: var(--white);
            padding: 60px 10% 20px;
            text-align: center;
        }

        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; text-align: left; }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .intro-grid { grid-template-columns: 1fr; }
            nav { flex-direction: column; padding: 1rem; }
            nav ul { margin-top: 20px; flex-wrap: wrap; justify-content: center; }
            nav ul li { margin: 5px 10px; }
        }




/* welkom blok */

.welkom {
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.divider {
    width: 60px;
    height: 3px;
    background: #000;
    margin: 10px auto;
    border: none;
}

.intro-grid {
    gap: 30px;
}

.info-card {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
}