/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --gray-dark: #1a1a1a;
    --gray-medium: #333333;
    --gray-light: #666666;
    --gray-lighter: #999999;
    --gray-bg: #0a0a0a;
    --border-color: #2a2a2a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--white);
    background: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 8rem;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-subtitle h2 {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.ampersand {
    font-size: 2rem;
    font-weight: 300;
    opacity: 0.5;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 3rem;
    opacity: 0.7;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    border: 1px solid var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--black);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover {
    color: var(--white);
    border-color: var(--white);
}

.cta-button:hover::before {
    left: 0;
}

/* Sections */
.section {
    padding: 120px 0;
    position: relative;
}

.section-alt {
    background: var(--gray-bg);
}

.section-title {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 5rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--white);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: transparent;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.info-card:hover {
    border-color: var(--white);
    transform: translateY(-5px);
}

.card-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--gray-medium);
    line-height: 1;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card p {
    color: var(--gray-lighter);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Feest Grid */
.feest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feest-card {
    background: transparent;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feest-card:hover {
    border-color: var(--white);
    transform: translateX(10px);
}

.feest-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feest-card p {
    color: var(--gray-lighter);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.team-member {
    background: transparent;
    text-align: center;
    transition: all 0.3s ease;
}

.member-image {
    width: 300px;
    height: 300px;
    margin: 0 auto 2rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
    position: relative;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.team-member:hover .member-image {
    border-color: var(--white);
}

.team-member:hover .member-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
    animation: glitch 0.3s ease-in-out;
}

.team-member h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-age {
    color: var(--gray-lighter);
    font-weight: 400;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.member-bio {
    color: var(--gray-lighter);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 400px;
    margin: 0 auto;
}

.about-text {
    max-width: 800px;
    margin: 4rem auto 0;
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-lighter);
    line-height: 1.8;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

/* Kleinere albums specifiek voor album items */
.gallery-grid .album-item {
    min-width: 0; /* Zorg dat items kunnen krimpen */
}

/* Maak album items kleiner dan normale gallery items - vierkant formaat */
.gallery-item.album-item {
    aspect-ratio: 1/1 !important; /* Vierkant in plaats van 4/3 */
    max-width: 280px !important; /* Limiteer maximale breedte */
    margin: 0 auto; /* Centreer albums */
}

/* Zorg dat albums duidelijk kleiner zijn op desktop */
@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .gallery-item.album-item {
        max-width: 250px !important;
    }
}

.gallery-item {
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    border-color: var(--white);
    transform: scale(1.02);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-placeholder {
    background: var(--gray-medium);
}

.gallery-icon {
    font-size: 3rem;
    color: var(--gray-light);
    font-weight: 300;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-icon {
    color: var(--white);
    transform: rotate(45deg);
}

/* Album Items */
.album-item {
    position: relative;
    cursor: pointer;
}

.album-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 1.5rem 1rem 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-item:hover .album-overlay {
    opacity: 1;
}

.album-title {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.album-count {
    color: var(--gray-lighter);
    font-size: 0.9rem;
    margin: 0;
}

/* Album Modal */
.album-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
}

.album-modal.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.album-modal-content {
    position: relative;
    width: 95%;
    max-width: 1400px;
    max-height: 95vh;
    margin: auto;
    padding: 2rem;
    background: var(--black);
    border: 1px solid var(--border-color);
    animation: modalExpand 0.3s ease-out;
}

@keyframes modalExpand {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.album-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.album-modal-close:hover {
    color: var(--gray-lighter);
}

.album-modal-title {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.album-modal-photos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    max-height: 75vh;
    overflow-y: auto;
    padding: 1rem 0;
}

.album-modal-photos img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--border-color);
}

.album-modal-photos img:hover {
    transform: scale(1.08);
    border-color: var(--white);
}

.album-modal-prev,
.album-modal-next {
    display: none; /* Verborgen omdat we een grid view gebruiken */
}

/* Lightbox voor individuele foto's */
.photo-lightbox {
    display: none;
    position: fixed;
    z-index: 10002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.98);
    align-items: center;
    justify-content: center;
}

.photo-lightbox.active {
    display: flex;
}

.photo-lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.photo-lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--white);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 10003;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.video-item {
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
    aspect-ratio: 16/9;
}

.video-item:hover {
    border-color: var(--white);
    transform: scale(1.02);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.video-item:hover .video-placeholder {
    background: var(--gray-medium);
}

.play-icon {
    font-size: 4rem;
    color: var(--white);
    font-weight: 300;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.video-item:hover .play-icon {
    transform: scale(1.2);
}

/* Extra Grid */
.extra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.extra-card {
    background: transparent;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.extra-card:hover {
    border-color: var(--white);
    transform: translateY(-5px);
}

.extra-image {
    width: 100%;
    height: 250px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.extra-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.extra-card:hover .extra-image img {
    transform: scale(1.05);
}

.extra-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.extra-card p {
    color: var(--gray-lighter);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Werkwijze */
.werkwijze-content {
    max-width: 1200px;
    margin: 0 auto;
}

.werkwijze-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.werkwijze-content h3:first-child {
    margin-top: 0;
}

.werkwijze-content p {
    color: var(--gray-lighter);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    text-align: justify;
}

.werkwijze-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.werkwijze-card {
    background: transparent;
    padding: 3rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.werkwijze-card:hover {
    border-color: var(--white);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.02);
}

.werkwijze-card h3 {
    margin-top: 0;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.werkwijze-card p {
    margin-bottom: 0;
}

.werkwijze-note {
    margin-top: 3rem;
    padding: 2rem;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.01);
    text-align: center;
    font-size: 1.05rem;
    color: var(--gray-lighter);
    line-height: 1.9;
}

.werkwijze-note:last-child {
    margin-bottom: 0;
}

/* Verhuur */
.verhuur-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.verhuur-content > p {
    font-size: 1.1rem;
    color: var(--gray-lighter);
    margin-bottom: 4rem;
    line-height: 1.8;
}

.verhuur-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.verhuur-item {
    background: transparent;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.verhuur-item:hover {
    border-color: var(--white);
    transform: translateY(-5px);
}

.verhuur-image {
    width: 100%;
    height: 250px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.verhuur-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.verhuur-item:hover .verhuur-image img {
    transform: scale(1.05);
}

.verhuur-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.verhuur-item p {
    color: var(--gray-lighter);
    font-size: 0.9rem;
    line-height: 1.8;
}

.verhuur-note {
    margin-top: 3rem;
    font-style: italic;
    color: var(--gray-lighter);
    font-size: 0.95rem;
}

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info > p {
    color: var(--gray-lighter);
    margin-bottom: 3rem;
    font-size: 1rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--gray-lighter);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.contact-item p {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 400;
}

.contact-form {
    background: transparent;
    padding: 0;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 0;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.02);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-light);
}

.submit-button {
    width: 100%;
    padding: 18px;
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--black);
    transition: left 0.3s ease;
    z-index: -1;
}

.submit-button:hover {
    color: var(--white);
    border-color: var(--white);
}

.submit-button:hover::before {
    left: 0;
}

/* Footer */
.footer {
    background: var(--gray-bg);
    color: var(--gray-lighter);
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
}

.footer p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes glitch {
    0% {
        transform: scale(1.05) translate(0);
        filter: grayscale(0%) brightness(1);
    }
    10% {
        transform: scale(1.05) translate(-3px, 3px);
        filter: grayscale(0%) brightness(1.2) hue-rotate(90deg);
    }
    20% {
        transform: scale(1.05) translate(3px, -3px);
        filter: grayscale(0%) brightness(0.8) hue-rotate(180deg);
    }
    30% {
        transform: scale(1.05) translate(-3px, -3px);
        filter: grayscale(0%) brightness(1.1) hue-rotate(270deg);
    }
    40% {
        transform: scale(1.05) translate(3px, 3px);
        filter: grayscale(0%) brightness(0.9) hue-rotate(360deg);
    }
    50% {
        transform: scale(1.05) translate(-2px, 2px);
        filter: grayscale(0%) brightness(1.05) hue-rotate(90deg);
    }
    60% {
        transform: scale(1.05) translate(2px, -2px);
        filter: grayscale(0%) brightness(0.95) hue-rotate(180deg);
    }
    70% {
        transform: scale(1.05) translate(-1px, 1px);
        filter: grayscale(0%) brightness(1.02) hue-rotate(270deg);
    }
    80% {
        transform: scale(1.05) translate(1px, -1px);
        filter: grayscale(0%) brightness(0.98) hue-rotate(360deg);
    }
    90% {
        transform: scale(1.05) translate(0, 0);
        filter: grayscale(0%) brightness(1) hue-rotate(0deg);
    }
    100% {
        transform: scale(1.05) translate(0);
        filter: grayscale(0%) brightness(1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .member-image {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 20px;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: var(--black);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        border-right: 1px solid var(--border-color);
        padding: 100px 0;
        gap: 2rem;
        justify-content: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-subtitle h2 {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 80px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .content-grid,
    .feest-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .gallery-item.album-item {
        max-width: 250px;
    }
    
    .video-grid,
    .extra-grid,
    .verhuur-grid,
    .werkwijze-grid {
        grid-template-columns: 1fr;
    }
    
    .werkwijze-card {
        padding: 2rem;
    }
    
    .werkwijze-content h3 {
        font-size: 1.5rem;
    }
    
    .werkwijze-content p {
        font-size: 1rem;
        text-align: left;
    }
    
    .werkwijze-note {
        padding: 1.5rem;
    }
    
    .album-modal-content {
        width: 98%;
        padding: 1.5rem;
        max-height: 90vh;
    }
    
    .album-modal-photos {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
        max-height: 65vh;
    }
    
    .album-modal-photos img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .member-image {
        width: 200px;
        height: 200px;
    }
    
    .album-modal-content {
        width: 100%;
        padding: 1rem;
        max-height: 95vh;
    }
    
    .album-modal-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .album-modal-photos {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.75rem;
        max-height: 70vh;
    }
    
    .album-modal-photos img {
        height: 150px;
    }
    
    .album-modal-close {
        top: 0.5rem;
        right: 1rem;
        font-size: 2rem;
    }
}
