/* Hero Section Styles - Simplified */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;

}

.hero-home {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Fallback gradient if image doesn't load */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            var(--paars) 0%,
            var(--blauw) 50%,
            var(--groen) 100%);
    opacity: 0.8;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 20px;
}

.hero-logo {
    max-width: 622px;
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Simple scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    cursor: pointer;
    opacity: 0.8;
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border: 2px solid white;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 5px;
    width: 8px;
    height: 8px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hero-logo {
        max-width: 200px;
    }
}

/* New Header Below Hero */
.main-header-below {
    background: linear-gradient(135deg, var(--paars), var(--blauw));
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
}

.header-info {
    margin-bottom: 50px;
}

.header-info .header-logo {
    max-width: 220px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.header-info h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header-info .tagline {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 15px;
    opacity: 0.9;
}

.header-info .description {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.header-navigation {
    margin-top: 40px;
}

.nav-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px 25px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.nav-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icon svg {
    width: 100%;
    height: 100%;
    color: white;
    transition: transform 0.3s ease;
}

.nav-btn:hover .nav-icon svg {
    transform: scale(1.1);
}

.nav-text {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.nav-desc {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.4;
    display: block;
}

.contact-btn {
    background: rgba(108, 52, 131, 0.3);
    border-color: var(--paars);
}

.contact-btn:hover {
    background: rgba(108, 52, 131, 0.5);
    border-color: white;
}

/* Mobile responsiveness for new header */
@media (max-width: 768px) {
    .header-info .header-logo {
        max-width: 160px;
    }

    .header-info h1 {
        font-size: 2.2rem;
    }

    .header-info .tagline {
        font-size: 1.2rem;
    }

    .header-info .description {
        font-size: 1rem;
    }

    .nav-buttons {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nav-btn {
        padding: 25px 20px;
    }

    .nav-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 10px;
    }

    .nav-text {
        font-size: 1.2rem;
    }
}