/* =========================================================
   Dart-Events.be — Frontend stylesheet
   Huisstijl: wit + blauw (#1971be)
   ========================================================= */

:root{
  --de-blue: #1971be;
  --de-blue-dark: #0f4d85;
  --de-blue-light: #eaf3fb;
  --de-blue-soft: #4a95d6;
  --de-dark: #0e2438;
  --de-gray: #667488;
  --de-radius: 18px;
  --de-radius-sm: 10px;
  --de-shadow: 0 10px 30px rgba(15, 77, 133, .10);
  --de-shadow-lg: 0 20px 50px rgba(15, 77, 133, .18);
  font-size: 16px;
}

*{ box-sizing: border-box; }

body{
  font-family: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--de-dark);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .display-font{
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--de-dark);
}

a{ text-decoration: none; color: var(--de-blue); }
a:hover{ color: var(--de-blue-dark); }

.text-blue{ color: var(--de-blue) !important; }
.bg-blue{ background: var(--de-blue) !important; }
.bg-blue-light{ background: var(--de-blue-light) !important; }

/* -------------------- Buttons -------------------- */
.btn{
  border-radius: 50px;
  font-weight: 600;
  padding: .7rem 1.7rem;
  letter-spacing: .01em;
  transition: all .2s ease;
}
.btn-primary{
  background: var(--de-blue);
  border-color: var(--de-blue);
}
.btn-primary:hover, .btn-primary:focus{
  background: var(--de-blue-dark);
  border-color: var(--de-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(25,113,190,.3);
}
.btn-outline-primary{
  color: var(--de-blue);
  border-color: var(--de-blue);
  border-width: 2px;
}
.btn-outline-primary:hover{
  background: var(--de-blue);
  border-color: var(--de-blue);
  transform: translateY(-2px);
}
.btn-outline-light{ border-width: 2px; font-weight: 600; }
.btn-lg{ padding: .9rem 2.2rem; font-size: 1.05rem; }

/* -------------------- Top bar -------------------- */
.de-topbar{
  background: var(--de-dark);
  color: #cfe3f5;
  font-size: .85rem;
  padding: .45rem 0;
}
.de-topbar a{ color: #cfe3f5; }
.de-topbar a:hover{ color: #fff; }
.de-topbar .sep{ opacity:.35; margin: 0 .6rem; }

/* -------------------- Navbar -------------------- */
.de-navbar{
  background: #ffffff;
  padding: .7rem 0;
  transition: box-shadow .25s ease, padding .25s ease;
  position: sticky;
  top: 0;
  z-index: 1030;
}
.de-navbar.scrolled{
  box-shadow: 0 8px 25px rgba(14,36,56,.08);
  padding: .4rem 0;
}
.de-navbar .navbar-brand img{
  height: 90px;
  transition: height .2s ease;
}
.de-navbar.scrolled .navbar-brand img{ height: 44px; }

.de-nav-link{
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .03em;
  color: var(--de-dark) !important;
  padding: .6rem 1rem !important;
  position: relative;
}
.de-nav-link::after{
  content:"";
  position:absolute;
  left: 1rem; right: 1rem; bottom: .25rem;
  height: 3px;
  background: var(--de-blue);
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.de-nav-link:hover::after,
.de-nav-link.active::after{ transform: scaleX(1); }
.de-nav-link.active{ color: var(--de-blue) !important; }

.de-cart-btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--de-blue-light);
  border: 2px solid transparent;
  color: var(--de-blue-dark);
  font-weight: 700;
  border-radius: 50px;
  padding: .5rem 1.1rem;
  transition: all .2s ease;
}
.de-cart-btn:hover{
  background: var(--de-blue);
  color: #fff;
}
.de-cart-badge{
  position: absolute;
  top: -6px; right: -6px;
  background: #ff5a5f;
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  min-width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}

.de-cart-dropdown{
  width: 340px;
  border: none;
  border-radius: var(--de-radius);
  box-shadow: var(--de-shadow-lg);
  padding: 1rem;
}
.de-cart-item{
  display: flex;
  gap: .75rem;
  align-items: center;
  padding: .5rem 0;
  border-bottom: 1px solid #eef2f6;
}
.de-cart-item img{
  width: 52px; height: 52px; object-fit: cover;
  border-radius: 10px;
  background: var(--de-blue-light);
}

/* -------------------- Hero -------------------- */
.de-hero{
  position: relative;
  background: linear-gradient(120deg, var(--de-dark) 0%, var(--de-blue-dark) 55%, var(--de-blue) 100%);
  color: #fff;
  overflow: hidden;
  padding: 5.5rem 0 6.5rem;
}
.de-hero::before{
  content:"";
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 70%);
  top: -220px; right: -220px;
}
.de-hero::after{
  content:"";
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,.12);
  bottom: -260px; left: -160px;
}
.de-hero .eyebrow{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  padding: .35rem .9rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.de-hero h1{
  color: #fff;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 1.1;
}
.de-hero p.lead{
  color: #d9e8f7;
  font-size: 1.15rem;
  max-width: 560px;
}
.de-hero-target{
  width: 310px; height: 310px;
  border-radius: 50%;
  /* background: repeating-radial-gradient(circle, #fff 0, #fff 10px, var(--de-blue) 10px, var(--de-blue) 20px, #fff 20px, #fff 30px, #d21f1f 30px, #d21f1f 40px); */
  background: url('/assets/img/dartboard.webp') center/cover no-repeat;
  box-shadow: var(--de-shadow-lg);
  margin: 0 auto;
  position: relative;
}
.de-hero-target::after{
  content:"";
  position: absolute;
  inset: 0; margin: auto;
  width: 26px; height: 26px;
  background: #3fb62a;
  border-radius: 50%;
  border: 4px solid #f5e0be;
}

.de-stats-strip{
  background: #fff;
  border-radius: var(--de-radius);
  box-shadow: var(--de-shadow-lg);
  padding: 1.75rem 1rem;
  margin-top: -4.5rem;
  position: relative;
  z-index: 5;
}
.de-stats-strip .stat-num{
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--de-blue);
}
.de-stats-strip .stat-label{
  color: var(--de-gray);
  font-size: .88rem;
  font-weight: 600;
}

