/*
Theme Name: Bossche Nova's
Theme URI: https://www.bossche-novas.nijholt.net
Author: Custom
Description: Custom thema voor De Bossche Nova's koor
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: bossche-novas
*/

/* =============================================
   CSS VARIABELEN
   ============================================= */
:root {
    --paars:        #c084d4;
    --paars-donker: #8b3fa8;
    --paars-licht:  #f0d9f7;
    --donker:       #1a0a24;
    --tekst:        #2d1a3d;
    --wit:          #ffffff;
    --grijs-licht:  #f8f4fa;
    --font-kop:     'Playfair Display', Georgia, serif;
    --font-tekst:   'Lato', Arial, sans-serif;
    --overgang:     0.3s ease;
    --schaduw:      0 4px 20px rgba(140, 63, 168, 0.15);
    --schaduw-groot: 0 8px 40px rgba(140, 63, 168, 0.25);
}

/* =============================================
   RESET & BASIS
   ============================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-tekst);
    color: var(--tekst);
    background-color: var(--wit);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--paars-donker);
    text-decoration: none;
    transition: color var(--overgang);
}

a:hover {
    color: var(--paars);
}

ul {
    list-style: none;
}

/* =============================================
   TYPOGRAFIE
   ============================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-kop);
    color: var(--donker);
    line-height: 1.2;
    margin-bottom: 0.75em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 1.25em;
}

/* =============================================
   HULPKLASSEN
   ============================================= */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.sectie {
    padding: 5rem 0;
}

.sectie-licht {
    background-color: var(--grijs-licht);
}

.sectie-donker {
    background-color: var(--donker);
    color: var(--wit);
}

.sectie-donker h2,
.sectie-donker h3 {
    color: var(--wit);
}

.sectie-titel {
    text-align: center;
    margin-bottom: 3rem;
}

.sectie-titel h2 {
    display: inline-block;
    position: relative;
    padding-bottom: 0.5rem;
}

.sectie-titel h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--paars);
    border-radius: 2px;
}

.sectie-titel p {
    color: #666;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sectie-donker .sectie-titel p {
    color: rgba(255,255,255,0.7);
}

/* Knop stijlen */
.knop {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-family: var(--font-tekst);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all var(--overgang);
    cursor: pointer;
    border: 2px solid transparent;
}

.knop-primair {
    background: var(--paars);
    color: var(--wit);
    border-color: var(--paars);
}

.knop-primair:hover {
    background: var(--paars-donker);
    border-color: var(--paars-donker);
    color: var(--wit);
    transform: translateY(-2px);
    box-shadow: var(--schaduw);
}

.knop-omlijnd {
    background: transparent;
    color: var(--wit);
    border-color: var(--wit);
}

.knop-omlijnd:hover {
    background: var(--wit);
    color: var(--paars-donker);
    transform: translateY(-2px);
}

/* =============================================
   HEADER & NAVIGATIE
   ============================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 10, 36, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    transition: all var(--overgang);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.site-logo img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--paars);
}

.site-logo-tekst {
    font-family: var(--font-kop);
    font-size: 1.2rem;
    color: var(--wit);
    line-height: 1.2;
}

.site-logo-tekst span {
    display: block;
    font-size: 0.75rem;
    color: var(--paars);
    font-family: var(--font-tekst);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Hoofdmenu */
.hoofd-menu {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.hoofd-menu a {
    color: rgba(255,255,255,0.85);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: all var(--overgang);
}

.hoofd-menu a:hover,
.hoofd-menu .current-menu-item > a {
    color: var(--wit);
    background: rgba(192, 132, 212, 0.2);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--wit);
    border-radius: 2px;
    transition: all var(--overgang);
}

.hamburger.actief span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.actief span:nth-child(2) {
    opacity: 0;
}
.hamburger.actief span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobiel menu */
.mobiel-menu {
    display: none;
    flex-direction: column;
    background: var(--donker);
    border-top: 1px solid rgba(192, 132, 212, 0.2);
}

