/* ============================================================
   StreamArt – Nieuwe CSS 2026
   Schone basis, correcte kleuren, geen overlap
   ============================================================ */

/* Kleuren */
:root{
  --blue: #2E86C1;
  --orange: #FF6A00;
  --yellow: #F4D03F;
  --white: #FFFFFF;
  --lightgrey: #DDE7F5;
  --dark: #222;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --max: 1200px;
  --font: Inter, Arial, sans-serif;
}

/* Reset */
*{margin:0;padding:0;box-sizing:border-box}
body{
  font-family:var(--font);
  background:var(--lightgrey);
  color:var(--dark);
  line-height:1.5;
}
.container{
  max-width:var(--max);
  margin:auto;
  padding:20px;
}

/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */
.hero{
  background: var(--blue);
  color: var(--white);
  padding:30px 20px;
  text-align:center;
}
.hero h1{
  font-size:1.9rem;
  margin-bottom:10px;
}
.hero p{
  opacity:0.95;
  margin-bottom:20px;
}
.buttons{
  display:flex;
  justify-content:center;
  gap:14px;
}
.btn{
  padding:12px 20px;
  border-radius:8px;
  font-weight:700;
  text-decoration:none;
  display:inline-block;
}
.btn.yellow{background:var(--yellow);color:#000}
.btn.blue{background:var(--blue);color:#fff}

/* ------------------------------------------------------------
   SPLIT SECTIE
   ------------------------------------------------------------ */
.split{
  display:flex;
  gap:20px;
  margin-top:40px;
}
.panel{
  flex:1;
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
  min-height:360px;
}

/* Linker paneel */
.panel.left{
  background:var(--blue);
  color:#fff;
}
.panel.left h2{color:#fff}

/* Rechter paneel */
.panel.right{
  background:var(--orange);
  color:#fff;
}
.panel.right h2{color:#fff}

/* Bullets */
.features{
  list-style:none;
  margin:15px 0;
}
.features li{
  background:rgba(255,255,255,0.15);
  padding:10px;
  border-radius:8px;
  margin-bottom:8px;
  font-weight:600;
}

/* Formulieren */
.mini-form{
  margin-top:20px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.mini-form input{
  padding:10px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.4);
  background:#fff;
  color:#000;
}
.mini-form button{
  background:#fff;
  color:#000;
  padding:12px;
  border-radius:8px;
  font-weight:700;
  border:none;
  cursor:pointer;
}

/* ------------------------------------------------------------
   WHY / CASE
   ------------------------------------------------------------ */
.why{
  margin-top:40px;
}
.case{
  background:#fff;
  padding:20px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  margin-top:15px;
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.footer{
  background:#222;
  color:#fff;
  padding:20px;
  margin-top:40px;
  border-radius:10px;
  text-align:center;
}
.footer a{
  color:var(--yellow);
  text-decoration:none;
  margin-left:10px;
}

/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */
@media(max-width:900px){
  .split{
    flex-direction:column;
  }
}
