/* Default CSS */
/* Generated by the CoffeeCup HTML Editor - www.coffeecup.com */

body {  }/* ------------------------------
   BASIS
------------------------------ */

* {
    box-sizing: border-box;
}

#header-wrapper {
    position: relative;
    z-index: 10000;
}

#nav {
    z-index: 10001;
}

/* Fix voor het mobiele menu (indien van toepassing in jouw template) */
.dropotron {
    z-index: 10002;
}
body {
    margin: 0;
    font-family: system-ui, sans-serif;
    line-height: 1.6;
    color: #111;
    background: #fff;
}   <style>
        /* Universele Grid Systeem aangepast voor tekst */
        .media-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px; /* Iets meer ruimte voor de poëzie */
            margin-top: 2rem;
            align-items: start;
        }

        .media-grid figure { margin: 0; width: 100%; }

        .media-grid img {
            width: 100%; height: auto; display: block;
            border-radius: 2px; transition: opacity 0.3s;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }

        .media-grid img:hover { opacity: 0.9; }

        .media-grid figcaption {
            text-align: left; /* Tekst links uitlijnen voor betere leesbaarheid poëzie */
            font-size: 0.85em;
            margin-top: 15px;
            color: #444;
            line-height: 1.6;
            border-top: 1px solid #eee;
            padding-top: 10px;
        }

        .poem-title {
            font-weight: bold;
            display: block;
            margin-bottom: 8px;
            color: #000;
        }

        /* Menu & Logo Fix */
        #header-wrapper { position: relative; z-index: 10000; }
        #site-logo { max-width: 280px; height: auto; display: block; margin: 0 auto; }
        #navPanel, .dropotron { z-index: 10001 !important; }
		
		/* Zorg dat Dropotron weet waar hij zich aan moet vastklampen */
#nav > ul > li {
    position: relative;
}

/* Submenu altijd rechts uitlijnen */
.dropotron {
    left: auto !important;
    right: 0 !important;
}

/* Kleine afstand tussen Menu en submenu */
.dropotron.level-0 {
    margin-top: 0.5rem;
}

/* Zorg dat het menu boven alle content blijft */
#header-wrapper,
#nav,
.dropotron {
    z-index: 10000;
}

/* Logo en header consistent */
#site-logo {
    max-width: 280px;
    height: auto;
    display: block;
    margin: 0 auto;
}



/* Logo styling */
        #site-logo { 
            max-width: 320px; 
            height: auto; 
            display: block; 
            margin: 0 auto; 
        }
        
        /* Afbeeldingen in kolommen */
        .column-image {
            width: 100%;
            height: auto;
            margin-bottom: 1.5rem;
            display: block;
            border: 1px solid #f0f0f0;
            transition: opacity 0.3s;
        }
        
        .column-image:hover {
            opacity: 0.85;
        }

        /* Tekst styling */
        .intro-text {
            line-height: 1.7;
            text-align: justify;
        }
        
        .contact-info {
            font-size: 0.9em;
            border-top: 1px solid #eee;
            padding-top: 1rem;
            margin-top: 2rem;
        }

        .red-link {
            color: #ff0000 !important;
            font-weight: bold;
            text-decoration: none;
        }




/* ------------------------------
   MAIN CONTENT
------------------------------ */

.content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

h1, h2, h3 {
    font-weight: 600;
    margin-top: 0;
}

/* ------------------------------
   GALLERY GRID
------------------------------ */

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

figure {
    margin: 0;
}

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

figcaption {
    margin-top: 0.7rem;
    font-size: 0.9em;
    white-space: pre-line;
}

/* ------------------------------
   FOOTER
------------------------------ */

.site-footer {
    text-align: center;
    padding: 2rem 0;
    font-size: 0.85em;
    color: #666;
}