.mobiel-menu.open {
    display: flex;
}

.mobiel-menu a {
    color: rgba(255,255,255,0.85);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-weight: 600;
    transition: all var(--overgang);
}

.mobiel-menu a:hover {
    color: var(--paars);
    padding-left: 2rem;
}

/* =============================================
   HERO SECTIE
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--donker) 0%, #3d1a52 60%, #1a0a24 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 8rem 1.5rem 4rem;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(192, 132, 212, 0.15) 0%, transparent 70%);
}

.hero-noten {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-noot {
    position: absolute;
    font-size: 2rem;
    color: rgba(192, 132, 212, 0.15);
    animation: drijf 8s ease-in-out infinite;
}

.hero-noot:nth-child(1)  { left: 5%;  top: 20%; animation-delay: 0s;   font-size: 1.5rem; }
.hero-noot:nth-child(2)  { left: 15%; top: 70%; animation-delay: 1s;   font-size: 2.5rem; }
.hero-noot:nth-child(3)  { left: 25%; top: 40%; animation-delay: 2s;   font-size: 1rem; }
.hero-noot:nth-child(4)  { left: 75%; top: 25%; animation-delay: 0.5s; font-size: 2rem; }
.hero-noot:nth-child(5)  { left: 85%; top: 65%; animation-delay: 1.5s; font-size: 1.5rem; }
.hero-noot:nth-child(6)  { left: 90%; top: 35%; animation-delay: 3s;   font-size: 1rem; }

@keyframes drijf {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.15; }
    50%       { transform: translateY(-20px) rotate(10deg); opacity: 0.3; }
}

.hero-inhoud {
    position: relative;
    z-index: 1;
    max-width: 750px;
    margin: 0 auto;
}

.hero-logo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 2rem;
    border: 4px solid var(--paars);
    box-shadow: 0 0 40px rgba(192, 132, 212, 0.4);
    animation: gloed 3s ease-in-out infinite;
}

@keyframes gloed {
    0%, 100% { box-shadow: 0 0 40px rgba(192, 132, 212, 0.4); }
    50%       { box-shadow: 0 0 60px rgba(192, 132, 212, 0.7); }
}

.hero h1 {
    color: var(--wit);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-ondertitel {
    color: var(--paars);
    font-family: var(--font-kop);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-style: italic;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.hero-tekst {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 2.5rem;
}

.hero-knoppen {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   OVER ONS SECTIE (homepage)
   ============================================= */
.over-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.over-afbeelding {
    position: relative;
}

.over-afbeelding img {
    border-radius: 12px;
    box-shadow: var(--schaduw-groot);
    width: 100%;
}

.over-afbeelding::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid var(--paars);
    border-radius: 12px;
    z-index: -1;
}

.over-tekst .sectie-titel {
    text-align: left;
}

.over-tekst .sectie-titel h2::after {
    left: 0;
    transform: none;
}

.kenmerken {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.kenmerk {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.kenmerk-icoon {
    width: 40px;
    height: 40px;
    background: var(--paars-licht);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: var(--paars-donker);
}

.kenmerk-tekst h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2em;
    color: var(--donker);
}

.kenmerk-tekst p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

/* =============================================
   AGENDA SECTIE
   ============================================= */
.agenda-lijst {
    display: grid;
    gap: 1.5rem;
}

.agenda-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
    background: var(--wit);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--schaduw);
    border-left: 4px solid var(--paars);
    transition: all var(--overgang);
}

.agenda-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--schaduw-groot);
}

.agenda-datum {
    text-align: center;
    background: var(--paars);
    color: var(--wit);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    min-width: 65px;
}

.agenda-datum .dag {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-kop);
    line-height: 1;
}

.agenda-datum .maand {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

.agenda-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--donker);
}

