:root {
    --bg-light: #ffffff;
    --bg-soft: #fafafa;
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --flamingo: #FC8EAC;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

@media (hover: hover) and (pointer: fine) {
    body, a, button, .faq-question, .zoomable { cursor: none !important; }
}

body { 
    font-family: 'Manrope', sans-serif; 
    background: var(--bg-light); 
    color: var(--text-dark); 
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll { overflow: hidden; }

/* Custom Cursor */
.cursor-dot { width: 6px; height: 6px; background-color: var(--flamingo); position: fixed; top: 0; left: 0; transform: translate(-50%, -50%); border-radius: 50%; z-index: 99999; pointer-events: none; transition: background-color 0.3s ease; }
.cursor-outline { width: 30px; height: 30px; border: 1px solid rgba(252, 142, 172, 0.6); position: fixed; top: 0; left: 0; transform: translate(-50%, -50%); border-radius: 50%; z-index: 99998; pointer-events: none; transition: width 0.2s, height 0.2s, background-color 0.3s ease, border-color 0.3s ease; }
body.hovering .cursor-outline { width: 60px; height: 60px; background-color: rgba(252, 142, 172, 0.1); border-color: transparent; }
body.hovering .cursor-dot { transform: translate(-50%, -50%) scale(1.5); }
.cursor-dot.cursor-white { background-color: #ffffff; }
.cursor-outline.cursor-white { border-color: rgba(255, 255, 255, 0.8); }
body.hovering .cursor-outline.cursor-white { background-color: rgba(255, 255, 255, 0.2); border-color: transparent; }

@media (max-width: 990px) {
    .cursor-dot, .cursor-outline { display: none !important; }
    body, a, button, .faq-question, .zoomable { cursor: auto !important; }
}

/* Noise & Preloader */
.noise-overlay { position: fixed; inset: 0; z-index: 9997; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"); opacity: 0.03; mix-blend-mode: multiply; }

.preloader { position: fixed; inset: 0; background: var(--bg-light); z-index: 9999; display: flex; justify-content: center; align-items: center; }
.preloader-wrapper { display: flex; flex-direction: column; align-items: center; }
.loader-subtitle { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 4px; color: var(--text-muted); margin-bottom: 1rem; opacity: 0; transform: translateY(10px); }
.loader-title-box { overflow: hidden; margin-bottom: 2.5rem; padding-bottom: 5px; }
.loader-title { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4.5rem); color: var(--flamingo); font-style: italic; font-weight: 400; transform: translateY(100%); line-height: 1; }
.loader-line-bg { width: 200px; height: 1px; background: rgba(0,0,0,0.08); position: relative; overflow: hidden; }
.loader-line { position: absolute; top: 0; left: 0; height: 100%; width: 0%; background: var(--flamingo); }

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; width: 100%; padding: 1.5rem 5vw; display: flex; justify-content: space-between; align-items: center; z-index: 9990; transition: all 0.4s ease; border-bottom: 1px solid transparent; }
.navbar.scrolled { top: 20px; width: calc(100% - 40px); left: 20px; border-radius: 100px; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(15px); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); padding: 1rem 4vw; border: 1px solid rgba(0,0,0,0.05); }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; letter-spacing: 4px; color: #ffffff; transition: color 0.3s; z-index: 1002; position: relative; font-weight: 600; }
.navbar.scrolled .nav-logo { color: var(--text-dark); }
.nav-links { display: flex; align-items: center; z-index: 1000; }
.nav-links a { color: #ffffff; text-decoration: none; margin-left: 3rem; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; transition: color 0.3s ease; font-weight: 500; display: inline-block; }
.navbar.scrolled .nav-links a { color: var(--text-dark); }
.nav-links a:hover { color: var(--flamingo) !important; }

/* Buttons */
.btn-outline { border: 1px solid var(--flamingo); color: var(--flamingo) !important; padding: 0.8rem 2rem; border-radius: 50px; transition: background 0.3s, color 0.3s; display: inline-block; }
.btn-outline:hover { background: var(--flamingo); color: #ffffff !important; }

/* Mobiel Menu */
.hamburger { display: none; z-index: 1002; position: relative; width: 30px; height: 20px; cursor: pointer; }
.hamburger .bar { display: block; width: 100%; height: 2px; background: #ffffff; transition: 0.3s ease-in-out; position: absolute; }
.navbar.scrolled .hamburger .bar { background: var(--text-dark); }
.hamburger.active .bar { background: var(--text-dark) !important; } 
.hamburger .bar:nth-child(1) { top: 0; }
.hamburger .bar:nth-child(2) { bottom: 0; width: 70%; right: 0; }
.hamburger.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active .bar:nth-child(2) { transform: translateY(-9px) rotate(-45deg); width: 100%; }

/* Hero */
.hero { position: relative; height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 0 5vw; overflow: hidden; }
.hero-video-wrap { position: absolute; inset: -10%; z-index: 1; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.video-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3)); z-index: 2; }
.hero-content { z-index: 3; margin-top: 5vh; color: #ffffff; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 8vw, 9rem); line-height: 1.05; margin-bottom: 1rem; }
.pink-accent { color: var(--flamingo); font-style: italic; }
.hero-subtitle { font-size: clamp(0.9rem, 2vw, 1.3rem); font-weight: 400; opacity: 0.9; margin-left: 0.2rem; letter-spacing: 2px; text-transform: uppercase; }

/* Marquee & Shapes */
.marquee-container { width: 100%; padding: 1.5rem 0; background: var(--bg-soft); color: var(--flamingo); overflow: hidden; border-top: 1px solid rgba(0,0,0,0.03); border-bottom: 1px solid rgba(0,0,0,0.03); }
.marquee-content { display: flex; width: max-content; animation: marquee 25s linear infinite; }
.marquee-content span { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 3px; font-weight: 600; padding: 0 2rem; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.shape-top, .shape-bottom { position: absolute; left: 0; width: 100%; overflow: hidden; line-height: 0; z-index: 10; pointer-events: none; }
.shape-top { top: 0; transform: translateY(-99%); }
.shape-bottom { bottom: 0; transform: translateY(99%); }
.shape-top svg, .shape-bottom svg { display: block; width: calc(100% + 1.3px); height: 7vw; min-height: 40px; }

/* Secties Padding & Headers */
.about-section, .instagram-section { padding: 15vh 5vw; background: var(--bg-light); border-bottom: 1px solid rgba(0,0,0,0.03); }
.services, .faq-section, .contact-section { position: relative; padding: 15vh 5vw; background: var(--flamingo); color: #ffffff; }
.reviews-section { padding: 15vh 5vw; background: var(--bg-soft); }

.section-header { display: flex; align-items: center; gap: 2rem; margin-bottom: 3rem; }
.section-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 3px; color: var(--flamingo); font-weight: 600; white-space: nowrap; }
.text-white { color: #ffffff !important; }
.line { flex-grow: 1; height: 1px; background: rgba(0,0,0,0.1); overflow: hidden; padding-bottom: 5px; }
.section-header.light .line { background: rgba(255,255,255,0.3); }

/* Over Ons */
.about-container { max-width: 1200px; margin: 0 auto; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; margin-bottom: 3rem; color: var(--text-dark); }
.about-body { max-width: 700px; margin-left: auto; font-size: 1.15rem; line-height: 1.9; color: var(--text-muted); font-weight: 400; }
.about-body p { margin-bottom: 1.5rem; }
.pink-highlight { color: var(--flamingo); font-weight: 500; font-family: 'Playfair Display', serif; font-size: 1.8rem; font-style: italic; margin-top: 3rem; }

/* Diensten Grid */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3vw; max-width: 1400px; margin: 0 auto; }
.img-wrap { width: 100%; aspect-ratio: 3/4; overflow: hidden; margin-bottom: 1.5rem; border-radius: 8px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%); }
.img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--transition-smooth); }
.img-wrap img:hover { transform: scale(1.05); }
.service-info h3 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 2vw, 2.2rem); margin-bottom: 0.5rem; }
.service-info p { font-size: 1rem; color: rgba(255,255,255,0.9); line-height: 1.6; }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3vw; max-width: 1400px; margin: 0 auto; }
.review-card { background: #ffffff; padding: 3rem; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); display: flex; flex-direction: column; justify-content: center; }
.stars { color: var(--flamingo); font-size: 1.5rem; margin-bottom: 1.5rem; letter-spacing: 2px; }
.review-text { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--text-dark); line-height: 1.6; margin-bottom: 2rem; font-style: italic; }
.review-author { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); font-weight: 600; }

