/* Dark Carnival Neon - Night Fair Theme */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #FF2E63;
    --secondary-orange: #39FF14;
    --dark-orange: #FF1744;
    --light-bg: #1a1a1a;
    --dark-bg: #0a0a0a;
    --text-dark: #f5f5f5;
    --text-light: #c0c0c0;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(255, 46, 99, 0.3);
    --shadow-lg: 0 10px 25px rgba(255, 46, 99, 0.5);
    --neon-red: #FF2E63;
    --neon-green: #39FF14;
    --neon-pink: #FF10F0;
    --neon-blue: #00D9FF;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--dark-bg);
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 46, 99, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(57, 255, 20, 0.05) 0%, transparent 50%);
    transition: background-color 0.4s ease;
}

/* Smooth color transitions for all themed elements */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 2px 20px rgba(255, 46, 99, 0.3);
    border-bottom: 2px solid var(--neon-red);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-brand .logo,
.nav-brand .logo-round {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--neon-red);
    box-shadow: 0 0 20px rgba(255, 46, 99, 0.6);
    max-width: 60px !important;
    max-height: 60px !important;
    flex-shrink: 0;
}

.brand-text h1 {
    font-size: 1.8rem;
    color: var(--neon-red);
    margin: 0;
    line-height: 1.2;
    text-shadow:
        0 0 10px rgba(255, 46, 99, 0.8),
        0 0 20px rgba(255, 46, 99, 0.6),
        0 0 30px rgba(255, 46, 99, 0.4);
}

.brand-text .tagline {
    font-size: 0.9rem;
    color: var(--neon-green);
    display: block;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.6);
}

/* Knipperende neon titel in navigatie */
.nav-neon-title,
.brand-title-neon {
    animation: neon-flicker 3s infinite alternate;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #f0f0f0;
    font-weight: 600;
    transition: all 0.3s;
    padding: 0.5rem 0;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--neon-green);
    text-shadow: 0 0 15px rgba(57, 255, 20, 1), 0 0 25px rgba(57, 255, 20, 0.6);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-orange);
    transition: 0.3s;
}

/* Hero Section - Neon Night Carnival */
.hero {
    min-height: 650px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, transparent 0%, rgba(255, 46, 99, 0.1) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(57, 255, 20, 0.1) 50%, transparent 100%);
    background-size: 200px 200px;
    opacity: 0.3;
    animation: neon-grid 20s infinite linear;
}

@keyframes neon-grid {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 200px 200px, 200px -200px; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 46, 99, 0.4) 3px, transparent 3px),
        radial-gradient(circle at 85% 15%, rgba(57, 255, 20, 0.4) 4px, transparent 4px),
        radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 0.4) 2px, transparent 2px),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.4) 5px, transparent 5px),
        radial-gradient(circle at 90% 85%, rgba(255, 46, 99, 0.4) 3px, transparent 3px),
        radial-gradient(circle at 15% 50%, rgba(57, 255, 20, 0.4) 4px, transparent 4px),
        radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.4) 3px, transparent 3px),
        radial-gradient(circle at 60% 90%, rgba(255, 46, 99, 0.4) 2px, transparent 2px);
    background-size: 300px 300px;
    opacity: 1;
    animation: neon-float 25s infinite ease-in-out;
    filter: blur(1px);
}

@keyframes neon-float {
    0%, 100% {
        background-position: 0 0, 100px 50px, 50px 100px, 150px 0, 200px 150px, 0 75px, 125px 25px, 75px 125px;
        opacity: 1;
    }
    50% {
        background-position: 50px 25px, 150px 75px, 25px 150px, 200px 25px, 250px 175px, 25px 100px, 175px 50px, 100px 150px;
        opacity: 0.7;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 2rem;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--neon-red);
    text-shadow:
        0 0 10px rgba(255, 46, 99, 1),
        0 0 20px rgba(255, 46, 99, 0.8),
        0 0 30px rgba(255, 46, 99, 0.6),
        0 0 40px rgba(255, 46, 99, 0.4),
        0 0 70px rgba(255, 46, 99, 0.2);
    letter-spacing: 0.1em;
    animation: neon-flicker 3s infinite alternate;
}

/* Hero logo (breed logo in hero) */
.hero-logo {
    max-width: 600px;
    width: 90%;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(57, 255, 20, 0.5)) drop-shadow(0 0 40px rgba(255, 46, 99, 0.3));
}

@keyframes neon-flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow:
            0 0 10px rgba(255, 46, 99, 1),
            0 0 20px rgba(255, 46, 99, 0.8),
            0 0 30px rgba(255, 46, 99, 0.6),
            0 0 40px rgba(255, 46, 99, 0.4),
            0 0 70px rgba(255, 46, 99, 0.2);
    }
    20%, 24%, 55% {
        text-shadow:
            0 0 5px rgba(255, 46, 99, 0.8),
            0 0 10px rgba(255, 46, 99, 0.6);
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--neon-green);
    text-shadow:
        0 0 10px rgba(57, 255, 20, 1),
        0 0 20px rgba(57, 255, 20, 0.6),
        0 0 30px rgba(57, 255, 20, 0.4);
    letter-spacing: 0.05em;
}

