* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #f8fafc;
    color: #0f172a;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 800;
}
.logo span {
    color: #2c7da0;
}

nav {
    display: flex;
    align-items: center;
}
nav li::marker {
    content: none;
}
nav a {
    text-decoration: none;
    color: #0f172a;
    margin-left: 30px;
    font-weight: 500;
    transition: 0.3s;
}
nav a:hover {
    color: #2c7da0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.hamburger span {
    height: 3px;
    width: 25px;
    background: #0f172a;
    margin: 4px 0;
    border-radius: 2px;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #5fa8d3, #a9d6e5);
    padding: 140px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 85vh;
}
.hero-text {
    max-width: 600px;
}
.hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}
.hero-text p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    background: #0f172a;
    color: white;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.btn:hover {
    background: #1e293b;
    transform: translateY(-3px);
}

.hero-logo {
    width: 320px;
    height: 320px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* DIENSTEN */
.diensten-section {
    padding: 80px 8%;
    background: white;
}
.diensten-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    color: #0f172a;
}
.diensten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}
.dienst-card {
    background: #eef4f8;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #d1dfe7;
}
.dienst-card:hover {
    transform: translateY(-8px);
    border-color: #2c7da0;
}
.dienst-card .material-icons {
    font-size: 48px;
    color: #2c7da0;
    margin-bottom: 15px;
}
.dienst-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}
.dienst-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #334155;
}

/* FOOTER */
footer {
    background: #0f172a;
    color: white;
    padding: 60px 8%;
    font-size: 15px;
    text-align: left;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-section {
    flex: 1 1 220px;
}

.footer-section h2,
.footer-section h3 {
    margin-bottom: 15px;
    color: #2c7da0;
    font-weight: 700;
}

.footer-section p,
.footer-section ul li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #ffffffcc; /* lichtere tekst voor leesbaarheid */
    font-weight: 400;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li a {
    color: #2c7da0;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #ffffff80;
}

/* RESPONSIVE */
@media(max-width:1000px){
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 6%;
    }
    .hero-logo {
        margin-top: 50px;
        width: 240px;
        height: 240px;
    }
    .hero-text h1 {
        font-size: 38px;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    footer {
        padding: 40px 6%;
    }
}

@media(max-width:768px){
    nav {
        position:absolute;
        top:80px;
        right:0;
        background:white;
        flex-direction:column;
        width:220px;
        padding:20px;
        box-shadow:0 20px 40px rgba(0,0,0,0.1);
        display:none;
    }
    nav.active {
        display:flex;
    }
    nav a {
        margin:15px 0;
    }
    .hamburger {
        display:flex;
    }
}
