* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: #0f0f1b;
    color: white;
    overflow-x: hidden;
}

/* ========================= */
/* Animated background */
/* ========================= */

.bg-animation {
    position: fixed;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, #00f2ff22, transparent),
        radial-gradient(circle at 70% 70%, #7b2fff22, transparent);
    animation: moveBg 18s infinite alternate ease-in-out;
    z-index: -1;
}

@keyframes moveBg {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(-150px, -80px);
    }
}

/* ========================= */
/* NAVBAR - MODERN & RESPONSIVE */
/* ========================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(15, 15, 27, 0.75);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Shrink on scroll */
.navbar.shrink {
    height: 65px;
    background: rgba(15, 15, 27, 0.95);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    max-height: 70%;
    /* Schaalt mee met navbar hoogte */
    width: auto;
    object-fit: contain;
    transition: 0.3s ease;
}

/* Desktop Navigation */
.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #ccc;
    font-size: 0.95rem;
    position: relative;
    transition: 0.3s ease;
}

/* Underline animation */
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #00f2ff, #7b2fff);
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: white;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ========================= */
/* HAMBURGER */
/* ========================= */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: 0.4s ease;
}

/* Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================= */
/* MOBILE VERSION */
/* ========================= */

@media (max-width: 900px) {

    .navbar {
        padding: 0 10px;
    }

    /* Hide desktop nav */
    .nav-links {
        position: fixed;
        top: 50;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, #0f0f1b, #181830);
        flex-direction: column;
        justify-content: flex-start;
        /* ipv center */
        align-items: center;
        padding-top: 60px;
        /* optionele marge vanaf top */
        gap: 45px;
        transition: right 0.4s ease;
        box-shadow: -15px 0 40px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }


    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        opacity: 0;
        transform: translateX(30px);
        transition: 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(6) {
        transition-delay: 0.35s;
    }

    /* Show hamburger */
    .hamburger {
        display: flex;
        margin-left: auto;
        /* zorgt dat hij altijd rechts zit */
    }
}


/* ========================= */
/* Pricing */
/* ========================= */

.pricing-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 40px 30px;
    border-radius: 20px;
    width: 300px;
    text-align: center;
    transition: 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 242, 255, 0.15);
}

.pricing-card .price {
    font-size: 2rem;
    margin: 20px 0;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.pricing-card ul li {
    margin: 10px 0;
    color: #bbb;
}

.pricing-card button {
    padding: 12px 30px;
    border-radius: 40px;
    border: none;
    background: linear-gradient(90deg, #00f2ff, #7b2fff);
    color: white;
    cursor: pointer;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 1px solid #00f2ff;
}

/* ========================= */
/* Hero */
/* ========================= */

.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    background: linear-gradient(90deg, #00f2ff, #7b2fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    margin-top: 20px;
    color: #aaa;
    max-width: 600px;
}

.hero button {
    margin-top: 30px;
    padding: 14px 36px;
    border-radius: 40px;
    border: none;
    background: linear-gradient(90deg, #00f2ff, #7b2fff);
    color: white;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s ease;
}

.hero button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.3);
}

/* ========================= */
/* Sections */
/* ========================= */

.section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}


.about-text {
    flex: 1 1 450px;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #00f2ff, #7b2fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text p {
    margin-bottom: 18px;
    color: #ccc;
    line-height: 1.7;
    text-align: left;
    /* tekst links uitlijnen */
}


.about-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.about-features li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    /* ruimte tussen icoon en tekst */
    color: #ffffff;
}

.about-features li i {
    color: #00f2ff;
    /* iconenkleur */
    font-size: 1.3rem;
}


.about-image {
    flex: 1 1 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-about {
    display: inline-block;
    padding: 10px 20px;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s ease;
    text-align: center;
    /* tekst in de knop zelf blijft gecentreerd */
}

.btn-about:hover {
    background: #333;
}

/* Logo / Avatar styling */
.logo-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 242, 255, 0.15);
    transition: 0.4s ease;
    max-width: 280px;
    text-align: center;
}

.logo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 50px rgba(0, 242, 255, 0.25);
}

.logo-inner {
    background: linear-gradient(135deg, #00f2ff22, #7b2fff22);
    padding: 15px;
    border-radius: 50%;
    display: inline-block;
    transition: 0.3s ease;
}

.logo-inner img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.logo-card:hover .logo-inner {
    transform: scale(1.05) rotate(3deg);
}

/* Responsive */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column-reverse;
        gap: 30px;
    }
}


.section h2 {
    margin-bottom: 50px;
    font-size: 2.2rem;
}

/* ========================= */
/* Partners / Slideshow Section */
/* ========================= */
#partners {
    padding: 4rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

