/* ===================================
   LIVE MOMENTS GALERIJ - FAUTE BENDT
   Foto en video galerij styling
   Versie: 2025.2
   =================================== */

/* ===================================
   HERO SECTIE
   =================================== */

.live-moments-hero {
    background: var(--bg-primary);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .live-moments-hero {
        padding: 4rem 0 2.5rem;
    }
}

.live-moments-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 165, 165, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.live-moments-hero .container {
    position: relative;
    z-index: 2;
}

.live-moments-hero .jubilee-badge {
    margin-bottom: 2rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .live-moments-hero .jubilee-badge {
        margin-bottom: 1.5rem;
    }
}

/* ===================================
   GALLERY SECTION
   =================================== */

.gallery-section {
    background: var(--bg-secondary);
    padding: 4rem 0;
    position: relative;
    overflow: visible; /* Zorg dat hover effecten zichtbaar blijven */
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 2.5rem 0;
    }
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .gallery-header {
        margin-bottom: 2rem;
    }
}

/* ===================================
   GALLERY GRID - MASONRY LAYOUT
   =================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    grid-auto-flow: dense;
    margin: 0 auto;
    padding-top: 2rem; /* Extra ruimte bovenaan voor hover effect */
    position: relative;
    perspective: 1000px;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.25rem;
        padding-top: 1.5rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding-top: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
        margin: 0 auto;
        padding-top: 1rem;
    }
}

/* ===================================
   GALLERY ITEMS
   =================================== */

.gallery-item {
    position: relative;
    background: var(--bg-primary);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
    perspective: 1000px;
    z-index: 1;
}

@media (max-width: 768px) {
    .gallery-item {
        border-radius: 12px;
        aspect-ratio: 1/1;
    }
}

.gallery-item:hover {
    transform: 
        translateY(-8px) 
        scale(1.02) 
        rotateX(3deg) 
        rotateY(3deg);
    box-shadow: 
        0 15px 30px rgba(0,0,0,0.15),
        var(--gold-shadow);
    z-index: 15;
}

@media (max-width: 768px) {
    .gallery-item:hover {
        transform: 
            translateY(-4px) 
            scale(1.01) 
            rotateX(2deg) 
            rotateY(2deg);
    }
}

/* GALLERY IMAGE */
.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 
        transform 0.4s ease, 
        filter 0.3s ease,
        opacity 0.3s ease;
    filter: grayscale(10%) contrast(105%);
    opacity: 0.95;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.08);
    filter: 
        grayscale(0%) 
        contrast(110%) 
        brightness(1.05);
    opacity: 1;
}

@media (max-width: 768px) {
    .gallery-item:hover .gallery-image {
        transform: scale(1.05);
    }
}

/* Subtiele gouden gloed */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center, 
        rgba(255, 215, 0, 0.08) 0%, 
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 0.6;
}

