/* Reset en basis styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
}

/* Navigatie */
nav {
    position: fixed;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

nav.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

nav.scrolled .logo img {
    height: 75px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: #2aa1ce;
}

.nav-links a.active {
    color: #2aa1ce;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

/* Hero sectie met video */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1.1);
    z-index: -1;
    object-fit: cover;
}

.mobile-fallback {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.cta-button {
    display: inline-block;
    background-color: #2aa1ce;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #ff4757;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Secties */
section {
    padding: 100px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    text-transform: uppercase;
    color: #f0f0f0;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 40%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #2aa1ce;
}

.section-title p {
    color: #aaaaaa;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Over Sectie */
.about {
    background-color: #1a1a1a;
}

.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-img {
    flex: 1;
    min-width: 300px;
    margin-right: 50px;
}

.about-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
}

.about-text p {
    margin-bottom: 20px;
    color: #cccccc;
    font-size: 16px;
    line-height: 1.8;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.skill-item {
    background-color: #2a2a2a;
    padding: 10px 20px;
    border-radius: 30px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #ffffff;
}

/* Galerij Sectie met Video Ondersteuning */
.gallery {
    background-color: #121212;
}

/* Tab buttons voor foto/video switch */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.tab-button {
    background-color: #2a2a2a;
    color: #ffffff;
    border: 2px solid #2a2a2a;
    padding: 12px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tab-button:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.tab-button.active {
    background-color: #2aa1ce;
    border-color: #2aa1ce;
    box-shadow: 0 5px 15px rgba(42, 161, 206, 0.3);
}

.gallery-content {
    display: none;
}

.gallery-content.active {
    display: block;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 20px;
}

.carousel-hint {
    display: none;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
    cursor: pointer;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.1);
}

/* Video play button overlay */
.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(42, 161, 206, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover .video-play-overlay {
    background-color: rgba(255, 71, 87, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-overlay i {
    color: #ffffff;
    font-size: 30px;
    margin-left: 5px;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: #cccccc;
    font-size: 14px;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: hidden;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
}

.video-modal-content video {
    width: 100%;
    height: auto;
    max-height: 90vh;
    border-radius: 10px;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.video-modal-close:hover {
    color: #2aa1ce;
}

/* Image Modal voor visitekaartje */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: hidden;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
}

.image-modal-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    border-radius: 10px;
    object-fit: contain;
}

.image-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.image-modal-close:hover {
    color: #2aa1ce;
}

/* Booking Sectie */
.booking {
    background-color: #1a1a1a;
    position: relative;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="0" y="0" width="100" height="100" fill="%23121212"/><rect x="0" y="0" width="50" height="50" fill="%231d1d1d"/><rect x="50" y="50" width="50" height="50" fill="%231d1d1d"/></svg>');
    background-size: 20px 20px;
    opacity: 0.05;
}

.booking-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.booking-text {
    flex: 1;
    min-width: 300px;
    padding-right: 50px;
}

.booking-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
}

.booking-text p {
    margin-bottom: 20px;
    color: #cccccc;
    font-size: 16px;
    line-height: 1.8;
}

.pricing {
    margin-top: 30px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #333;
}

.price-item h4 {
    color: #ffffff;
    font-size: 18px;
}

.price-item span {
    color: #2aa1ce;
    font-weight: 700;
    font-size: 18px;
}

/* Contact Card */
.contact-card {
    flex: 1;
    min-width: 300px;
    background-color: #222222;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card-container h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact-info {
    margin-bottom: 30px;
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    padding: 12px;
    background-color: #1a1a1a;
    border-radius: 5px;
    transition: transform 0.3s ease;
    max-width: 200px;
    width: 100%;
}

.contact-item:hover {
    transform: translateY(-3px);
    background-color: #2a2a2a;
}

.contact-item i {
    font-size: 20px;
    margin-right: 15px;
    color: #2aa1ce;
    width: 25px;
    text-align: center;
}

.contact-item span {
    color: #cccccc;
    text-align: center;
    flex: 1;
}

.contact-item strong {
    color: #ffffff;
    font-weight: 600;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    width: 100%;
}

.card-image {
    margin: 20px 0;
    max-width: 100%;
    overflow: visible;
}

.business-card-img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    transform-origin: center;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.business-card-img:hover {
    transform: scale(1.05);
    z-index: 2;
}

.guarantee {
    margin-top: 20px;
}

.guarantee-badge {
    background-color: #2aa1ce;
    color: #fff;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 16px;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp i {
    color: #ffffff;
    font-size: 28px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background-color: #ffffff;
    color: #333;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-size: 14px;
    font-weight: 600;
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Loading Screen */
#loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #121212;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loadingScreen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-logo {
    max-width: 300px;
    width: 80%;
    animation: logoFadeIn 1s ease-in-out;
}

.loading-spinner {
    margin-top: 30px;
    width: 50px;
    height: 50px;
    border: 4px solid rgba(42, 161, 206, 0.2);
    border-top: 4px solid #2aa1ce;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    margin-top: 20px;
    color: #2aa1ce;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pulse-text 1.5s ease-in-out infinite;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse-text {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Instagram Feed Section */
.instagram-feed {
    background-color: #121212;
    padding: 100px 0;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.instagram-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.instagram-item:hover {
    transform: scale(1.05);
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 161, 206, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-stats {
    color: #ffffff;
    text-align: center;
}

.instagram-stats i {
    font-size: 24px;
    margin: 0 10px;
}

.instagram-stats span {
    font-size: 18px;
    font-weight: 600;
    margin-left: 5px;
}

.instagram-cta {
    text-align: center;
    margin-top: 40px;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #F77737 100%);
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.instagram-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(131, 58, 180, 0.4);
}

.instagram-button i {
    margin-right: 10px;
    font-size: 22px;
}

/* Footer */
footer {
    background-color: #0a0a0a;
    padding: 60px 0 30px;
    border-top: 1px solid #2a2a2a;
}

.footer-logo {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-logo span {
    color: #2aa1ce;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #2a2a2a;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
}

.social-icons a:hover {
    background-color: #2aa1ce;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(42, 161, 206, 0.4);
}

.footer-links {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: #2aa1ce;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2a2a2a;
}

.footer-bottom p {
    color: #777777;
    font-size: 14px;
    margin: 0;
}

/* Responsief ontwerp */
@media (max-width: 992px) {
    .about-content, .booking-content {
        flex-direction: column;
    }

    .about-img, .booking-text {
        margin-right: 0;
        margin-bottom: 40px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: #0a0a0a;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .menu-toggle {
        display: block;
        z-index: 1000;
    }

    .menu-toggle span {
        display: block;
        width: 30px;
        height: 3px;
        background-color: #ffffff;
        margin: 6px 0;
        transition: all 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .footer-links {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .hero video {
        display: none;
    }
    
    .mobile-fallback {
        display: block;
    }
    
    .contact-card {
        padding: 30px 20px;
    }

    .video-modal-close {
        top: -40px;
        font-size: 30px;
    }

    .image-modal-close {
        top: -40px;
        font-size: 30px;
    }

    .footer-logo {
        font-size: 28px;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
    }

    .hero-content {
        padding: 0 10px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 16px;
    }
    
    .contact-item {
        padding: 10px;
    }
    
    .contact-item i {
        font-size: 18px;
        margin-right: 10px;
    }

    /* Carrousel voor foto's op mobiel */
    #photos .gallery-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 15px;
        padding: 10px 0;
    }

    #photos .gallery-container::-webkit-scrollbar {
        display: none;
    }

    #photos .gallery-item {
        flex: 0 0 85%;
        scroll-snap-align: center;
        min-width: 85%;
    }

    /* Video's blijven gewoon onder elkaar */
    #videos .gallery-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .floating-whatsapp {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .floating-whatsapp i {
        font-size: 24px;
    }

    .loading-logo {
        max-width: 200px;
    }

    .instagram-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .tab-button {
        padding: 10px 25px;
        font-size: 16px;
    }

    .footer-logo {
        font-size: 24px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    /* Carrousel indicatoren - optioneel */
    #photos {
        position: relative;
    }

    .carousel-hint {
        text-align: center;
        color: #aaaaaa;
        font-size: 14px;
        margin-top: 15px;
        display: block;
    }
}