/* ================================
   CHIRO KAART THEME – JeugdSite
   ================================ */

:root {
  --ck-bg: #f8fafc;
  --ck-bg-soft: #ffffff;
  --ck-primary: #e53935;
  --ck-primary-soft: #ffebee;
  --ck-secondary: #ffca28;
  --ck-accent: #1565c0;
  --ck-text: #1f2933;
  --ck-text-soft: #6b7280;
  --ck-radius-lg: 18px;
  --ck-radius-md: 12px;
  --ck-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

/* BASIS */

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: var(--ck-bg);
  color: var(--ck-text);
}

/* LINKS & BUTTONS */

a {
  color: var(--ck-accent);
  text-decoration: none;
}

.button,
button,
input[type="submit"] {
  display: inline-flex;
  padding: 0.7rem 1.4rem;
  background: var(--ck-primary);
  color: #fff;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--ck-shadow);
}

.button:hover,
button:hover,
input[type="submit"]:hover {
  background: #c62828;
}

/* ================================
   HEADER MET ACHTERGRONDFOTO
   ================================ */

header,
.site-header,
.topbar {
  position: relative;
  height: 300px;
  color: #fff;
  display: flex;
  align-items: center;

  /* ➜ JULLIE FOTO MET LICHTE OVERLAY */
  background:
    linear-gradient(rgba(255,255,255,0.70), rgba(255,255,255,0.70)),
    url("37766ff9-17f0-45cb-8b00-6b16e21b6f10.png")
    center/cover no-repeat;
  box-shadow: var(--ck-shadow);
}

header .inner,
.site-header .inner {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.logo-text,
.site-title {
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--ck-primary);
  text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* NAVIGATIE */

nav ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

nav a {
  color: #1f2937;
  font-weight: 600;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--ck-primary);
  transition: width 0.2s ease-out;
}

nav a:hover::after {
  width: 100%;
}

/* ================================
   CONTENT CONTAINERS
   ================================ */

.main,
.content,
#content {
  width: min(1100px, 90%);
  margin: 1.5rem auto;
}

.section-title {
  font-size: 1.6rem;
  color: var(--ck-primary);
  margin-bottom: 0.6rem;
}

/* CARDS */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--ck-bg-soft);
  padding: 1rem;
  border-radius: var(--ck-radius-md);
  box-shadow: var(--ck-shadow);
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 202, 40, 0.2), transparent 55%);
}

.card h3 {
  margin-top: 0;
  color: var(--ck-primary);
}

.card p {
  color: var(--ck-text-soft);
}

/* FORMULIEREN */

form .field {
  margin-bottom: 1rem;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  border-radius: 10px;
  padding: 0.6rem;
  border: 1px solid #d1d5db;
  background: #fff;
}

textarea {
  min-height: 120px;
}

/* ================================
   LICHTE FOOTER
   ================================ */

footer,
.site-footer {
  background: #f1f5f9; 
  color: var(--ck-text-soft);
  padding: 1.5rem 1rem;
  border-top: 3px solid var(--ck-primary);
  margin-top: 3rem;
}

footer .inner,
.site-footer .inner {
  width: min(1100px, 90%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

footer a {
  color: var(--ck-accent);
  font-weight: 500;
}

footer a:hover {
  color: var(--ck-primary);
}

/* RESPONSIVE */

@media (max-width: 768px) {
  nav ul {
    flex-wrap: wrap;
  }
}
