body{
    margin:0;
    font-family:Arial, sans-serif;
    background:#6b8e23;
}

/* ===== HERO ===== */
.hero{
    background:white;
    text-align:center;
    padding:60px 20px;
}
.hero img{
    width:320px;
}
.hero h1{
    margin-top:20px;
    font-size:36px;
}
.hero p{
    font-size:18px;
    color:#555;
}
.hero-buttons{
    margin-top:30px;
}
.hero-buttons a{
    display:inline-block;
    margin:10px;
    padding:14px 30px;
    background:#ffeb3b;
    color:black;
    border:2px solid black;
    border-radius:800px;
    text-decoration:none;
    font-weight:bold;
}

/* ===== INFO BLOKKEN ===== */
.info{
    display:flex;
    justify-content:center;
    gap:20px;
    margin:40px auto;
    flex-wrap:wrap;
}
.info-box{
    background:white;
    width:260px;
    padding:20px;
    border-radius:12px;
    text-align:center;
    border:2px solid black;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.info-box h3{
    margin-bottom:10px;
}

/* ===== FATBIKE PROMO ===== */
.fatbike{
    background:#ffeb3b;
    margin:40px auto;
    width:80%;
    padding:30px;
    border-radius:15px;
    text-align:center;
    border:3px solid black;
}
.fatbike h2{
    margin-bottom:10px;
}

/* ===== REVIEW SECTIE ===== */
.review-section{
    margin:50px auto;
    width:80%;
}
.review-section h2{
    text-align:center;
}

/* ===== STERREN ===== */
.rating-box{
    background:#9da4aa;
    padding:15px;
    margin:20px auto;
    width:fit-content;
    border-radius:10px;
    display:flex;
    gap:15px;
    border:3px solid black;
}
.star{
    font-size:40px;
    cursor:pointer;
    color:white;
}
.star.selected{
    color:gold;
}

.review-box{
    width:100%;
    height:120px;
    border-radius:10px;
    border:2px solid #000;
    padding:15px;
    font-size:16px;
    resize:none;
    background:#6fb3ff;
}

.send-btn{
    margin-top:15px;
    padding:12px 30px;
    font-size:16px;
    background:#4CAF50;
    color:white;
    border:2px solid black;
    border-radius:8px;
    cursor:pointer;
}

/* ===== POPUP ===== */
.popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.6);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
}
.popup{
    background:white;
    padding:30px;
    border-radius:12px;
    width:400px;
    text-align:center;
}
.popup .code{
    font-size:24px;
    font-weight:bold;
    margin:15px 0;
    color:#4CAF50;
}
.popup button{
    padding:10px 25px;
    background:#4CAF50;
    color:white;
    border:2px solid black;
    border-radius:6px;
    cursor:pointer;
}
