/* ========================================
   📹 VIDEO'S PAGINA STYLES - VERNIEUWD
   ======================================== */

/* Hero Section */
.hero-wood.hero-videos {
    margin-bottom: 0;
}

.page-hero.videos-hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%),
        linear-gradient(135deg, #1A1410 0%, #0F0E0C 100%);
    margin-top: 80px;
    overflow: hidden;
}

.page-hero.videos-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(201, 169, 97, 0.08) 0%, transparent 50%);
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(15, 14, 12, 0.4) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--spacing-md);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(201, 169, 97, 0.15);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 50px;
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    backdrop-filter: blur(10px);
}

.page-hero-title {
    font-size: 4rem;
    font-weight: var(--font-weight-black);
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    letter-spacing: -3px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-text);
    font-weight: var(--font-weight-light);
}

/* Stats Banner */
.stats-banner {
    background: linear-gradient(
        180deg,
        rgba(201, 169, 97, 0.06) 0%,
        var(--color-secondary) 40%,
        var(--color-secondary) 100%
    );
    padding: var(--spacing-md) 0;
    border-top: none;
    border-bottom: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    align-items: center;
    justify-items: center;
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md);
    animation: statFadeIn 0.8s ease-out forwards;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-item:nth-child(1) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.4s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.6s;
}

.stat-item:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes statFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.stat-number {
    font-size: 3rem;
    font-weight: var(--font-weight-black);
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
    display: block;
}

.stat-number:hover {
    animation: statBounce 0.6s ease;
}

@keyframes statBounce {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.15);
    }
    50% {
        transform: scale(0.95);
    }
    75% {
        transform: scale(1.1);
    }
}

.stat-label {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Videos Section */
.videos-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-dark);
    border-top: none;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-description {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-top: var(--spacing-sm);
}

/* Video Filters - Enhanced */
.video-filters {
    display: flex;
    gap: 0.75rem;
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 var(--spacing-md);
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-dark);
    border: 2px solid rgba(201, 169, 97, 0.2);
    color: var(--color-text);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-icon {
    font-size: 1.1rem;
}

.filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 0.5rem;
    background: rgba(201, 169, 97, 0.2);
    border-radius: 12px;
    font-size: 0.75rem;
    color: var(--color-primary);
}

.filter-btn:hover {
    border-color: var(--color-primary);
    background: rgba(201, 169, 97, 0.1);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--color-primary);
    color: var(--color-dark);
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(201, 169, 97, 0.4);
}

.filter-btn.active .filter-count {
    background: rgba(15, 14, 12, 0.3);
    color: var(--color-dark);
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

/* Video Cards - Enhanced */
.video-card {
    background: var(--color-dark);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 1;
    border: 1px solid rgba(201, 169, 97, 0.1);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(201, 169, 97, 0.3);
}

.video-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    background: #000;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.08);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all 0.3s ease;
    pointer-events: none;
}

.video-card:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
    background: transparent;
    box-shadow: none;
}

.play-button svg {
    width: 56px;
    height: 56px;
    fill: white;
    margin-left: 0;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

/* Video Info */
.video-info {
    padding: var(--spacing-md);
}

.video-category {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: rgba(201, 169, 97, 0.15);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.video-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.video-description {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* No Results */
.no-results {
    text-align: center;
    padding: var(--spacing-xxl) 0;
    color: var(--color-text-muted);
}

.no-results svg {
    opacity: 0.3;
    margin-bottom: var(--spacing-md);
}

.no-results h3 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
}

/* Categories Section */
.categories-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--color-text);
    font-size: 1.2rem;
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.category-card {
    background: var(--color-secondary);
    padding: var(--spacing-lg);
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 97, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.category-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(201, 169, 97, 0.2);
}

.category-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    filter: grayscale(0.2);
}

.category-card h3 {
    font-size: 1.6rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.category-card p {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.category-btn:hover {
    background: var(--color-primary);
    color: var(--color-dark);
    transform: translateX(4px);
}

/* YouTube CTA Section */
.youtube-cta-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-secondary);
}

.cta-box-video {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(201, 169, 97, 0.05) 100%);
    padding: var(--spacing-xl);
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(201, 169, 97, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-box-video::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.05) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-icon {
    margin-bottom: var(--spacing-md);
    color: #FF0000;
    animation: float 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cta-box-video h2 {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.cta-box-video p {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-youtube {
    background: #FF0000;
    color: white;
    border: 2px solid #FF0000;
}

.btn-youtube:hover {
    background: #CC0000;
    border-color: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-dark);
    transform: translateY(-2px);
}

.social-proof {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 50px;
    color: var(--color-text);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 968px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .videos-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .page-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}


.video-card:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 1.5rem;
}

.video-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.video-description {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.video-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.video-tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(212, 165, 116, 0.15);
    color: var(--color-gold);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.video-duration {
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 600;
}

/* YouTube CTA */
.youtube-cta {
    text-align: center;
    margin-top: var(--spacing-xxl);
    padding: var(--spacing-xl);
    background: var(--color-dark);
    border-radius: 12px;
}

.youtube-cta p {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
}

.youtube-cta .btn {
    display: inline-flex;
    align-items: center;
}

/* YouTube CTA Section */
.youtube-cta-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(
        135deg,
        var(--color-dark) 0%,
        var(--color-secondary) 100%
    );
}

.youtube-cta-section .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.youtube-cta-section h2 {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.youtube-cta-section .cta-text {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .videos-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
    
    .page-hero {
        margin-top: 70px;
    }
    
    .youtube-embed-container iframe {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 40vh;
        min-height: 300px;
        margin-top: 60px;
    }
    
    .page-hero-title {
        font-size: 2.5rem;
    }
    
    .page-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .youtube-embed-container iframe {
        height: 400px;
    }
    
    .youtube-cta {
        padding: var(--spacing-lg);
    }
    
    .youtube-cta p {
        font-size: 1.25rem;
    }
}

/* ========================================
   FOTO PREVIEW STRIP — VIDEO PAGINA
   ======================================== */

.videos-photo-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.vstrip-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/2;
    cursor: pointer;
}

.vstrip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
    filter: brightness(0.7);
}

.vstrip-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.9);
}

.vstrip-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 0.85rem;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.vstrip-item:hover .vstrip-overlay {
    opacity: 1;
}

.vstrip-overlay span {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(201,169,97,0.6);
    border-radius: 4px;
    padding: 0.2rem 0.6rem;
    background: rgba(0,0,0,0.3);
}

@media (max-width: 900px) {
    .videos-photo-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .vstrip-item:nth-child(4),
    .vstrip-item:nth-child(5) {
        display: none;
    }
}

@media (max-width: 600px) {
    .videos-photo-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .vstrip-item:nth-child(3),
    .vstrip-item:nth-child(4),
    .vstrip-item:nth-child(5) {
        display: none;
    }
}