#partners h2 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #00f2ff, #7b2fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    margin: 2rem auto;
    width: 100%;
    max-width: 900px;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(15, 15, 27, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 50px rgba(0, 242, 255, 0.1);
    padding: 2rem 1rem;
}

/* Individual Slides */
.mySlides {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fade 1s ease-in-out;
}

.mySlides img {
    max-width: 70%;
    height: auto;
    margin: 1rem 0;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mySlides img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 242, 255, 0.2);
}

/* Partner Name */
.numbertext {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.partner-link {
    color: #00f2ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.partner-link:hover {
    color: #7b2fff;
    text-decoration: underline;
}

/* Slide Description */
.text {
    color: #ccc;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Navigation Arrows */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 242, 255, 0.1);
    color: #00f2ff;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease;
    user-select: none;
}

.prev:hover, .next:hover {
    background: rgba(0, 242, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.2);
}

.prev { left: 15px; }
.next { right: 15px; }

/* Dots */
.dot-container {
    text-align: center;
    margin-top: 1.5rem;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot:hover, .dot.active {
    background-color: #00f2ff;
    transform: scale(1.3);
}

/* Fade Animation */
@keyframes fade {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .mySlides img { max-width: 80%; }
    .prev, .next { width: 35px; height: 35px; font-size: 18px; }
    .text { font-size: 0.9rem; }
}

@media (max-width: 480px) {
    .mySlides img { max-width: 90%; }
    .prev, .next { width: 30px; height: 30px; font-size: 16px; }
    .text { font-size: 0.8rem; }
}
/* ========================= */
/* Cards */
/* ========================= */

 
.shop-cta-wrapper {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.shop-card {
    max-width: 420px;
    text-align: center;
    border: 2px solid #fff;
    background: linear-gradient(135deg, #111, #1c1c1c);
}

.shop-card .btn {
    margin-top: 1rem;
}


.card-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: rgba(255, 255, 255, 0.04);
    padding: 30px;
    border-radius: 18px;
    backdrop-filter: blur(20px);
    transition: 0.4s ease;
    max-width: 320px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card h3 {
    margin-bottom: 15px;
}

.card p {
    margin-bottom: 20px;
    color: #ffffff;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 242, 255, 0.15);
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s ease;
}

.btn:hover {
    background: #333;
}

/* ========================= */
/* Features */
/* ========================= */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 35px 25px;
    border-radius: 18px;
    backdrop-filter: blur(20px);
    transition: 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 242, 255, 0.15);
}

.feature-card .icon {
    font-size: 32px;
    margin-bottom: 18px;
    /* Gebruik de originele emoji/icon kleur */
    color: inherit;
    /* of laat weg voor standaard */
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.feature-card p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.6;
}

/* ========================= */
/* CTA */
/* ========================= */

.cta {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(90deg, #00f2ff, #7b2fff);
}

.cta h2 {
    font-size: 2rem;
}

.cta button {
    margin-top: 25px;
    padding: 14px 36px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    font-weight: 500;
}


.cta2 {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(90deg, #000000, #7b2fff);
}

.cta2 h2 {
    font-size: 2rem;
}

.cta2 button {
    margin-top: 25px;
    padding: 14px 36px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    font-weight: 500;
}


/* ========================= */
/* Contact */
/* ========================= */
/* Container */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

/* Formulier */
.contact-form-wrapper {
    flex: 1 1 450px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 35px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 242, 255, 0.15);
    transition: 0.4s ease;
}

.contact-form-wrapper:hover {
    box-shadow: 0 15px 50px rgba(0, 242, 255, 0.25);
}

.contact-form h2 {
    margin-bottom: 25px;
    font-size: 2rem;
    background: linear-gradient(90deg, #00f2ff, #7b2fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 15px;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00f2ff;
    box-shadow: 0 0 12px rgba(0, 242, 255, 0.4);
}

.contact-form button {
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: #00f2ff;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #00d0ff;
    box-shadow: 0 0 12px rgba(0, 242, 255, 0.6);
}

.contact-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #111;
    /* donkere achtergrond */
    color: #fff;
    font-size: 1rem;
    transition: border 0.3s ease, box-shadow 0.3s ease;
    appearance: none;
    /* verwijdert standaard styling in sommige browsers */
}

.contact-form select:focus {
    border-color: #00f2ff;
    box-shadow: 0 0 8px rgba(0, 242, 255, 0.4);
    outline: none;
}

/* Social media & info */
.contact-info {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 242, 255, 0.15);
    transition: 0.4s ease;
}

.contact-info:hover {
    box-shadow: 0 15px 50px rgba(0, 242, 255, 0.25);
}

.form-status {
    margin-top: 10px;
    font-size: 14px;
}

.form-status.success {
    color: #4da6ff;
}

.form-status.error {
    color: #ff4d4d;
}

.social-links {
    display: flex;
    justify-content: center;
    /* centreren horizontaal */
    gap: 20px;
    margin-bottom: 25px;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #00f2ff;
    font-size: 22px;
    transition: 0.4s ease;
    box-shadow: 0 0 8px rgba(0, 242, 255, 0.2);
    text-decoration: none;
    /* verwijdert de onderstreep */
}

.social-link:hover {
    transform: translateY(-4px) scale(1.1);
    background: #00f2ff;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.6);
}



/* Responsive */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        gap: 30px;
    }
}

