/*
Theme Name: Werk Sneller Met AI
Theme URI: https://werksnellermetai.nl
Author: Eric Sijbesma
Author URI: https://werksnellermetai.nl
Description: Officieel thema voor werksnellermetai.nl — donkerblauw, goud, DM Sans.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: werksnellermetai
*/

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-bg:       #0D1B2A;
  --color-bg-mid:   #111d2e;
  --color-bg-light: #F7F5F0;
  --color-gold:     #F5A623;
  --color-gold-dk:  #D4891A;
  --color-white:    #ffffff;
  --color-text:     rgba(255,255,255,0.75);
  --color-text-dim: rgba(255,255,255,0.55);
  --color-dark-txt: #0a0f1e;
  --color-gray-txt: #374151;
  --font-head:      'DM Sans', sans-serif;
  --font-sub:       'Montserrat', sans-serif;
  --font-body:      'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sub);
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, border-color 0.2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--color-gold);
  color: var(--color-bg);
}
.btn-gold:hover { background: var(--color-gold-dk); }

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline:hover { border-color: var(--color-white); }

/* ── Section labels ── */
.section-label {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
  display: block;
}

/* ── Section headings ── */
.section-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 24px;
}

/* ── Check list ── */
.check-list { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
}
.check-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F5A623' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 2px;
}

/* ── Gold accent line ── */
.gold-line {
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-dk) 60%, transparent 100%);
  border: none;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .btn { padding: 13px 22px; font-size: 0.82rem; }
}
