/* === TEASER POPUP STYLES === */
.teaser-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.98);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.teaser-overlay.active {
    opacity: 1;
    visibility: visible;
}

.teaser-container {
    position: relative;
    background: #0a0a0a;
    border: 1px solid #d4af37;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

/* Particle effect background */
.teaser-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}/* Teaser content styles */
.teaser-content {
    position: relative;
    z-index: 2;
}

.teaser-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.teaser-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: #fdfbf7;
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: 0.5px;
}.teaser-duration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: clamp(16px, 2.5vw, 20px);
    color: #d4af37;
    margin-bottom: 20px;
    font-weight: 500;
}

.golden-stars {
    animation: starPulse 1.5s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.teaser-tagline {
    font-size: clamp(14px, 2vw, 16px);
    color: rgba(253, 251, 247, 0.8);
    margin-bottom: 35px;
    font-style: italic;
}

.countdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}.countdown-text {
    font-size: clamp(14px, 2vw, 16px);
    color: rgba(253, 251, 247, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

.countdown-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 700;
    color: #d4af37;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
}

.countdown-number.pulse {
    animation: countdownPulse 0.4s ease;
}

@keyframes countdownPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Fade in animations */
.fade-in-1 { animation: fadeInUp 0.6s ease 0.2s both; }
.fade-in-2 { animation: fadeInUp 0.6s ease 0.4s both; }
.fade-in-3 { animation: fadeInUp 0.6s ease 0.6s both; }

/* Teaser button container */
.teaser-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

/* Hero style button voor popups */
.btn.hero-style {
    background: #d4af37;
    color: #0a0a0a;
    padding: 18px 40px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
}

.btn.hero-style:hover {
    background: #f4e4bc;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === ENHANCED VIDEO POPUP STYLES === */
.video-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}.video-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.video-popup-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    max-width: 1100px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 
        0 0 80px rgba(212, 175, 55, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    animation: popupSlideIn 0.4s ease;
}

@keyframes popupSlideIn {
    from {
        transform: translateY(-30px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}.video-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 24px;
    padding: 0;
}

.video-popup-close:hover {
    color: #ffffff;
    transform: scale(1.2);
}

.video-popup-content {
    padding: 50px 40px 40px;
}

.video-popup-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3.5vw, 36px);}    color: #d4af37;
    text-align: center;
    margin: 0 auto 15px;
    max-width: 850px;
    line-height: 1.3;
}

.video-popup-subtitle {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(253, 251, 247, 0.85);
    text-align: center;
    margin: 0 auto 30px;
    max-width: 700px;
    font-weight: 300;
    line-height: 1.5;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
    margin-bottom: 30px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
}.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.video-popup-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.video-popup-actions .btn {
    min-width: 180px;
    padding: 14px 28px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-popup-actions .btn i {
    font-size: 16px;
}.btn-gold {
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    color: #1a1a1a;
    border: none;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #f4e4bc, #d4af37);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Contact Button */
.btn-contact {
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    color: #1a1a1a;
    border: none;
    padding: 18px 45px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    min-width: 280px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: linear-gradient(135deg, #f4e4bc, #d4af37);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* === FOOTER VIDEO LINK === */
.footer-video-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.golden-pulse-dot {
    color: #d4af37;
    font-size: 12px;
    animation: footerPulse 2s ease-in-out infinite;
}@keyframes footerPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.5); }
}

.video-replay-link {
    color: #d4af37;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.video-replay-link:hover {
    color: #f4e4bc;
    transform: translateX(5px);
}

.video-replay-link i {
    font-size: 18px;
}

.video-replay-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;    width: 0;
    height: 1px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.video-replay-link:hover::after {
    width: 100%;
}

/* === FOOTER LOGO SECTION === */
.footer-logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0 20px;
    margin-top: 20px;
}

.footer-bottom-logo {
    max-width: 180px;
    height: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-bottom-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* === MOBILE RESPONSIVENESS === */
@media (max-width: 768px) {
    .teaser-container {
        padding: 40px 25px;
        max-width: 95%;
    }
    
    .video-popup-container {
        width: 95%;
        max-height: 95vh;
        margin: 10px;
    }
    
    .video-popup-content {
        padding: 35px 20px 25px;
    }
    
    .video-popup-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;        font-size: 16px;
    }
    
    .video-popup-title {
        font-size: 18px !important;
        margin: 0 auto 12px !important;
        padding: 0 10px !important;
        text-align: center !important;
        max-width: 100% !important;
        line-height: 1.4 !important;
    }
    
    .video-popup-subtitle {
        font-size: 13px !important;
        margin: 0 auto 20px !important;
        padding: 0 10px !important;
        text-align: center !important;
        max-width: 100% !important;
        line-height: 1.5 !important;
    }
    
    .video-popup-actions {
        flex-direction: column;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .video-popup-actions .btn,
    .btn-contact {
        width: 100% !important;
        max-width: 280px !important;
        min-width: auto !important;
        text-align: center !important;
        justify-content: center !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        padding: 14px 20px !important;
        font-size: 15px !important;
    }
    
    .countdown-number {
        font-size: 56px;
    }
    
    /* Verberg Vimeo branding op mobile */
    .video-wrapper iframe {
        pointer-events: auto;
    }
}

/* Hide Vimeo controls on mobile except essentials */
@media (max-width: 768px) {
    /* Target Vimeo player controls */
    .video-wrapper::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 50px;
        background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
        pointer-events: none;
        z-index: 1;
    }
}/* Mobile hero button aanpassingen */
@media (max-width: 768px) {
    .btn.hero-style {
        width: 100% !important;
        max-width: 300px !important;
        font-size: 13px !important;
        padding: 16px 30px !important;
        letter-spacing: 1.5px !important;
    }
    
    .teaser-button-container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .btn.hero-style {
        font-size: 12px !important;
        padding: 14px 25px !important;
    }
}