/* --- RESET & BASIS STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

@keyframes gradientBg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(-45deg, #0a0a0a, #181406, #241c05, #0a0a0a);
    background-size: 400% 400%;
    animation: gradientBg 20s ease infinite;
    color: #ffffff;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #d4af37 #0a0a0a;
}

/* Goud accenten */
:root {
    --gold: #d4af37;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --dark-bg: #0a0a0a;
    --card-bg: rgba(20, 20, 20, 0.7);
}

/* --- THREE.JS BACKGROUND CANVAS --- */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}

/* --- INTERFACE OVERLAY --- */
.content-layer {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* --- NAVIGATION --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(10,10,10,0.8), transparent);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.nav-logo h2 {
    transition: transform 0.3s ease;
    color: var(--gold);
    font-weight: 900;
    letter-spacing: 2px;
}

.nav-logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 5px var(--gold-glow));
}

.nav-logo:hover h2 {
    transform: scale(1.05);
    text-shadow: 0 0 10px var(--gold-glow);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
    text-shadow: 0 0 10px var(--gold-glow);
}

/* --- HERO SECTION --- */
@keyframes hero-fade-in {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 10% 50px 10%; /* Extra padding toegevoegd voor de boven- en onderkant */
    background: linear-gradient(to right, rgba(10,10,10,0.85) 40%, transparent);
}

.hero-text {
    animation: hero-fade-in 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-text h1 {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 0.9;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.hero-text h1 span {
    color: var(--gold);
    text-shadow: 0 0 25px rgba(212, 175, 55, 0.8), 0 0 50px rgba(212, 175, 55, 0.4);
}

.hero-text p {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
    max-width: 600px;
    margin-bottom: 20px;
    color: #cccccc;
    line-height: 1.6;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--gold);
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
    transition: all 0.4s ease;
    background: transparent;
    cursor: pointer;
}

.btn-gold:hover {
    background-color: var(--gold);
    color: #000;
    box-shadow: 0 0 25px var(--gold);
    transform: translateY(-3px);
}

/* --- SECTIONS ALGEMEEN --- */
section {
    padding: 140px 10%;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.9);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 60px;
    color: rgba(255, 255, 255, 0.85); /* Verzacht het harde wit */
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 15px rgba(212, 175, 55, 0.15); /* Zachte blending met achtergrond */
}

.section-title span {
    color: var(--gold);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6), 0 0 30px rgba(212, 175, 55, 0.3); /* Mooie gloed op het goud */
}

/* --- PORTFOLIO --- */
#portfolio {
    padding-left: 5%;
    padding-right: 5%;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.15s ease-in-out;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 35%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 1;
    transition: background 0.4s ease;
}

.portfolio-item:hover img {
    transform: scale(1.08) rotate(-1deg);
}

.portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 10%, rgba(0,0,0,0.4) 100%);
}

.portfolio-overlay h3 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px;
    opacity: 0.9;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.portfolio-item:hover .portfolio-overlay h3 {
    font-weight: 900;
    opacity: 1;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.9), 0 0 5px rgba(212, 175, 55, 0.6);
    transform: scale(1.03);
    transform-origin: left bottom;
}

