/* style.css - Updated: 2026-01-20 19:35 */
:root {
    --bg-color: #0a0a0a;
    --text-color: #e0e0e0;
    --accent-color: #c9a227; /* Gold */
    --accent-color-hover: #e6c152;
    --secondary-bg: #1a1a1a;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Raleway', sans-serif;
    --age-orange: #ff8800;
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body.age-gate-active {
    overflow: hidden;
}

/* Age Verification Gate */
.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.age-verification.hidden {
    display: none;
}

.age-verification-content {
    max-width: 800px;
    width: 90%;
    padding: 40px 30px;
    margin: 20px 0;
    text-align: center;
    color: #ffffff;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.3);
}

.age-verification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.language-select {
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #333;
    padding: 8px 12px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 16px;
    cursor: pointer;
}

.language-select:focus {
    outline: 1px solid var(--age-orange);
}

.site-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--accent-color);
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(201, 162, 39, 0.5);
}

.logo-accent {
    background-color: var(--age-orange);
    color: #000;
    padding: 2px 8px;
    margin-left: 4px;
    border-radius: 2px;
}

.age-verification-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: #ffffff;
    margin: 30px 0 20px;
    line-height: 1.2;
}

.age-notice {
    margin: 20px 0;
}

.notice-badge {
    display: inline-block;
    border: 2px solid var(--age-orange);
    padding: 8px 16px;
    color: #ffffff;
    font-size: 0.9rem;
    border-radius: 4px;
}

.age-disclaimer {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ffffff;
    margin: 25px 0;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.law-enforcement-link {
    display: inline-block;
    color: var(--age-orange);
    text-decoration: none;
    margin: 20px 0;
    font-size: 0.9rem;
}

.law-enforcement-link:hover {
    text-decoration: underline;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.age-btn {
    background-color: #1a1a1a;
    border: 2px solid var(--age-orange);
    color: #ffffff;
    padding: 18px 30px;
    font-size: 16px;
    font-family: var(--font-body);
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    min-width: 250px;
    font-weight: 500;
    touch-action: manipulation;
}

.age-btn:hover {
    background-color: var(--age-orange);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 136, 0, 0.3);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

.age-btn:active {
    transform: translateY(0);
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.age-footer-links {
    margin: 30px 0 20px;
    font-size: 0.85rem;
    color: #ffffff;
}

.parental-control-link {
    margin-bottom: 10px;
    line-height: 1.5;
}

.terms-link {
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.terms-link:hover {
    text-decoration: underline;
}

.age-copyright {
    margin-top: 30px;
    font-size: 0.85rem;
    color: #666;
}

.main-content-hidden {
    display: none;
}

.main-content-hidden.visible {
    display: block;
}

@media (max-width: 768px) {
    .age-verification {
        padding-top: max(env(safe-area-inset-top), 15px);
        align-items: flex-start;
    }
    
    .age-verification-content {
        padding: 24px 18px;
        margin: 10px 0 16px;
        max-height: calc(100svh - 30px);
        overflow-y: auto;
        width: min(92vw, 480px);
    }
    
    .age-verification-title {
        font-size: 1.8rem;
    }
    
    .age-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .age-btn {
        min-width: 100%;
        width: 100%;
    }
    
    .age-disclaimer {
        font-size: 0.85rem;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

header {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('Disney/Disney-Briana-Fiona.png') no-repeat center center/cover;
    position: relative;
}

header h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    margin-bottom: 15px;
    letter-spacing: 4px;
    display: flex;
    justify-content: center;
    gap: 0; /* Verwijder gap voor betere aansluiting van verloop */
    flex-wrap: wrap;
}

header h1 span {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px) scale(0.3) rotate(10deg);
    filter: blur(20px);
    transition: opacity 1.5s ease, transform 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 1.5s ease;
    
    /* Glimmend goud effect op de letters zelf */
    background: linear-gradient(
        to right, 
        #bf953f 22%, 
        #fcf6ba 45%, 
        #b38728 50%, 
        #fcf6ba 55%, 
        #bf953f 78%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShine 4s linear infinite;
}

header h1 span.reveal {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
    filter: blur(0);
}

header .tagline {
    font-size: 1.8rem;
    font-style: italic;
    color: #ffffff;
    font-weight: 300;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 2px 2px 4px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

header .tagline.reveal {
    opacity: 1;
    transform: translateY(0);
}

@keyframes goldShine {
    to {
        background-position: 200% center;
    }
}


main {
    padding: 0;
    height: 100vh;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sections-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    min-height: 0;
}

#gallery,
#videos {
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

#videos {
    background-color: var(--accent-color);
    color: #ffffff;
}

#videos h2 {
    color: #ffffff;
}

#videos h2::after {
    background-color: #ffffff;
}

#videos .slider-btn {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    color: #ffffff;
}

#videos .slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.05);
}

#videos .slider-dot {
    border-color: #ffffff;
}