/* Buttons - Neon Style */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid var(--neon-green);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: rgba(57, 255, 20, 0.1);
    color: var(--neon-green);
    box-shadow:
        0 0 10px rgba(57, 255, 20, 0.5),
        inset 0 0 10px rgba(57, 255, 20, 0.2);
}

.btn-primary:hover {
    background: rgba(57, 255, 20, 0.2);
    transform: translateY(-2px);
    box-shadow:
        0 0 20px rgba(57, 255, 20, 0.8),
        0 0 40px rgba(57, 255, 20, 0.4),
        inset 0 0 20px rgba(57, 255, 20, 0.3);
}

.btn-secondary {
    background: rgba(255, 46, 99, 0.1);
    color: var(--neon-red);
    border-color: var(--neon-red);
    box-shadow:
        0 0 10px rgba(255, 46, 99, 0.5),
        inset 0 0 10px rgba(255, 46, 99, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 46, 99, 0.2);
    transform: translateY(-2px);
    box-shadow:
        0 0 20px rgba(255, 46, 99, 0.8),
        0 0 40px rgba(255, 46, 99, 0.4),
        inset 0 0 20px rgba(255, 46, 99, 0.3);
}

/* Sections - Dark Theme */
.section {
    padding: 80px 0;
}

.section-alt {
    background: rgba(26, 26, 26, 0.5);
    border-top: 1px solid rgba(255, 46, 99, 0.2);
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--neon-red);
    margin-bottom: 1rem;
    text-shadow:
        0 0 10px rgba(255, 46, 99, 0.8),
        0 0 20px rgba(255, 46, 99, 0.5);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #f0f0f0;
    margin-bottom: 3rem;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 46, 99, 0.3);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 46, 99, 0.2);
    transition: all 0.3s;
    text-align: center;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(57, 255, 20, 0.5);
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(57, 255, 20, 0.4);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 46, 99, 0.6));
}

.card h3 {
    color: var(--neon-green);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.6);
}

.card p {
    color: #f0f0f0;
    margin-bottom: 0.5rem;
}

/* Program Section - Neon */
.program-day {
    background: rgba(26, 26, 26, 0.6);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 46, 99, 0.3);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 46, 99, 0.2);
}

.program-day h3 {
    color: var(--neon-red);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--neon-green);
    padding-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 46, 99, 0.6);
}

.program-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
}

.program-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.program-item .time {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--neon-red);
    text-shadow: 0 0 8px rgba(255, 46, 99, 0.5);
}

.program-item .activity h4 {
    color: var(--neon-green);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.5);
}

.program-item .activity p {
    margin-bottom: 0.5rem;
    color: #f0f0f0;
}

.program-item .activity p strong {
    color: var(--neon-green);
    text-shadow: 0 0 5px rgba(57, 255, 20, 0.4);
}

/* Prizes Table */
.prizes-section {
    background: rgba(26, 26, 26, 0.6);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    border: 1px solid rgba(255, 46, 99, 0.3);
    box-shadow: 0 0 20px rgba(255, 46, 99, 0.2);
}

.prizes-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.prizes-table tr {
    border-bottom: 1px solid rgba(255, 46, 99, 0.2);
}

.prizes-table td {
    padding: 1rem;
    font-size: 1.1rem;
    color: #f0f0f0;
}

.prize-note {
    text-align: center;
    color: var(--neon-green);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.5);
}

.prizes-section h3 {
    color: var(--neon-red);
    text-shadow: 0 0 10px rgba(255, 46, 99, 0.6);
}

.prizes-table td:last-child {
    color: var(--neon-green);
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.4);
    font-weight: 600;
    text-align: right;
}

.prizes-table td strong {
    color: #f0f0f0 !important;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.prizes-table td:first-child strong {
    color: #f0f0f0 !important;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-text h2 {
    color: var(--neon-red);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 46, 99, 0.6);
}

.content-text h3 {
    color: var(--neon-red);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px rgba(255, 46, 99, 0.5);
}

.content-text h4 {
    color: var(--neon-green);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.5);
}

.content-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #f0f0f0;
    line-height: 1.8;
}

.content-text p strong {
    color: var(--neon-green);
}

.content-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.text-center {
    text-align: center;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-info h3,
.contact-links h3 {
    color: var(--neon-red);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 46, 99, 0.6);
}

.contact-item {
    margin: 1rem 0;
    font-size: 1.1rem;
    color: #f0f0f0;
}

.contact-item strong {
    color: var(--neon-green);
    text-shadow: 0 0 5px rgba(57, 255, 20, 0.4);
}

