/*
Theme Name: APC Center Theme
Theme URI: https://www.apccentertest.be
Author: APC-Center
Author URI: https://www.apccentertest.be
Description: Professioneel WordPress starter theme voor APC-Center.
Version: 0.4.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: apc-center-theme
*/

:root {
  --bg: #f4f7f6;
  --surface: #ffffff;
  --ink: #12262e;
  --muted: #607179;
  --line: #d8e0e3;
  --brand: #0f8b8d;
  --brand-dark: #0b5f63;
  --radius: 14px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

a { color: var(--brand-dark); text-decoration: none; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 247, 246, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--ink);
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-menu a {
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
}

.primary-menu a:hover,
.primary-menu .current-menu-item a {
  background: #e6f2f2;
}

.hero {
  padding: 3.2rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.btn {
  display: inline-block;
  border-radius: 10px;
  padding: 0.6rem 0.9rem;
  font-weight: 600;
}

.btn-primary { background: var(--brand); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }

.section {
  padding: 2.2rem 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.site-main {
  min-height: 62vh;
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 2rem;
  background: #eff3f3;
}

.footer-inner {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.page-content {
  padding: 2rem 0;
}

@media (max-width: 900px) {
  .hero-grid,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