/* Dynamische item sizing */
.gallery-item:nth-child(4n+1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(7n+3) {
    grid-column: span 1.5;
}

@media (max-width: 768px) {
    .gallery-item:nth-child(4n+1),
    .gallery-item:nth-child(7n+3) {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* LAZY LOADING STATE */
.gallery-image.lazy {
    background: linear-gradient(
        90deg,
        var(--bg-secondary) 0%,
        var(--bg-primary) 50%,
        var(--bg-secondary) 100%
    );
    background-size: 200% 100%;
    animation: shimmerLoading 1.5s infinite;
}

@keyframes shimmerLoading {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.gallery-image.loaded {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===================================
   GALLERY OVERLAY
   =================================== */

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    z-index: 2;
}

@media (max-width: 768px) {
    .gallery-overlay {
        padding: 1rem;
    }
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    color: var(--white);
    width: 100%;
    text-align: center;
}

.gallery-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.7;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .gallery-icon {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }
}

.gallery-item:hover .gallery-icon {
    opacity: 1;
    transform: scale(1);
    animation: bounce 2s infinite;
}

.gallery-caption {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .gallery-caption {
        font-size: 0.95rem;
    }
}

.gallery-date {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    color: var(--white);
}

@media (max-width: 768px) {
    .gallery-date {
        font-size: 0.8rem;
    }
}

/* ===================================
   WATERMARK
   =================================== */

.gallery-watermark {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    pointer-events: none;
    z-index: 3;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .gallery-watermark {
        font-size: 0.65rem;
        bottom: 8px;
        right: 8px;
        padding: 0.2rem 0.4rem;
    }
}

/* ===================================
   EMPTY STATE
   =================================== */

.gallery-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-primary);
    border-radius: 20px;
    border: 2px dashed var(--border-color);
}

@media (max-width: 768px) {
    .gallery-empty {
        padding: 3rem 1.5rem;
        border-radius: 16px;
    }
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@media (max-width: 768px) {
    .empty-icon {
        font-size: 3rem;
    }
}

.gallery-empty h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .gallery-empty h3 {
        font-size: 1.4rem;
    }
}

.gallery-empty p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .gallery-empty p {
        font-size: 0.95rem;
    }
}

/* ===================================
   LOAD MORE BUTTON
   =================================== */

.gallery-load-more {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .gallery-load-more {
        margin-top: 2rem;
    }
}

#loadMorePhotos {
    min-width: 250px;
    position: relative;
}

@media (max-width: 768px) {
    #loadMorePhotos {
        width: 100%;
        max-width: 280px;
    }
}

#loadMorePhotos.loading {
    pointer-events: none;
    opacity: 0.7;
}

#loadMorePhotos.loading::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid var(--white);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: translateY(-50%) rotate(360deg); }
}

/* ===================================
   VIDEO SECTION
   =================================== */

.video-section {
    background: var(--bg-primary);
    padding: 4rem 0;
    position: relative;
}

@media (max-width: 768px) {
    .video-section {
        padding: 2.5rem 0;
    }
}

.video-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .video-header {
        margin-bottom: 2rem;
    }
}

/* ===================================
   VIDEO GRID
   =================================== */

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ===================================
   VIDEO ITEMS
   =================================== */

.video-item {
    background: var(--bg-secondary);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .video-item {
        border-radius: 12px;
    }
}

.video-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--gold-shadow);
}

@media (max-width: 768px) {
    .video-item:hover {
        transform: translateY(-4px);
    }
}

/* VIDEO WRAPPER - 16:9 ASPECT RATIO */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    background: var(--dark-grey);
    cursor: pointer;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.3s ease;
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

@media (max-width: 768px) {
    .video-item:hover .video-thumbnail img {
        transform: scale(1.05);
    }
}

/* VIDEO PLAY OVERLAY */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.video-item:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(218, 165, 32, 0.4);
    transition: all 0.3s ease;
    padding-left: 5px; /* Visuele correctie voor play icon */
}

@media (max-width: 768px) {
    .play-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

.video-item:hover .play-icon {
    transform: scale(1.2);
    box-shadow: 0 8px 30px rgba(218, 165, 32, 0.6);
}

@media (max-width: 768px) {
    .video-item:hover .play-icon {
        transform: scale(1.1);
    }
}

/* VIDEO CAPTION */
.video-caption {
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .video-caption {
        padding: 1rem;
        font-size: 1rem;
    }
}

/* VIDEO EMPTY STATE */
.video-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-secondary);
    border-radius: 20px;
    border: 2px dashed var(--border-color);
}

@media (max-width: 768px) {
    .video-empty {
        padding: 3rem 1.5rem;
        border-radius: 16px;
    }
}

.video-empty h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .video-empty h3 {
        font-size: 1.4rem;
    }
}

.video-empty p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .video-empty p {
        font-size: 0.95rem;
    }
}

.video-empty a {
    color: var(--gold-warm);
    text-decoration: none;
    font-weight: 600;
}

