/* ===================================================
   FitnessKiezen — Base
   Variables, reset, typography, container, buttons, sections
   =================================================== */

:root {
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --accent: #22C55E;
  --accent-dark: #16A34A;
  --dark: #111827;
  --text: #374151;
  --text-light: #6B7280;
  --border: #E5E7EB;
  --bg: #FFFFFF;
  --bg-light: #F9FAFB;
  --radius: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  line-height: 1.3;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-sm {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.82rem;
  background: var(--primary);
  color: #fff;
}
.btn-sm:hover { background: var(--primary-dark); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--dark);
  color: var(--dark);
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
}
.btn-outline:hover {
  background: var(--dark);
  color: #fff;
}

/* ===== SECTIONS ===== */
.section {
  padding: 50px 0;
}
.section-gray {
  background: var(--bg-light);
}
.section-flush {
  padding-top: 0;
}
.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.section-subtitle {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 28px;
}

/* ===== IMG PLACEHOLDER ===== */
.img-placeholder {
  width: 100%;
  height: 300px;
  background: var(--bg-light);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.85rem;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: #fff;
  padding: 16px 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.85rem;
  line-height: 1.5;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.cookie-banner p {
  margin: 0;
  max-width: 700px;
}
.cookie-banner a {
  color: var(--primary);
  text-decoration: underline;
}
.cookie-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.cookie-btn:hover { background: var(--primary-dark); }

/* ===== RESPONSIVE (base) ===== */
@media (max-width: 768px) {
  .cookie-banner { flex-direction: column; text-align: center; gap: 12px; padding: 16px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-title { font-size: 1.2rem; }
  .section { padding: 35px 0; }
  .cookie-banner { font-size: 0.8rem; }
  .cookie-btn { width: 100%; }
}
