/* Foxleder - Stylesheet */

/* Verberg reCAPTCHA badge (vermeld in privacy policy) */
.grecaptcha-badge {
    visibility: hidden !important;
}

/* Algemene stijlen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Smooth scrolling voor alle links */
html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: #333;
}

h1, h2, h3 {
    font-weight: 600;
    margin-bottom: 20px;
    color: #222;
}

p {
    margin-bottom: 15px;
}

a {
    color: #d4d4d4;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background-color: #555555;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #333333;
    color: white;
}

/* Header sectie */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(40, 40, 40, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 15px 0;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #c27c36;
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    transition: opacity 0.3s;
    filter: brightness(1.1);
}

.logo img:hover {
    opacity: 0.8;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    font-weight: 500;
    color: #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
    overflow: hidden;
}

/* Onderstreep effect */
nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
}

nav ul li a:hover::before {
    width: 100%;
}

/* Hamburger menu stijlen */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #f0f0f0;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobiel menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: rgba(40, 40, 40, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    flex-direction: column;
    padding: 20px;
    list-style: none;
}

.mobile-menu ul li {
    margin: 10px 0;
    text-align: center;
    list-style: none;
}

.mobile-menu ul li a {
    font-size: 18px;
    padding: 15px 20px;
    display: block;
    color: #f0f0f0;
    border-radius: 6px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Glow effect voor mobiel menu */
.mobile-menu ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-menu ul li a:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.mobile-menu ul li a:hover::before {
    left: 100%;
}

/* Hero sectie */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url('/images/background.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #e8e8e8;
}

.hero-content {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    margin-bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-logo {
    max-width: 600px;
    width: 90%;
    height: auto;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
    animation-delay: 0.3s;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
    animation-delay: 0.8s;
}

.hero .btn {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 1.3s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Scroll indicator pijl */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards, bounce 2s ease-in-out infinite;
    animation-delay: 2s, 2.5s;
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    stroke: rgba(255, 255, 255, 0.7);
    transition: stroke 0.3s;
}

.scroll-indicator:hover svg {
    stroke: rgba(255, 255, 255, 1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(10px);
    }
    60% {
        transform: translateX(-50%) translateY(5px);
    }
}

/* Over ons sectie */
.about {
    padding: 100px 0;
    background-color: #f9f7f4;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Producten sectie */
.products {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.products-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px 20px;
    background-color: #f9f7f4;
    border-radius: 8px;
}

.products-cta p {
    max-width: 600px;
    margin: 0 auto 25px auto;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

/* Product Carousel */
.product-carousel-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.product-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 20px;
    padding: 10px 0 30px 0;
}

.product-carousel::-webkit-scrollbar {
    display: none;
}

.product-item {
    flex: 0 0 300px;
    scroll-snap-align: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    background-color: white;
    cursor: pointer;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item:first-child {
    margin-left: calc(50% - 150px);
}

.product-item:last-child {
    margin-right: calc(50% - 150px);
}

.product-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-item .product-image::after {
    content: 'Bekijk gallerij';
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-item:hover .product-image::after {
    opacity: 1;
}

.product-info {
    padding: 20px;
    background-color: white;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-info p {
    font-size: 14px;
    color: #666;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    padding: 0;
}

.carousel-dot.active {
    background-color: #c27c36;
}

.carousel-dot:hover {
    background-color: #c27c36;
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: all 0.3s;
}

.carousel-arrow:hover {
    background-color: #c27c36;
    color: white;
}

.carousel-arrow-left {
    left: 10px;
}

.carousel-arrow-right {
    right: 10px;
}

.carousel-arrow svg {
    width: 20px;
    height: 20px;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-header {
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

.lightbox-header h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.lightbox-header p {
    color: #aaa;
    font-size: 0.9rem;
}

.lightbox-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
}

.lightbox-image {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-counter {
    color: #aaa;
    margin-top: 15px;
    font-size: 14px;
}

.lightbox-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    overflow-x: auto;
    max-width: 100%;
    padding: 10px 0;
}

.lightbox-thumb {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.lightbox-thumb:hover {
    opacity: 0.8;
}

.lightbox-thumb.active {
    opacity: 1;
    border-color: #c27c36;
}

/* Diensten sectie */
.services {
    padding: 100px 0;
    background-color: #f9f7f4;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 40px;
    color: #c27c36;
    margin-bottom: 20px;
}

/* Contact sectie */
.contact {
    padding: 100px 0;
    background-color: #f9f7f4;
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info-item {
    margin-bottom: 25px;
}

.contact-info-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

textarea.form-control {
    height: 150px;
}

/* Footer sectie */
footer {
    background-color: #222;
    color: #aaa;
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1;
    margin-right: 30px;
}

.footer-column:last-child {
    margin-right: 0;
}

.footer-column h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #aaa;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(34, 34, 34, 0.98);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #ccc;
}

.cookie-text a {
    color: #c27c36;
}

.cookie-text a:hover {
    color: #e09040;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background-color: #c27c36;
    color: white;
}

.cookie-btn-accept:hover {
    background-color: #a66a2a;
}

.cookie-btn-decline {
    background-color: transparent;
    color: #aaa;
    border: 1px solid #555;
}

.cookie-btn-decline:hover {
    background-color: #333;
    color: #fff;
}

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

/* Privacy pagina specifieke stijlen */
.privacy-hero {
    background-color: #333;
    color: #fff;
    padding: 140px 0 60px;
    text-align: center;
}

.privacy-hero h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.privacy-hero p {
    color: #aaa;
    font-size: 1.1rem;
}

.privacy-content {
    padding: 60px 0;
    background-color: #f9f7f4;
}

.privacy-content .container {
    max-width: 800px;
}

.privacy-section {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.privacy-section h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c27c36;
}

.privacy-section h3 {
    color: #444;
    font-size: 1.1rem;
    margin-top: 25px;
    margin-bottom: 10px;
}

.privacy-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.privacy-section ul li {
    margin-bottom: 8px;
}

.privacy-section a {
    color: #c27c36;
}

.privacy-section a:hover {
    color: #a66a2a;
}

.privacy-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.privacy-section table th,
.privacy-section table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.privacy-section table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

@media (max-width: 768px) {
    .privacy-section {
        padding: 25px;
    }

    .privacy-hero h1 {
        font-size: 2rem;
    }
}

/* Responsieve stijlen */
@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-indicator svg {
        width: 24px;
        height: 24px;
    }

    .product-item {
        flex: 0 0 280px;
    }

    .product-item:first-child {
        margin-left: calc(50% - 140px);
    }

    .product-item:last-child {
        margin-right: calc(50% - 140px);
    }

    .carousel-arrow {
        display: none;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.5);
    }

    .lightbox-header h3 {
        font-size: 1.2rem;
    }

    .lightbox-thumbnails {
        max-width: 90vw;
    }

    .lightbox-thumb {
        width: 50px;
        height: 50px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-text {
        min-width: 100%;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .about-content, .contact-content, .footer-content {
        flex-direction: column;
    }

    .about-image {
        margin-top: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-logo {
        max-width: 400px;
        width: 85%;
    }

    /* Verberg desktop menu, toon hamburger */
    nav ul {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .logo img {
        height: 30px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 280px;
        width: 80%;
    }

    .logo img {
        height: 25px;
    }
}