/* -------------------- Page header (sub pages) -------------------- */
.de-page-header{
  background: linear-gradient(120deg, var(--de-dark) 0%, var(--de-blue-dark) 60%, var(--de-blue) 100%);
  color: #fff;
  padding: 3.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.de-page-header::after{
  content:"";
  position:absolute; width:420px; height:420px; border-radius:50%;
  background: radial-gradient(circle, rgba(255,255,255,.12) 0%, rgba(255,255,255,0) 70%);
  top:-160px; right:-120px;
}
.de-page-header h1{ color:#fff; font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.de-breadcrumb{ font-size:.85rem; color:#bcd8f2; }
.de-breadcrumb a{ color:#bcd8f2; }
.de-breadcrumb a:hover{ color:#fff; }

/* -------------------- Sections -------------------- */
.de-section{ padding: 4.5rem 0; }
.de-section-sm{ padding: 3rem 0; }
.de-kicker{
  color: var(--de-blue);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.de-section h2{ font-size: clamp(1.6rem, 2.6vw, 2.3rem); }
.de-lead-muted{ color: var(--de-gray); font-size: 1.05rem; }

/* -------------------- Cards -------------------- */
.de-card{
  background: #fff;
  border-radius: var(--de-radius);
  box-shadow: var(--de-shadow);
  border: 1px solid #eef2f7;
  padding: 2rem 1.6rem;
  /* height: 100%; */
  transition: transform .25s ease, box-shadow .25s ease;
}
.de-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--de-shadow-lg);
}
.de-icon-badge{
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--de-blue-light);
  color: var(--de-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
}

.de-feature-row{
  display:flex; align-items:flex-start; gap:1rem;
  /* padding: .3rem 0; */
  padding: 5px 0px 0px 35px;
 color: var(--de-gray); font-size: 1.0rem; 
}
/* .de-feature-row .dot{
  width: 20px; height: 20px; min-width:20px;
  border-radius: 80%;
  background: var(--de-blue);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-weight:700;
} */

.de-feature-row .dot{
  width: 20px; height: 20px; min-width:20px;
  border-radius: 50%;
  /* background: var(--de-blue); */
  color:var(--de-blue);
  display:flex; align-items:bottom; justify-content:center;
  font-weight:700;
}

/* -------------------- CTA banner -------------------- */
.de-cta{
  background: linear-gradient(120deg, var(--de-blue) 0%, var(--de-blue-dark) 100%);
  border-radius: var(--de-radius);
  color: #fff;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.de-cta::after{
  content:"";
  position:absolute; width:260px; height:260px; border-radius:50%;
  background: rgba(255,255,255,.08);
  right:-80px; bottom:-100px;
}
.de-cta h2, .de-cta h3{ color:#fff; }

/* -------------------- Product cards -------------------- */
.de-product-card{
  background:#fff;
  border-radius: var(--de-radius);
  overflow:hidden;
  border: 1px solid #eef2f7;
  box-shadow: var(--de-shadow);
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
  display:flex; flex-direction:column;
}
.de-product-card:hover{ transform: translateY(-6px); box-shadow: var(--de-shadow-lg); }
.de-product-card .img-wrap{
  background: var(--de-blue-light);
  aspect-ratio: 1/1;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.de-product-card .img-wrap img{ width:100%; height:100%; object-fit:cover; }
.de-product-card .body{ padding: 1.1rem 1.2rem 1.3rem; display:flex; flex-direction:column; flex:1; }
.de-product-card .price{ font-weight:800; color:var(--de-blue); font-size:1.2rem; }
.de-cat-pill{
  display:inline-block;
  background: var(--de-blue-light);
  color: var(--de-blue-dark);
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .7rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing:.04em;
}

.de-cat-filter .btn{
  border-radius: 50px;
  font-weight: 600;
  font-size:.88rem;
}

/* -------------------- Rich text (workshop-beschrijving) -------------------- */
.workshop-rich-text p{ margin-bottom:.6rem; }
.workshop-rich-text ul, .workshop-rich-text ol{ padding-left: 1.2rem; margin-bottom:.6rem; }
.workshop-rich-text li{ margin-bottom:.25rem; }
.workshop-rich-text strong{ color: var(--de-dark); }
.workshop-rich-text h2, .workshop-rich-text h3{ font-size:1.05rem; margin:.8rem 0 .4rem; color: var(--de-dark); }
.workshop-rich-text a{ color: var(--de-blue); text-decoration: underline; }

/* -------------------- Forms -------------------- */
.de-form-card{
  background:#fff;
  border-radius: var(--de-radius);
  box-shadow: var(--de-shadow-lg);
  padding: 2.2rem;
  border: 1px solid #eef2f7;
}
.form-label{ font-weight:600; font-size:.9rem; color: var(--de-dark); }
.form-control, .form-select{
  border-radius: var(--de-radius-sm);
  border: 1.5px solid #e1e8f0;
  padding: .65rem .9rem;
}
.form-control:focus, .form-select:focus{
  border-color: var(--de-blue);
  box-shadow: 0 0 0 .2rem rgba(25,113,190,.15);
}

/* -------------------- Footer -------------------- */
.de-footer{
  background: var(--de-dark);
  color: #b9cadd;
  padding-top: 4rem;
}
.de-footer h5{
  color:#fff;
  font-weight:700;
  margin-bottom:1.2rem;
  font-size:1.05rem;
}
.de-footer a{ color:#b9cadd; }
.de-footer a:hover{ color:#fff; }
.de-footer .footer-logo img{ height:80px; margin-bottom:1rem; }
.de-footer ul{ list-style:none; padding:0; margin:0; }
.de-footer ul li{ margin-bottom:.6rem; }
.de-footer .social-btn{
  width:38px; height:38px;
  border-radius:50%;
  background: rgba(255,255,255,.08);
  display:inline-flex; align-items:center; justify-content:center;
  color:#fff; margin-right:.5rem;
  transition: background .2s ease;
}
.de-footer .social-btn:hover{ background: var(--de-blue); }
.de-footer .footer-bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 2.5rem;
  padding: 1.3rem 0;
  font-size: .85rem;
  color: #7f93a9;
}
.de-newsletter-band{
  background: var(--de-blue-dark);
  padding: 2.3rem 0;
}
.de-newsletter-band h3{ color:#fff; font-size:1.2rem; }
.de-newsletter-band .ico{ color:#fff; padding: 0; text-align: center; font-size:2.2rem; }
.de-newsletter-band .form-control{ border-radius: 50px 0 0 50px; border:none; padding: .8rem 1.2rem; }
.de-newsletter-band .btn{ border-radius: 0 50px 50px 0; }

/* -------------------- Utilities -------------------- */
.rounded-de{ border-radius: var(--de-radius) !important; }
.shadow-de{ box-shadow: var(--de-shadow) !important; }
.hover-lift{ transition: transform .2s ease; }
.hover-lift:hover{ transform: translateY(-4px); }

@media (max-width: 991.98px){
  .de-hero{ padding: 3rem 0 4.5rem; text-align:center; }
  .de-hero p.lead{ margin-left:auto; margin-right:auto; }
  .de-hero-target{ margin-top: 2rem; }
  .de-stats-strip{ margin-top: 1.5rem; }
  .de-newsletter-band .form-control,
  .de-newsletter-band .btn{ border-radius: 50px; margin-bottom:.5rem; }
}

@media (max-width: 575.98px){
  .de-form-card{ padding: 1.4rem; }
  .de-cta{ padding: 2rem 1.4rem; text-align:center; }
}
