/* CSS (bestel.css) */
/* ===== Reset & Basis ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #eef6f4;
  color: #222;
 
  line-height: 1.6;
  min-height: 100vh;
}
/* ===== Order Sectie ===== */
.order {
  max-width: 900px;
  width:100%;
  margin: 4rem auto;
  padding: 0 6vw;
  text-align: center;

  display: flex; 
  flex-direction: column; 
  align-items: center; 
}
.order h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}
.order p {
  font-size: 1.05rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
/* ===== Links Container ===== */
.order__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
/* ===== CTA Buttons ===== */
.order__cta {
  flex: 1 1 180px;
  max-width: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}
/* Platform kleuren + gradient subtiel */
.order__cta--apple {
  background: linear-gradient(135deg, #a3aaae, #858c91);
}
.order__cta--google {
  background: linear-gradient(135deg, #4285f4, #357ae8);
}
.order__cta--amazon {
  background: linear-gradient(135deg, #ff9900, #e07b00);
}
.order__cta--kobo {
  background: linear-gradient(135deg, #4ad885, #38b76d);
}
/* Hover effect */
.order__cta:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 25px rgba(0,0,0,0.18);
}
/* Icon in button */
.order__icon {
  width: 24px;
  height: 24px;
}



a.voorw {
    position: relative;
}

a.voorw::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: #010; /* BlanchedAlmond;*/
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

a.voorw:hover::before {
  visibility: visible;
  width: 75%;
  border-radius: 2px; 
}


/* =========================================
NAVIGATIE
========================================= */

.site-nav{

position:sticky;
top:0;
width: 100%;
background:rgba(255,255,255,0.85);
backdrop-filter:blur(6px);
border-bottom:1px solid rgba(0,0,0,0.05);
z-index:1000;

}

.site-nav__container{

max-width:1400px;
margin:auto;
padding:0.8rem 6vw;
display:flex;
align-items:center;
justify-content:space-between;

}

/* logo */

.site-nav__logo{

font-weight:600;
text-decoration:none;
color:#111;
font-size:1rem;

}

/* menu */

.site-nav__menu{

list-style:none;
display:flex;
gap:2rem;

}

.site-nav__menu a{

text-decoration:none;
color:#333;
font-weight:500;
transition:opacity .2s ease;

}

.site-nav__menu a:hover{

opacity:0.6;

}

/* menu knop */

.site-nav__toggle{
display:none;
font-size:1.4rem;
background:none;
border:none;
cursor:pointer;
}

@media (max-width:700px){

.site-nav__toggle{
display:block;

}

.site-nav__menu{

position:absolute;
top:60px;
right:0;
background:white;

flex-direction:column;
width:200px;
padding:1rem;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
display:none;

  }

.site-nav__menu.active{
display:flex;
  }
}

.order__note{
  margin-top:2rem;
  font-size:0.9rem;
  color:#666;
  text-align:center;
  max-width:600px;
  margin-left:auto;
  margin-right:auto;
}



/* ===== Responsive ===== */
@media (max-width: 900px) {
  .order__cta {
    flex: 1 1 40%;
  }
}
@media (max-width: 500px) {
  .order__cta {
    flex: 1 1 100%;
  }
}