.contact-info p {
    color: #f0f0f0;
    margin-bottom: 1rem;
}

.contact-links ul {
    list-style: none;
}

.contact-links li {
    margin: 0.8rem 0;
}

.contact-links a {
    color: var(--neon-green);
    text-decoration: none;
    transition: all 0.3s;
    text-shadow: 0 0 5px rgba(57, 255, 20, 0.4);
}

.contact-links a:hover {
    color: var(--neon-red);
    text-shadow: 0 0 10px rgba(255, 46, 99, 0.6);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    margin: 0.5rem 0;
    color: #f0f0f0;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-brand .logo,
    .nav-brand .logo-round {
        width: 50px !important;
        height: 50px !important;
        max-width: 50px !important;
        max-height: 50px !important;
    }

    .brand-text h1 {
        font-size: 1.4rem;
    }

    .brand-text .tagline {
        font-size: 0.8rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(255, 46, 99, 0.5);
        padding: 2rem 0;
        border-bottom: 3px solid var(--neon-red);
    }

    .nav-menu a {
        padding: 1rem 2rem;
        display: block;
        border-bottom: 1px solid rgba(57, 255, 20, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-logo {
        max-width: 400px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .program-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .program-item .time {
        font-size: 1.1rem;
    }

    .prizes-table td {
        font-size: 0.95rem;
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 400px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-logo {
        max-width: 300px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Photo Albums Grid */
.photo-albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.photo-album-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: rgba(26, 26, 26, 0.6);
    border: 2px solid rgba(255, 46, 99, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

.photo-album-card:hover {
    border-color: var(--neon-red);
    box-shadow: 0 0 30px rgba(255, 46, 99, 0.8);
    transform: translateY(-8px);
}

.album-preview {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.photo-album-card:hover .album-preview img {
    transform: scale(1.1);
}

.album-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-album-card:hover .album-overlay {
    opacity: 1;
}

.album-info h3 {
    color: var(--neon-green);
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 0 15px rgba(57, 255, 20, 0.8);
    font-weight: 900;
}

.album-info p {
    color: #f0f0f0;
    font-size: 1rem;
    margin: 0 0 1rem 0;
    opacity: 0.9;
}

.album-open-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--neon-red), var(--neon-green));
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 0 20px rgba(255, 46, 99, 0.6);
    transition: all 0.3s ease;
}

.photo-album-card:hover .album-open-btn {
    box-shadow: 0 0 30px rgba(255, 46, 99, 1);
    transform: translateX(5px);
}

/* Hidden galleries data */
#photo-albums-data {
    display: none !important;
}

/* WordPress Gallery Support (old and Gutenberg) */
.djerken-gallery .gallery,
.djerken-gallery .wp-block-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.djerken-gallery .gallery-item,
.djerken-gallery .wp-block-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
    background: rgba(26, 26, 26, 0.6);
    border: 2px solid rgba(255, 46, 99, 0.3);
    transition: all 0.3s;
}

.djerken-gallery .gallery-item:hover,
.djerken-gallery .wp-block-image:hover {
    border-color: var(--neon-red);
    box-shadow: 0 0 20px rgba(255, 46, 99, 0.6);
    transform: translateY(-5px);
}

.djerken-gallery .gallery-item a,
.djerken-gallery .wp-block-image a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.djerken-gallery .gallery-item img,
.djerken-gallery .wp-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.djerken-gallery .gallery-item:hover img,
.djerken-gallery .wp-block-image:hover img {
    transform: scale(1.1);
}

.djerken-gallery .gallery-caption,
.djerken-gallery .wp-block-image figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--white);
    padding: 1rem;
    font-size: 0.95rem;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.djerken-gallery .gallery-item:hover .gallery-caption,
.djerken-gallery .wp-block-image:hover figcaption {
    transform: translateY(0);
}

/* WordPress native gallery columns */
.djerken-gallery .gallery-columns-1 { grid-template-columns: repeat(1, 1fr); }
.djerken-gallery .gallery-columns-2 { grid-template-columns: repeat(2, 1fr); }
.djerken-gallery .gallery-columns-3 { grid-template-columns: repeat(3, 1fr); }
.djerken-gallery .gallery-columns-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
    .photo-albums-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .album-info h3 {
        font-size: 1.2rem;
    }

    .album-info p {
        font-size: 0.9rem;
    }

    .album-open-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .djerken-gallery .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .djerken-gallery .gallery-columns-1,
    .djerken-gallery .gallery-columns-2,
    .djerken-gallery .gallery-columns-3,
    .djerken-gallery .gallery-columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .photo-albums-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .album-info h3 {
        font-size: 1.1rem;
    }

    .djerken-gallery .gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .djerken-gallery .gallery-columns-1,
    .djerken-gallery .gallery-columns-2,
    .djerken-gallery .gallery-columns-3,
    .djerken-gallery .gallery-columns-4 {
        grid-template-columns: 1fr;
    }
}