/* FAQ */
.faq-container { max-width: 900px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.2); padding: 1.5rem 0; cursor: pointer; }
.faq-question { display: flex; justify-content: space-between; align-items: center; }
.faq-question h3 { font-family: 'Playfair Display', serif; font-size: clamp(1.2rem, 2vw, 1.6rem); color: #ffffff; font-weight: 500; margin-right: 20px; }
.faq-icon { font-size: 1.5rem; font-weight: 300; color: #ffffff; transition: transform 0.4s ease; display: inline-block; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, margin-top 0.4s ease; opacity: 0.9; }
.faq-answer p { font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.9); }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-item.active .faq-answer { max-height: 400px; margin-top: 1.5rem; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 10000; display: flex; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox-bg { position: absolute; inset: 0; background: rgba(0,0,0,0.9); }
.lightbox-img { max-width: 90vw; max-height: 90vh; position: relative; z-index: 10001; border-radius: 8px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); transform: scale(0.9); transition: transform 0.4s ease; }
.lightbox.active .lightbox-img { transform: scale(1); }
.lightbox-close { position: absolute; top: 20px; right: 30px; font-size: 2rem; color: white; background: none; border: none; z-index: 10002; transition: color 0.2s; }
.lightbox-close:hover { color: var(--flamingo); }

/* Instagram */
.insta-header { margin-bottom: 4rem; text-align: center; }
.insta-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 4vw, 3.5rem); margin-bottom: 0.5rem; }
.insta-handle { color: var(--flamingo); text-decoration: none; font-size: 1rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; display: inline-block; }
.live-feed-wrapper { max-width: 1200px; margin: 0 auto; min-height: 300px; display: flex; align-items: center; justify-content: center; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4vw; max-width: 1400px; margin: 0 auto; align-items: stretch; }
.contact-card { background: #ffffff; padding: 4rem; border-radius: 12px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); color: var(--text-dark); display: flex; flex-direction: column; justify-content: center; }
.contact-card h2 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 3vw, 3.5rem); line-height: 1.2; margin-bottom: 1.5rem; color: var(--text-dark); }
.contact-sub { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 3rem; line-height: 1.6; }
.contact-details { border-top: 1px solid rgba(0,0,0,0.05); padding-top: 2rem; }
.detail-item { margin-bottom: 2rem; }
.detail-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 0.5rem; font-weight: 600; display: block; }
.detail-value { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 2vw, 1.8rem); color: var(--flamingo); text-decoration: none; transition: color 0.3s; }
.text-value { font-family: 'Manrope', sans-serif; font-size: 1.1rem; line-height: 1.6; color: var(--text-dark); }
.text-value small { font-size: 0.9rem; color: var(--text-muted); font-style: italic; display: block; margin-top: 0.3rem; }
.detail-value[href]:hover { color: var(--text-dark); }

