/* Learning Adventures — statische, veilige HTML/CSS versie
   Geen JavaScript, geen PHP, geen server-side functionaliteit. */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&family=PT+Sans:wght@400;700&display=swap');

:root {
  --primary: #F58549;
  --secondary: #31361C;
  --text: #292929;
  --accent: #EEC170;
  --bg-light: #FFFEF8;
  --rust: #772F1A;
  --olive: #6E7749;
  --peach-light: #FFECE2;
  --white: #FFFFFF;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--text);
  background: var(--bg-light);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: block;
  font-family: 'PT Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

h1, h2, h3, h4 {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.25;
  margin-top: 0;
}

h1 { font-size: 2.6rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em 0; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(245,133,73,0.35); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--secondary); }

/* Header */
.site-header {
  background: var(--secondary);
  padding: 18px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 48px; width: auto; }
.brand span {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.main-nav a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  border-bottom-color: var(--primary);
}
.main-nav .login-link {
  border: 1px solid var(--white);
  border-radius: 999px;
  padding: 8px 18px;
}
.main-nav .login-link:hover {
  background: var(--white);
  color: var(--secondary);
  border-bottom-color: transparent;
}

/* Hero */
.hero {
  background: var(--secondary);
  color: var(--white);
  padding: 80px 0 90px;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero p.lead { font-size: 1.15rem; color: #E7E4D8; margin-bottom: 32px; max-width: 46ch; }
.hero .hero-image img { border-radius: 16px; }

.page-hero {
  background: var(--secondary);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); }

/* Sections */
.section { padding: 80px 0; }
.section-alt { background: var(--peach-light); }
.section-dark { background: var(--secondary); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-header { max-width: 60ch; margin: 0 auto 48px; text-align: center; }

/* Pillars / cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.card {
  background: var(--white);
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(49,54,28,0.08);
}
.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

/* Process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 12px;
}
.step .num {
  font-family: 'PT Sans', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.5;
}

/* Logos strip */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
}
.logo-strip img {
  height: 64px;
  width: 64px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  padding: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card { text-align: center; }
.team-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 20px;
}
.team-card h3 { margin-bottom: 4px; }
.team-card .role { color: var(--primary); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.team-card .fav-game { font-size: 0.85rem; color: var(--olive); font-style: italic; }

/* Cases */
.case-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(49,54,28,0.08);
  margin-bottom: 24px;
}
.case-card .client {
  display: inline-block;
  background: var(--accent);
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.case-card .play-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary);
  font-weight: 700;
}
.case-card .note {
  font-size: 0.85rem;
  color: #6b6b6b;
}
.experience-list { list-style: none; padding: 0; margin: 0; }
.experience-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(49,54,28,0.12);
}
.experience-list strong { color: var(--secondary); }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(49,54,28,0.08);
  display: flex;
  flex-direction: column;
}
.blog-card h3 { margin-bottom: 10px; }
.blog-card p { color: #4b4b4b; flex-grow: 1; }
.blog-card .read-more { color: var(--primary); font-weight: 700; margin-top: 12px; }

.article {
  max-width: 74ch;
  margin: 0 auto;
}
.article h2 { margin-top: 1.6em; }
.article h3 { margin-top: 1.4em; color: var(--rust); }
.article blockquote {
  margin: 1.8em 0;
  padding: 18px 24px;
  border-left: 4px solid var(--primary);
  background: var(--peach-light);
  font-style: italic;
  color: var(--secondary);
}
.article ul, .article ol { padding-left: 1.4em; }
.article ul li, .article ol li { margin-bottom: 0.5em; }
.back-link {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--primary);
  font-weight: 700;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-card {
  background: var(--white);
  border-radius: 14px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(49,54,28,0.08);
}
.contact-card .row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(49,54,28,0.1);
}
.contact-card .row:last-child { border-bottom: none; }
.contact-card .label {
  font-weight: 700;
  color: var(--secondary);
  min-width: 110px;
}
.mail-btn {
  margin-top: 24px;
}

/* Footer */
.site-footer {
  background: var(--secondary);
  color: #D8D6C8;
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-grid h4 { color: var(--white); margin-bottom: 16px; font-size: 1rem; }
.footer-grid a { display: block; margin-bottom: 8px; color: #D8D6C8; }
.footer-grid a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  font-size: 0.85rem;
  color: #A9A78F;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .grid-3, .grid-2, .team-grid, .steps, .blog-grid, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  h1 { font-size: 2rem; }
  .section { padding: 56px 0; }
}
