/*
Theme Name: Taalstreken
Theme URI: https://taalstreken.com
Author: Taalstreken
Description: Een eenvoudige one-page website voor Taalstreken.
Version: 1.1
Text Domain: taalstreken
*/

:root {
  --blue: #00b7ff;
  --green: #4be276;
  --text: #434343;
  --muted: #68737d;
  --light: #f5fbff;
  --soft-blue: #e8f8ff;
  --soft-green: #ecfff2;
  --border: #d9edf5;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(0, 183, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.narrow {
  width: min(760px, 92%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: clamp(190px, 22vw, 290px);
  height: auto;
  display: block;
}

.menu {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.menu a {
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding: 6px 0;
}

.menu a:hover {
  color: var(--blue);
  border-bottom-color: var(--green);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(0, 183, 255, 0.16), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(75, 226, 118, 0.18), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fcff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(75, 226, 118, 0.18);
  pointer-events: none;
}

.hero-grid,
.two-column {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  line-height: 1.12;
  margin-top: 0;
  color: var(--text);
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.hero-text {
  font-size: 1.18rem;
  max-width: 690px;
  color: var(--muted);
}

.hero-card,
.card,
.panel,
.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.hero-card {
  background: linear-gradient(145deg, var(--soft-blue), var(--soft-green));
  border: 0;
  position: relative;
  overflow: hidden;
}

.hero-mark {
  width: 128px;
  height: auto;
  display: block;
  margin-bottom: 22px;
}

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

::marker {
  color: var(--green);
}

.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  display: inline-block;
  padding: 13px 21px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 2px solid var(--blue);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.button.primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 10px 24px rgba(0, 183, 255, 0.22);
}

.button.secondary {
  background: white;
  color: var(--text);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(75, 226, 118, 0.24);
}

.section {
  padding: 84px 0;
}

.light {
  background: var(--light);
}

.accent {
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: white;
}

.accent h2,
.accent h3,
.accent .eyebrow,
.accent .price,
.accent .small {
  color: white;
}

.accent .panel {
  color: var(--text);
  background: rgba(255, 255, 255, 0.94);
  border: 0;
}

.accent .panel h3,
.accent .panel .price {
  color: var(--text);
}

.accent .panel .small {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.cards {
  display: grid;
  gap: 24px;
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  display: flex;
  flex-direction: column;
}

.card.featured {
  border: 2px solid var(--green);
  box-shadow: 0 18px 50px rgba(75, 226, 118, 0.16);
}

.price {
  margin-top: auto;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--blue);
}

.small {
  font-size: 0.95rem;
  color: var(--muted);
}

.center {
  text-align: center;
}

.center .button {
  margin-top: 28px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.step span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green);
  color: var(--text);
  font-weight: 800;
  margin-bottom: 16px;
}

details {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 20px;
  margin-bottom: 12px;
  box-shadow: 0 10px 30px rgba(0, 183, 255, 0.06);
}

summary {
  cursor: pointer;
  font-weight: 800;
}

.contact {
  background: #434343;
  color: white;
}

.contact h2,
.contact .eyebrow {
  color: white;
}

.contact .button.primary {
  background: var(--green);
  color: var(--text);
  border-color: var(--green);
}

.site-footer {
  background: #2f2f2f;
  color: white;
  padding: 40px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-logo {
  width: 220px;
  height: auto;
  display: block;
  background: white;
  border-radius: 12px;
  padding: 8px 10px;
  margin-bottom: 14px;
}

.site-footer h2 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.site-footer a {
  color: white;
}

@media (max-width: 900px) {
  .hero-grid,
  .two-column,
  .cards.three,
  .steps {
    grid-template-columns: 1fr;
  }

  .menu {
    display: none;
  }

  .nav {
    min-height: 72px;
  }

  .logo img {
    width: 210px;
  }

  .hero {
    padding: 72px 0;
  }

  .section {
    padding: 64px 0;
  }
}