.portfolio-overlay p {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    opacity: 0.85;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay p {
    color: #fff;
    font-weight: 400;
    opacity: 1;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* --- GALLERY ITEMS (FOTO'S IN MAPJES) --- */
.gallery-item {
    border: 1px solid rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    transition: box-shadow 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
    border-radius: 6px;
    cursor: default;
}

.gallery-item:hover {
    border-color: var(--gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.9);
    transform: translateY(-5px) scale(1.02);
}

/* --- SHF-VISUALS BOX --- */
.shf-visuals-box {
    display: flex;
    grid-column: 1 / -1;
    justify-content: center;
    align-items: center;
    /* Aspect ratio is optional, but keeps the grid cells equal height */
    padding: 30px 0; 
}

.shf-visuals-box h2 {
    color: var(--gold);
    font-size: 28px;
    letter-spacing: 4px;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
    margin: 0;
    text-align: center;
}


/* --- WAAROM SHF-VISUALS --- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.why-card {
    background: var(--card-bg);
    padding: 50px 40px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
}

.why-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.why-card .icon {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 25px;
}

.why-card h3 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.why-card p {
    font-size: 15px;
    color: #aaaaaa;
    line-height: 1.6;
    font-weight: 300;
}

/* --- FORM STYLING --- */
input:focus, textarea:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* --- FOOTER --- */
footer {
    background-color: #050505;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

/* --- REELS --- */
#reels {
    padding-left: 5%;
    padding-right: 5%;
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

.reel-item {
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- PORTFOLIO FOLDERS --- */
.portfolio-folder {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.portfolio-folder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0.8;
}

.portfolio-folder:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.portfolio-folder:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.folder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 10%, rgba(0,0,0,0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
}

.folder-icon {
    font-size: 40px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    transition: transform 0.3s ease;
}

.portfolio-folder:hover .folder-icon {
    transform: scale(1.2);
}

.folder-overlay h3 {
    font-size: 24px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

.folder-overlay p {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- ANIMATIONS --- */
.fade-transition {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-out {
    opacity: 0 !important;
    transform: translateY(20px) !important;
    pointer-events: none;
    position: absolute;
}

.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* --- SCROLL ANIMATIONS --- */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.show {
    opacity: 1;
    transform: translateY(0);
}



/* --- PRICING PAGE STYLES --- */
.pricing-section {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
    background-color: transparent !important;
    border: none !important;
}
.pricing-category-title {
    color: var(--gold);
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    border-left: 4px solid var(--gold);
    padding-left: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.pricing-card {
    background: rgba(20, 20, 20, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}
.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}
.pricing-card.featured {
    border: 2px solid var(--gold);
    background: linear-gradient(145deg, rgba(30,28,20,0.9), rgba(15,15,15,0.95));
}
.pricing-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--gold);
    color: #000;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    padding: 5px 35px;
    transform: rotate(45deg);
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.pricing-card h3 {
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.pricing-price {
    font-size: 42px;
    font-weight: 900;
    color: var(--gold);
    margin: 20px 0;
    display: flex;
    align-items: baseline;
    gap: 5px;
}
.pricing-price span {
    font-size: 16px;
    color: #aaa;
    font-weight: 400;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    flex-grow: 1;
}
.pricing-features li {
    color: #ccc;
    font-size: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-features li::before {
    content: '\2713';
    color: var(--gold);
    font-weight: bold;
}
.pricing-extras-box {
    background: rgba(30, 30, 30, 0.6);
    border: 1px dashed rgba(212, 175, 55, 0.4);
    border-radius: 8px;
    padding: 20px 30px;
    margin-top: 25px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}
.pricing-extra-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
}
.pricing-extra-item strong {
    color: var(--gold);
    font-size: 18px;
}

/* --- DROPDOWN MENU --- */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(10, 10, 10, 0.95);
    min-width: 180px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    z-index: 9999;
    padding: 10px 0;
    backdrop-filter: blur(10px);
}

.dropdown-content a {
    color: #fff !important;
    padding: 12px 20px !important;
    text-decoration: none;
    display: block;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: rgba(212, 175, 55, 0.2);
    color: var(--gold) !important;
    padding-left: 25px !important;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* --- LIGHTBOX CONTROLS --- */
.lightbox.active .lightbox-content img {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
    user-select: none;
}
.lightbox-close:hover {
    color: var(--gold);
}
.lightbox-prev, .lightbox-next {
    position: absolute;
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #fff;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 50%;
    user-select: none;
}
.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 15px var(--gold);
}
.lightbox-prev {
    left: 40px;
}
.lightbox-next {
    right: 40px;
}

/* --- PORTFOLIO CATEGORIES GRID --- */
#folders-view {
    padding: 40px;
    border: 2px solid var(--gold);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6), inset 0 0 10px rgba(212, 175, 55, 0.2);
    background: rgba(10, 10, 10, 0.6);
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    max-width: 800px;
    margin: 0 auto;
}

/* --- MEDIA QUERIES VOOR TABLETS & MOBIEL --- */
@media (max-width: 950px) {
    nav {
        padding: 15px 4%;
        flex-direction: column;
        justify-content: center;
        gap: 12px;
    }
    .nav-logo {
        gap: 8px;
    }
    .nav-logo img {
        height: 38px;
    }
    .nav-logo h2 {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    .nav-links {
        gap: 10px 16px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .nav-links a {
        font-size: 12px;
        letter-spacing: 1px;
    }
    header {
        padding: 170px 5% 40px 5% !important;
    }
    section[style*="padding-top"] {
        padding-top: 170px !important;
    }
}

@media (max-width: 768px) {
    header {
        padding: 170px 5% 40px 5% !important;
    }
    .hero-text h1 {
        font-size: 2.6rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .portfolio-grid, .why-grid, .reels-grid {
        grid-template-columns: 1fr;
    }
    #folders-view {
        padding: 20px;
        grid-template-columns: 1fr !important;
    }
    /* Contact formulier en info blok */
    #contact > div > div {
        padding: 15px !important;
    }
    #contact > div > div a {
        font-size: 16px !important;
        word-break: break-word;
    }
    /* Footer */
    footer > div {
        flex-direction: column;
        text-align: center;
    }
    .lightbox-prev { left: 15px; padding: 10px 15px; }
    .lightbox-next { right: 15px; padding: 10px 15px; }
    .lightbox-close { top: 15px; right: 20px; font-size: 35px; }
}

@media (max-width: 500px) {
    nav {
        padding: 12px 3%;
        gap: 10px;
    }
    .nav-logo img {
        height: 32px;
    }
    .nav-logo h2 {
        font-size: 1.2rem;
    }
    .nav-links {
        gap: 8px 12px;
    }
    .nav-links a {
        font-size: 11px;
        letter-spacing: 0.5px;
    }
}


/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.lightbox.active {
    display: flex;
}
.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border: 2px solid var(--gold);
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--gold);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
}
.lightbox-close:hover,
.lightbox-close:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}
.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: var(--gold);
    font-weight: bold;
    font-size: 40px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    z-index: 10000;
}
.lightbox-prev {
    left: 20px;
    border-radius: 3px 0 0 3px;
}
.lightbox-next {
    right: 20px;
    border-radius: 0 3px 3px 0;
}
.lightbox-prev:hover, .lightbox-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
}
