 * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Georgia', serif;
        line-height: 1.6;
        color: #333;
        background: #fff;
    }

    /* Navigation Menu */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(30, 41, 59, 0.95);
        backdrop-filter: blur(10px);
        z-index: 999;
        padding: 15px 0;
        transition: all 0.3s ease;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .navbar.scrolled {
        background: rgba(30, 41, 59, 0.98);
        padding: 10px 0;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    }

    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: white;
        text-decoration: none;
        background: linear-gradient(45deg, #22c55e, #3b82f6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        transition: transform 0.3s ease;
    }

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

    .nav-menu {
        display: flex;
        list-style: none;
        gap: 30px;
        margin: 0;
        padding: 0;
    }

    .nav-item {
        position: relative;
    }

    .nav-link {
        color: white;
        text-decoration: none;
        font-size: 1rem;
        padding: 8px 15px;
        border-radius: 25px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .nav-link:before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: linear-gradient(45deg, #22c55e, #3b82f6);
        transform: translateX(-50%);
        transition: width 0.3s ease;
    }

    .nav-link:hover:before {
        width: 80%;
    }

    .nav-link:hover {
        color: #3b82f6;
        background: rgba(255, 255, 255, 0.1);
    }

    .nav-link.active {
        background: linear-gradient(45deg, #22c55e, #3b82f6);
        color: white;
    }

    /* Mobile menu button */
    .nav-toggle {
        display: none;
        flex-direction: column;
        cursor: pointer;
        padding: 5px;
    }

    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: white;
        margin: 3px 0;
        transition: all 0.3s ease;
        border-radius: 3px;
    }

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

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

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

    /* Mobile Navigation */
    @media (max-width: 768px) {
        .nav-menu {
            position: fixed;
            left: -100%;
            top: 60px;
            flex-direction: column;
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            width: 100%;
            text-align: center;
            transition: 0.3s;
            padding: 20px 0;
            gap: 10px;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .nav-menu.active {
            left: 0;
        }

        .nav-toggle {
            display: flex;
        }

        .nav-link {
            padding: 12px 20px;
            display: block;
            width: 90%;
            margin: 0 auto;
        }
    }

    /* Hero sectie met drone video/foto */
    .hero {
        height: 100vh;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
        overflow: hidden;
        margin-top: 0;
        /* Account for fixed navbar */
    }

    /* Video achtergrond */
    .hero-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
    }

    /* Fallback achtergrond voor als video niet laadt */
    .hero-fallback {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
            url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%236B73FF" width="1200" height="800"/><circle fill="%234F46E5" cx="200" cy="200" r="100" opacity="0.3"/><circle fill="%237C3AED" cx="800" cy="400" r="150" opacity="0.2"/><circle fill="%23EC4899" cx="1000" cy="600" r="80" opacity="0.4"/></svg>') center/cover;
        z-index: -3;
    }

    /* Donkere overlay over video */
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: -1;
    }

    .grecaptcha-badge {
        visibility: hidden;
    }


    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg,
                rgba(34, 197, 94, 0.1),
                rgba(59, 130, 246, 0.1),
                rgba(168, 85, 247, 0.1));
        animation: float 6s ease-in-out infinite;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0px) rotate(0deg);
        }

        50% {
            transform: translateY(-20px) rotate(1deg);
        }
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        padding: 0 20px;
        animation: fadeInUp 1s ease-out;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero h1 {
        font-size: 4rem;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        font-weight: 300;
        letter-spacing: 2px;
    }

    .hero p {
        font-size: 1.3rem;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

    .cta-button {
        display: inline-block;
        background: linear-gradient(45deg, #22c55e, #3b82f6);
        color: white;
        padding: 15px 40px;
        text-decoration: none;
        border-radius: 50px;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        background: linear-gradient(45deg, #16a34a, #2563eb);
    }

    /* Drone gallery sectie */
    .drone-gallery {
        padding: 100px 0;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .section-title {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: #1e293b;
        position: relative;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(45deg, #22c55e, #3b82f6);
        border-radius: 2px;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        margin-bottom: 60px;
    }

    .gallery-item {
        position: relative;
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .gallery-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    }

    .gallery-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

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

    .gallery-caption {
        padding: 20px;
        text-align: center;
    }

    .gallery-caption h3 {
        color: #1e293b;
        margin-bottom: 10px;
        font-size: 1.3rem;
    }

    .gallery-caption p {
        color: #64748b;
        line-height: 1.5;
    }

    /* Placeholder voor dronebeelden */
    .drone-placeholder {
        background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 3rem;
        height: 250px;
        position: relative;
    }

    .drone-placeholder::before {
        content: '🚁';
        font-size: 4rem;
        animation: hover 2s ease-in-out infinite;
    }

    @keyframes hover {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    /* Photo Gallery Section */
    .photo-gallery {
        padding: 100px 0;
        background: white;
    }

    .photo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
        margin-top: 50px;
    }

    .photo-item {
        position: relative;
        overflow: hidden;
        border-radius: 15px;
        background: linear-gradient(45deg, #e0e7ff, #c7d2fe);
        aspect-ratio: 1;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .photo-item:hover {
        transform: scale(1.03);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        z-index: 10;
    }

    .photo-item.wide {
        grid-column: span 2;
        aspect-ratio: 2/1;
    }

    .photo-item.tall {
        grid-row: span 2;
        aspect-ratio: 1/2;
    }

    .photo-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        color: white;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    /* Lightbox */
    .lightbox {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.95);
        z-index: 1000;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .lightbox.active {
        display: flex;
    }

    .lightbox-content {
        max-width: 90%;
        max-height: 90%;
        border-radius: 10px;
    }

    .lightbox-close {
        position: absolute;
        top: 30px;
        right: 40px;
        font-size: 40px;
        color: white;
        cursor: pointer;
        z-index: 1001;
    }

    /* Amenities Section */
    .amenities {
        padding: 100px 0;
        background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    }

    .amenities-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-top: 60px;
    }

    .amenity-card {
        background: white;
        padding: 30px;
        border-radius: 20px;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .amenity-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .amenity-icon {
        font-size: 3rem;
        margin-bottom: 20px;
        background: linear-gradient(45deg, #22c55e, #3b82f6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .amenity-card h3 {
        font-size: 1.3rem;
        color: #1e293b;
        margin-bottom: 15px;
    }

    .amenity-card p {
        color: #64748b;
        line-height: 1.6;
    }

    /* Map Section */
    .map-section {
        padding: 100px 0;
        background: white;
    }

    .map-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        margin-top: 60px;
        align-items: start;
    }

    .map-frame {
        background: linear-gradient(45deg, #3b82f6, #1e40af);
        border-radius: 20px;
        height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 2rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
    }

    .map-frame iframe {
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 20px;
    }

    .attractions-list {
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        padding: 40px;
        border-radius: 20px;
    }

    .attractions-list h3 {
        font-size: 1.8rem;
        color: #1e293b;
        margin-bottom: 30px;
    }

    .attraction-item {
        display: flex;
        align-items: start;
        margin-bottom: 25px;
        padding: 15px;
        background: white;
        border-radius: 15px;
        transition: all 0.3s ease;
    }

    .attraction-item:hover {
        transform: translateX(10px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .attraction-number {
        background: linear-gradient(45deg, #22c55e, #3b82f6);
        color: white;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
        font-weight: bold;
    }

    .attraction-info h4 {
        color: #1e293b;
        margin-bottom: 5px;
    }

    .attraction-info p {
        color: #64748b;
        font-size: 0.95rem;
    }

    .distance-badge {
        background: #fbbf24;
        color: #78350f;
        padding: 3px 8px;
        border-radius: 20px;
        font-size: 0.85rem;
        margin-left: 10px;
        font-weight: bold;
    }

    /* Over ons sectie */
    .about {
        padding: 100px 0;
        background: white;
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .about-text h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        color: #1e293b;
    }

    .about-text p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #475569;
        margin-bottom: 1.5rem;
    }

    .about-image {
        background: linear-gradient(45deg, #fbbf24, #f59e0b);
        border-radius: 20px;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 5rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    /* Contact sectie */
    .contact {
        padding: 100px 0;
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        color: white;
    }

    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .contact-info h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .contact-item {
        display: flex;
        align-items: center;
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
    }

    .contact-item span {
        font-size: 1.5rem;
        margin-right: 15px;
        background: linear-gradient(45deg, #22c55e, #3b82f6);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-form {
        background: rgba(255, 255, 255, 0.1);
        padding: 40px;
        border-radius: 20px;
        backdrop-filter: blur(10px);
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 15px;
        border: none;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.2);
        color: white;
        font-size: 1rem;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .submit-btn {
        background: linear-gradient(45deg, #22c55e, #3b82f6);
        color: white;
        padding: 15px 40px;
        border: none;
        border-radius: 50px;
        font-size: 1.1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
    }

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    /* Responsive design */
    @media (max-width: 768px) {
        .hero h1 {
            font-size: 2.5rem;
        }

        .about-content,
        .contact-content,
        .map-container {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .gallery-grid {
            grid-template-columns: 1fr;
        }

        .photo-grid {
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        }

        .photo-item.wide,
        .photo-item.tall {
            grid-column: span 1;
            grid-row: span 1;
            aspect-ratio: 1;
        }

        .section-title {
            font-size: 2rem;
        }

        .amenities-grid {
            grid-template-columns: 1fr;
        }
    }