#videos .slider-dot.active {
    background-color: #ffffff;
}

#videos .slider-dots {
    background-color: rgba(0, 0, 0, 0.2);
}

@media (min-width: 769px) {
    header {
        height: 100vh;
    }
    
    main {
        height: 100vh;
    }
    
    .sections-wrapper {
        flex-direction: row;
        gap: 0;
        align-items: stretch;
        width: 100%;
        height: 100%;
        flex: 1;
        min-height: 0;
    }
    
    #gallery,
    #videos {
        flex: 0 0 50%;
        min-width: 0;
        width: 50%;
        padding: 15px 10px;
        overflow-y: auto;
        height: 100%;
        min-height: 0;
    }
    
    #gallery {
        background-color: #ffffff;
    }
    
    #videos {
        background-color: var(--accent-color);
    }
}

h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    flex-shrink: 0;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 8px auto 0;
}

.grid {
    display: grid;
    gap: 20px;
    margin-bottom: 80px;
}

.gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.video-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.grid-item {
    background-color: var(--secondary-bg);
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(201, 162, 39, 0.2);
}

.grid-item img, .grid-item video {
    width: 100%;
    height: 400px;
    display: block;
    object-fit: cover;
}

.gallery-slider {
    position: relative;
    background-color: var(--secondary-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin: 0 auto 10px;
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.gallery-slide {
    min-width: 100%;
    flex: 0 0 100%;
    aspect-ratio: 9 / 16;
    display: flex;
    align-items: stretch;
    background-color: #000000;
}

.gallery-slide img,
.gallery-slide video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    cursor: pointer;
}

.gallery-slide {
    position: relative;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.slider-btn:hover {
    background-color: rgba(201, 162, 39, 0.2);
    transform: translateY(-50%) scale(1.05);
}

.slider-prev {
    left: 15px;
}

.slider-next {
    right: 15px;
}

.slider-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 10px 0 12px;
    background-color: rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--accent-color);
    background-color: transparent;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.slider-dot.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
}

.video-grid .grid-item video {
    height: 500px;
    aspect-ratio: 9/16;
    object-fit: cover;
}

footer {
    text-align: center;
    padding: 40px 0;
    background-color: #050505;
    border-top: 1px solid #1a1a1a;
}

footer p {
    font-size: 0.9rem;
    color: #666;
}

/* Modal styling if we add it later */
#modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

#modal img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
    }

    header {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('Disney/Fiona-Briana-Mobiel.png') no-repeat center top/cover;
        height: 100svh;
    }
    
    main {
        height: auto;
        padding: 0;
        overflow: visible;
    }

    header h1 {
        font-size: 2.5rem;
    }
    
    header .tagline {
        font-size: 1.2rem;
    }

    .sections-wrapper {
        display: block;
        height: auto;
    }
    
    #gallery,
    #videos {
        width: 100%;
        padding: 15px 10px;
        min-height: 100svh;
        height: auto;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }
    
    #gallery {
        background-color: #ffffff;
    }
    
    #videos {
        background-color: var(--accent-color);
    }
    
    h2 {
        margin-bottom: 10px;
        font-size: 1.8rem;
    }
    
    
    .gallery-track {
        width: 100%;
        display: flex;
        transition: transform 0.5s ease;
    }
    
    .gallery-slide {
        aspect-ratio: 9 / 16;
        min-width: 100%;
        flex: 0 0 100%;
        width: 100%;
        display: flex;
        align-items: stretch;
        background-color: #000000;
        position: relative;
    }
    
    .gallery-slide img,
    .gallery-slide video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .gallery-slider {
        max-width: 480px;
        margin: 0 auto 10px;
        width: 100%;
        flex-shrink: 0;
    }
    
    .slider-btn {
        width: 38px;
        height: 38px;
    }
}