.agenda-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.agenda-locatie {
    font-size: 0.85rem;
    color: var(--paars-donker);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* =============================================
   FOTO GALLERIJ
   ============================================= */
.gallerij-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.gallerij-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

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

.gallerij-item:hover img {
    transform: scale(1.08);
}

.gallerij-overlay {
    position: absolute;
    inset: 0;
    background: rgba(140, 63, 168, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--overgang);
    font-size: 2rem;
    color: var(--wit);
}

.gallerij-item:hover .gallerij-overlay {
    opacity: 1;
}

/* =============================================
   CONTACT SECTIE
   ============================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-icoon {
    width: 45px;
    height: 45px;
    background: var(--paars);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wit);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-detail h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--paars-donker);
    margin-bottom: 0.2em;
}

.contact-detail p, .contact-detail a {
    color: var(--tekst);
    font-size: 0.95rem;
    margin: 0;
}

/* Contactformulier */
.contact-form {
    background: var(--grijs-licht);
    padding: 2rem;
    border-radius: 12px;
}

.form-groep {
    margin-bottom: 1.25rem;
}

.form-groep label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--tekst);
    margin-bottom: 0.4rem;
}

.form-groep input,
.form-groep textarea,
.form-groep select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0d4ea;
    border-radius: 8px;
    font-family: var(--font-tekst);
    font-size: 0.95rem;
    color: var(--tekst);
    background: var(--wit);
    transition: border-color var(--overgang);
    outline: none;
}

.form-groep input:focus,
.form-groep textarea:focus,
.form-groep select:focus {
    border-color: var(--paars);
    box-shadow: 0 0 0 3px rgba(192, 132, 212, 0.15);
}

.form-groep textarea {
    resize: vertical;
    min-height: 130px;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--donker);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-over .site-logo {
    margin-bottom: 1rem;
}

.footer-over p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-kol h4 {
    color: var(--wit);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-kol h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--paars);
}

.footer-kol ul li {
    margin-bottom: 0.6rem;
}

.footer-kol ul li a {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    transition: all var(--overgang);
}

.footer-kol ul li a:hover {
    color: var(--paars);
    padding-left: 0.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid rgba(192, 132, 212, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: all var(--overgang);
    text-decoration: none;
}

.social-link:hover {
    background: var(--paars);
    border-color: var(--paars);
    color: var(--wit);
    transform: translateY(-3px);
}

.footer-bodem {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bodem a {
    color: var(--paars);
}

/* =============================================
   PAGINA HEADER (inner pages)
   ============================================= */
.pagina-header {
    background: linear-gradient(135deg, var(--donker) 0%, #3d1a52 100%);
    padding: 9rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pagina-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(192, 132, 212, 0.1) 0%, transparent 70%);
}

.pagina-header h1 {
    color: var(--wit);
    position: relative;
    z-index: 1;
}

.pagina-header p {
    color: rgba(255,255,255,0.7);
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
}

.broodkruimel {
    position: relative;
    z-index: 1;
    margin-top: 1rem;
    font-size: 0.85rem;
}

.broodkruimel a {
    color: var(--paars);
}

.broodkruimel span {
    color: rgba(255,255,255,0.4);
    margin: 0 0.5rem;
}

/* =============================================
   WORDPRESS CONTENT
   ============================================= */
.wp-content {
    padding: 5rem 0;
}

.entry-content h2,
.entry-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.entry-content ul,
.entry-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25em;
}

.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }

.entry-content blockquote {
    border-left: 4px solid var(--paars);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: var(--paars-licht);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
    .over-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .over-afbeelding {
        max-width: 500px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .hoofd-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .sectie {
        padding: 3.5rem 0;
    }

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

    .agenda-item {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
    }

    .agenda-locatie {
        grid-column: 2;
    }

    .footer-bodem {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-knoppen {
        flex-direction: column;
        align-items: center;
    }
}
