/* =========================
   RESET
========================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* =========================
   BASIS
========================= */
html{
    scroll-behavior:smooth;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background-color:#f5f7fb;
    color:#333;
    line-height:1.6;
}

a{
    color:#4f7cff;
    text-decoration:none;
}

/* =========================
   SECTIONS
========================= */
section:not(.hero){
    max-width:1200px;
    margin:auto;
}

section h2{
    font-size:28px;
    margin-bottom:15px;
}

section p{
    font-size:16px;
}

/* =========================
   NAVBAR
========================= */
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
    background:white;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.logo{
    font-size:20px;
    font-weight:bold;
}

/* =========================
   HERO
========================= */
.hero{
    width:100%;
    height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;

    background:linear-gradient(135deg,#4f7cff,#7aa2ff);
    color:white;
}

.hero-content{
    max-width:900px;
}

.hero h1{
    font-size:60px;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    justify-content:center;
}

/* =========================
   BUTTONS
========================= */
.btn{
    background:white;
    color:#4f7cff;
    padding:12px 24px;
    border-radius:8px;
    font-weight:bold;
}

.btn-outline{
    border:2px solid white;
    padding:12px 24px;
    border-radius:8px;
    color:white;
}

/* =========================
   OVER MIJ
========================= */
#over-mij{
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

#over-mij p{
    max-width:700px;
    font-size:18px;
}

/* =========================
   PROJECTEN
========================= */
#projecten{
    max-width:1200px;
    margin:auto;
    padding-top:40px;
}

.project{
    display:flex;
    align-items:center;
    gap:80px;
    margin:60px 0;
}

.project img{
    width:500px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.project-text{
    max-width:500px;
}

.project-text h2{
    font-size:32px;
    margin-bottom:10px;
}

.project-text p{
    color:#555;
}

.project-text a{
    display:inline-block;
    margin-top:15px;
    padding:10px 20px;
    background:black;
    color:white;
    border-radius:6px;
}

.reverse{
    flex-direction:row-reverse;
}

/* =========================
   MOBILE
========================= */
@media (max-width:768px){

.menu{
    display:none;
    flex-direction:column;
    position:absolute;
    top:70px;
    right:20px;
    background:white;
    padding:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    border-radius:10px;
}

.menu.show{
    display:flex;
}

.menu-btn{
    display:block;
}

.project{
    flex-direction:column;
    gap:30px;
}

.project img{
    width:100%;
}

.hero h1{
    font-size:40px;
}

.hero p{
    font-size:18px;
}

}