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

body {
    background: #fefefe;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 0 0 20px 20px; /* ronde hoeken */
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: bold;
}

.header .logo img {
    height: 45px;
    border-radius: 10px;
}

.header nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.header nav a:hover {
    background: #8bc4a1;
    color: white;
}

/* HERO */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    padding: 140px 10%;
    background: linear-gradient(135deg,#fff8f0,#f0f8ff);
    gap: 20px;
    border-radius: 20px;
}

.hero-content h1 {
    font-size: 48px;
    color: #333;
    border-radius: 15px;
}

.hero-content p {
    font-size: 20px;
    margin: 15px 0;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #8bc4a1;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #71a583;
    transform: translateY(-3px);
}

.hero-image img {
    width: 450px;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.hero-image, .hero-content {
    z-index: 1; /* hero achter de header */
}

/* SECTIONS */
.section {
    padding: 80px 10%;
    margin: 40px auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

/* ABOUT */
.about {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about img {
    width: 300px;
    border-radius: 25px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* SERVICES */
.services .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 25px;
}

.services .card {
    background: #f8f8f8;
    border-radius: 25px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: all 0.3s ease;
}

.services .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.services .card img {
    width: 100%;
    border-bottom: 1px solid #ddd;
}

/* GALLERY */
.gallery .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 20px;
}

.gallery .grid img {
    width: 100%;
    border-radius: 25px;
    transition: transform 0.3s ease;
}

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

/* CONTACT */
.contact p {
    margin: 12px 0;
    font-size: 18px;
}

.contact i {
    margin-right: 10px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 25px;
    background: #8bc4a1;
    color: white;
    font-weight: bold;
    border-radius: 20px 20px 0 0;
}

/* ANIMATIONS */
.animate-fade { opacity: 0; transform: translateY(30px); animation: fadeIn 1s forwards; }
.animate-slide { opacity: 0; transform: translateX(50px); animation: slideIn 1s forwards; }
.animate-slide-up { opacity: 0; transform: translateY(50px); animation: slideUp 1s forwards; }
.animate-fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp 1s forwards; }

@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }
@keyframes slideIn { to { opacity: 1; transform: translateX(0); } }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* RESPONSIVE */
@media screen and (max-width: 768px){
    .hero, .about { flex-direction: column; text-align: center; }
    .hero-image img { width: 300px; }
}