.video-empty a:hover {
    color: var(--gold-bright);
    text-decoration: underline;
}

/* VIDEO IFRAME (wanneer geladen) */
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===================================
   CTA SECTION
   =================================== */

.gallery-cta-section {
    background: var(--bordeaux-party-gradient);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .gallery-cta-section {
        padding: 2.5rem 0;
    }
}

.gallery-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 165, 165, 0.15) 0%, transparent 50%);
    animation: sparkleMove 8s ease-in-out infinite;
    pointer-events: none;
}

.gallery-cta-section .cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.gallery-cta-section .cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .gallery-cta-section .cta-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }
}

.gallery-cta-section .cta-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .gallery-cta-section .cta-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
}

.gallery-cta-section .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .gallery-cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}

/* ===================================
   LIGHTBOX MODAL
   =================================== */

.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: lightboxFadeIn 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* LIGHTBOX OVERLAY */
.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

/* LIGHTBOX CONTAINER */
.lightbox-container {
    position: relative;
    width: 90%;
    max-width: 1400px;
    max-height: 90vh;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .lightbox-container {
        width: 95%;
        max-height: 85vh;
    }
}

/* LIGHTBOX CONTENT */
.lightbox-content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 75vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    pointer-events: none;
}

@media (max-width: 768px) {
    .lightbox-image {
        max-height: 60vh;
        border-radius: 4px;
    }
}

/* LIGHTBOX INFO */
.lightbox-info {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--white);
}

@media (max-width: 768px) {
    .lightbox-info {
        margin-top: 1rem;
        padding: 0 1rem;
    }
}

.lightbox-caption {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

@media (max-width: 768px) {
    .lightbox-caption {
        font-size: 1.1rem;
    }
}

.lightbox-date {
    font-size: 1rem;
    opacity: 0.8;
    color: var(--white);
}

@media (max-width: 768px) {
    .lightbox-date {
        font-size: 0.9rem;
    }
}

/* LIGHTBOX WATERMARK */
.lightbox-watermark-large {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    pointer-events: none;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .lightbox-watermark-large {
        font-size: 0.8rem;
        bottom: 10px;
        right: 10px;
        padding: 0.4rem 0.8rem;
    }
}

.lightbox-image-wrapper {
    position: relative;
    display: inline-block;  /* Past zich aan aan de afbeelding */
    max-width: 100%;
    max-height: 75vh;
}

.lightbox-image {
    display: block;
    max-width: 100%;
    max-height: 75vh;
    width: auto;
    height: auto;
}

.lightbox-watermark-image {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    background: rgba(0,0,0,0.5);
    padding: 6px 10px;
    border-radius: 4px;
    z-index: 20;
    pointer-events: none;
    user-select: none;
}

@media (max-width: 768px) {
    .lightbox-watermark-image {
        font-size: 12px;
        bottom: 5px;
        right: 5px;
    }
}

/* LIGHTBOX CONTROLS */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 3;
}

@media (max-width: 768px) {
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold-gradient);
    border-color: var(--gold-bright);
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .lightbox-prev {
        left: 10px;
    }
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .lightbox-next {
        right: 10px;
    }
}

.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* LIGHTBOX PROTECTION NOTICE */
.lightbox-protection-notice {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .lightbox-protection-notice {
        bottom: 10px;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        max-width: 90%;
    }
}

.lightbox-protection-notice a {
    color: var(--gold-bright);
    text-decoration: none;
    font-weight: 600;
}

.lightbox-protection-notice a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* ===================================
   PHOTO PROTECTION
   =================================== */

/* Disable right-click context menu on images */
.gallery-image,
.lightbox-image,
.video-thumbnail img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: auto;
}

/* Prevent text selection on gallery items */
.gallery-item,
.video-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Protection notification */
.protection-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--gold-gradient);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    z-index: 10001;
    box-shadow: 0 4px 20px rgba(218, 165, 32, 0.4);
    animation: slideInRight 0.3s ease;
}