.contact-map { position: relative; width: 100%; min-height: 500px; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.1); background: #f0f0f0; }
.contact-map iframe { position: absolute; top: 0; left: 0; width: 100% !important; height: 100% !important; border: 0; filter: grayscale(20%) contrast(1.1); transition: filter 0.5s ease; }
.contact-map iframe:hover { filter: grayscale(0%) contrast(1); }

/* Footer */
.site-footer { background: var(--bg-light); padding: 2rem 5vw; border-top: 1px solid rgba(0,0,0,0.05); }
.footer-container { display: flex; justify-content: space-between; align-items: center; max-width: 1400px; margin: 0 auto; flex-wrap: wrap; gap: 1rem; }
.footer-text { font-size: 0.9rem; color: var(--text-muted); }
.footer-creator { font-size: 0.9rem; color: var(--text-dark); font-weight: 500; }
.footer-creator span { color: var(--flamingo); font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.1rem; font-weight: 600; }

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .navbar.scrolled { width: calc(100% - 20px); left: 10px; padding: 1rem 5vw; }
    .hamburger { display: block; }
    .nav-links { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px); flex-direction: column; justify-content: center; align-items: center; transition: right 0.5s var(--transition-smooth); }
    .nav-links.active { right: 0; }
    .nav-links a { margin: 1.5rem 0; font-size: 1.5rem; color: var(--text-dark); }
    .nav-links .btn-outline { margin-top: 2rem; font-size: 1.2rem; }
    .service-grid, .review-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-map { min-height: 400px; }
}

@media (max-width: 768px) {
    .cursor-dot, .cursor-outline { display: none !important; }
    body, a, button, .faq-question, .zoomable { cursor: auto !important; }
    .about-section, .services, .reviews-section, .faq-section, .instagram-section, .contact-section { padding: 8vh 5vw; }
    .section-header { margin-bottom: 2rem; }
    .hero-title { font-size: clamp(2.5rem, 12vw, 4rem); }
    .about-text h2 { margin-bottom: 1.5rem; }
    .about-body { font-size: 1rem; line-height: 1.7; }
    .service-grid, .review-grid { grid-template-columns: 1fr; gap: 3rem; }
    .review-card { padding: 2rem 1.5rem; }
    .review-text { font-size: 1.1rem; }
    .contact-card { padding: 2rem 1.5rem; }
    .contact-card h2 { font-size: 2rem; }
    .contact-map { min-height: 300px; }
    .footer-container { flex-direction: column; text-align: center; gap: 0.5rem; }
}