/* ========================= */
/* Testimonials */
/* ========================= */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 35px 30px;
    border-radius: 18px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s ease;
    text-align: left;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 242, 255, 0.15);
}

.testimonial-card p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
}

.testimonial-author span {
    font-size: 14px;
    color: #888;
}

/* ========================= */
/* Samenwerkingen Slider - Styled like rest of site */
/* ========================= */

.slideshow-container {
    max-width: 1000px;
    width: 90%;
    margin: 40px auto;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(15, 15, 27, 0.5);
    /* match site background */
    backdrop-filter: blur(20px);
    /* glass effect */
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 50px rgba(0, 242, 255, 0.1);
    position: relative;
    padding: 20px 0;
}

.mySlides {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.mySlides img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 242, 255, 0.2);
}

/* Bedrijfsnaam boven de afbeelding */
.numbertext {
    position: relative;
    /* niet absoluut meer */
    top: 0;
    left: 0;
    font-size: 18px;
    color: #00f2ff;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Partner link styling */
.partner-link {
    color: #00f2ff;
    text-decoration: none;
    transition: 0.3s;
}

.partner-link:hover {
    text-decoration: underline;
    color: #7b2fff;
}

/* Slide text iets onder de afbeelding */
.text {
    font-size: 14px;
    color: #ccc;
    margin-top: 12px;
    /* ruimte tussen afbeelding en tekst */
}

/* Afbeelding */
.mySlides img {
    max-height: 150px;
    max-width: 80%;
    margin: 0 auto;
    border-radius: 12px;
    object-fit: contain;
}


/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 242, 255, 0.1);
    color: #00f2ff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.prev:hover,
.next:hover {
    background: rgba(0, 242, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.2);
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

/* Dots/bullets */
.dot-container {
    text-align: center;
    margin-top: 15px;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot:hover,
.active {
    background-color: #00f2ff;
    transform: scale(1.2);
}

/* Fade animation */
.fade {
    animation-name: fade;
    animation-duration: 1s;
}

@keyframes fade {
    from {
        opacity: 0.4
    }

    to {
        opacity: 1
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mySlides img {
        max-height: 120px;
    }

    .prev,
    .next {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .mySlides img {
        max-height: 100px;
    }

    .prev,
    .next {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .text {
        font-size: 12px;
    }
}

/* ========================= */
/* Footer */
/* ========================= */

.footer {
    padding: 20px;
    text-align: center;
    background: rgba(15, 15, 27, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #aaa;
}

/* ========================= */
/* Navbar drop down */
/* ========================= */

/* ========================= */
/* Dropdown onder navbar */
/* ========================= */

.dropdown-under-navbar {
    position: fixed; /* Altijd zichtbaar, onafhankelijk van scroll */
    top: 80px; /* precies onder navbar hoogte (pas aan als je shrink gebruikt) */
    right: 40px; /* uitlijnen rechts, past bij je navbar padding */
    z-index: 1200;
}

.dropbtn {
    background: rgba(15, 15, 27, 0.95);
    color: #ccc;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.dropbtn:hover {
    background: linear-gradient(90deg, #00f2ff22, #7b2fff22);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.3);
}

.dropdown-under-navbar .dropdown-content {
    display: none;
    position: absolute;
    top: 100%; /* direct onder button */
    right: 0;
    min-width: 200px;
    background: rgba(15, 15, 27, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(0, 242, 255, 0.15);
    padding: 10px 0;
    transition: all 0.3s ease;
    z-index: 1500;
}

.dropdown-under-navbar .dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: #ccc;
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.3s ease;
}

.dropdown-under-navbar .dropdown-content a:hover {
    background: linear-gradient(90deg, #00f2ff22, #7b2fff22);
    color: #fff;
}

/* Show on hover */
.dropdown-under-navbar:hover .dropdown-content {
    display: block;
}