@media (max-width: 768px) {
    .protection-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        padding: 0.875rem 1.25rem;
        font-size: 0.85rem;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100px);
    }
}

/* ===================================
   KEYBOARD NAVIGATION HINTS
   =================================== */

.lightbox-keyboard-hint {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-align: center;
    pointer-events: none;
}

@media (max-width: 768px) {
    .lightbox-keyboard-hint {
        display: none;
    }
}

/* ===================================
   LOADING STATES
   =================================== */

.gallery-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
}

.gallery-loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top-color: var(--gold-warm);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1rem;
}

@media (max-width: 768px) {
    .gallery-loading-spinner {
        width: 40px;
        height: 40px;
        border-width: 3px;
    }
}

.gallery-loading-text {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .gallery-loading-text {
        font-size: 0.9rem;
    }
}

/* ===================================
   FILTER BUTTONS (OPTIONEEL - VOOR LATER)
   =================================== */

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .gallery-filters {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
}

.filter-btn {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .filter-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }
}

.filter-btn:hover {
    background: var(--gold-warm);
    color: var(--white);
    border-color: var(--gold-warm);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--gold-gradient);
    color: var(--white);
    border-color: var(--gold-bright);
    box-shadow: var(--gold-shadow);
}

/* ===================================
   MASONRY LAYOUT VARIATIONS
   =================================== */

/* Tall items (portrait) */
.gallery-item.tall {
    grid-row: span 2;
}

/* Wide items (landscape) */
.gallery-item.wide {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .gallery-item.wide {
        grid-column: span 1;
    }
}

/* Large featured items */
.gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 768px) {
    .gallery-item.featured {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ===================================
   SOCIAL SHARING (OPTIONEEL)
   =================================== */

.gallery-share-buttons {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 4;
}

.gallery-item:hover .gallery-share-buttons {
    opacity: 1;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .share-btn {
        width: 32px;
        height: 32px;
    }
}

.share-btn:hover {
    background: var(--gold-gradient);
    transform: scale(1.1);
}

/* ===================================
   ACCESSIBILITY
   =================================== */

/* Focus states */
.gallery-item:focus,
.video-item:focus,
.filter-btn:focus,
.lightbox-close:focus,
.lightbox-prev:focus,
.lightbox-next:focus {
    outline: 3px solid var(--gold-warm);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .gallery-item:focus,
    .video-item:focus,
    .filter-btn:focus {
        outline: 4px solid var(--gold-warm);
        outline-offset: 3px;
    }
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===================================
   REDUCED MOTION
   =================================== */

@media (prefers-reduced-motion: reduce) {
    .gallery-item,
    .video-item,
    .filter-btn,
    .lightbox-modal,
    .play-icon,
    .gallery-image,
    .video-thumbnail img {
        animation: none !important;
        transition: none !important;
    }
    
    .gallery-item:hover,
    .video-item:hover {
        transform: none;
    }
    
    .gallery-item:hover .gallery-image,
    .video-item:hover .video-thumbnail img {
        transform: none;
    }
}

/* ===================================
   HIGH CONTRAST MODE
   =================================== */

@media (prefers-contrast: high) {
    .gallery-item,
    .video-item {
        border: 2px solid var(--text-primary);
    }
    
    .filter-btn {
        border: 2px solid var(--text-primary);
    }
    
    .filter-btn.active {
        background: var(--black);
        color: var(--white);
        border-color: var(--white);
    }
    
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        border: 3px solid var(--white);
    }
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
    .gallery-section,
    .video-section {
        background: var(--white) !important;
    }
    
    .gallery-item,
    .video-item {
        page-break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid var(--black);
    }
    
    .gallery-overlay,
    .video-play-overlay,
    .gallery-share-buttons,
    .lightbox-modal,
    .gallery-filters,
    .gallery-load-more,
    .gallery-cta-section {
        display: none !important;
    }
    
    .gallery-watermark,
    .lightbox-watermark-large {
        opacity: 1 !important;
        color: var(--black) !important;
    }
}

/* ===================================
   BROWSER SPECIFIC FIXES
   =================================== */

/* Safari specific */
@supports (-webkit-appearance: none) {
    .gallery-item,
    .video-item {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .lightbox-modal {
        -webkit-overflow-scrolling: touch;
    }
}

/* Firefox specific */
@-moz-document url-prefix() {
    .gallery-overlay {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            transparent 100%
        );
    }
}

/* Edge specific */
@supports (-ms-ime-align: auto) {
    .gallery-grid {
        display: -ms-grid;
    }
}

/* ===================================
   DARK MODE SUPPORT (OPTIONEEL)
   =================================== */

@media (prefers-color-scheme: dark) {
    .gallery-section {
        background: var(--dark-grey);
    }
    
    .gallery-item,
    .video-item {
        background: var(--black);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .gallery-empty,
    .video-empty {
        background: var(--dark-grey);
        border-color: rgba(255, 255, 255, 0.2);
    }
}

/* ===================================
   PERFORMANCE OPTIMIZATIONS
   =================================== */

/* GPU acceleration */
.gallery-item,
.video-item,
.lightbox-modal,
.gallery-image,
.video-thumbnail img {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Contain paint */
.gallery-grid,
.video-grid {
    contain: layout style paint;
}

/* ===================================
   CUSTOM SCROLLBAR (OPTIONEEL)
   =================================== */

.lightbox-container::-webkit-scrollbar {
    width: 8px;
}

.lightbox-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.lightbox-container::-webkit-scrollbar-thumb {
    background: var(--gold-warm);
    border-radius: 4px;
}

.lightbox-container::-webkit-scrollbar-thumb:hover {
    background: var(--gold-bright);
}

/* ===================================
   ANIMATION KEYFRAMES
   =================================== */

@keyframes sparkleMove {
    0%, 100% { 
        opacity: 0.6; 
        transform: scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.1); 
    }
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.7; 
        transform: scale(0.95); 
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { 
        transform: translateY(0); 
    }
    40% { 
        transform: translateY(-10px); 
    }
    60% { 
        transform: translateY(-5px); 
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.gallery-hidden {
    display: none !important;
}

.gallery-fade-in {
    animation: fadeIn 0.5s ease;
}

.gallery-fade-out {
    animation: fadeOut 0.5s ease;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.no-scroll {
    overflow: hidden;
    height: 100vh;
}

/* ===================================
   RESPONSIVE BREAKPOINTS SUMMARY
   =================================== */

/*
Desktop: 1024px+
  - 3-4 kolommen gallery grid
  - Grote video items
  - Volledige lightbox controls

Tablet: 768px - 1023px
  - 2-3 kolommen gallery grid
  - Medium video items
  - Compacte controls

Mobile: 480px - 767px
  - 2 kolommen gallery grid
  - 1 kolom video grid
  - Touch-optimized controls

Small Mobile: < 480px
  - 1 kolom gallery grid
  - Stack layout
  - Minimale spacing
*/

/* ===================================
   EINDE LIVE MOMENTS CSS
   =================================== */

/* 
====================================
FAUTE BENDT LIVE MOMENTS CSS
Versie: 2025.1
Auteur: Penn (Copywriter AI)
Datum: Oktober 2025
Voor: Joeri De Decker - Faute Bendt

Features:
✅ Masonry gallery layout
✅ Lazy loading support
✅ Lightbox met keyboard navigation
✅ Photo protection (watermarks, right-click block)
✅ Video embed met thumbnails
✅ Responsive mobile-first design
✅ Touch-friendly controls
✅ Accessibility compliant
✅ Performance optimized
✅ Cross-browser compatible

"We will give there a lap on!!" 🎪📸
====================================
*/
