/* =============================
   Verheecke Design – Style.css
   Donkere oranje portfolio-stijl
   ============================= */

:root {
  --bg: #0b0b0c;
  --panel: #121214;
  --muted: #9aa1ac;
  --text: #f5f7fb;
  --accent: #ff6a00;
  --accent-2: #ff852e;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --max: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  background: linear-gradient(180deg, #1a120c 0%, var(--bg) 12%);
  color: var(--text);
}

a {
  color: inherit;
}

.container {
  width: min(92%, var(--max));
  margin-inline: auto;
}

/* ------------------ HEADER ------------------ */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.brand .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 24px var(--accent);
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
}

.nav a {
  color: #cbd2dd;
  text-decoration: none;
  font-weight: 600;
}

.nav a:hover,
.nav a.active {
  color: var(--accent);
}

/* ------------------ HERO ------------------ */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  padding: 56px 0;
}

.kicker {
  color: #d8ddf0;
  opacity: 0.7;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.hero h1 {
  font-size: clamp(28px, 4.6vw, 44px);
  margin: 10px 0 8px;
  line-height: 1.12;
}

.hero .role {
  color: var(--accent);
  font-weight: 800;
}

.hero p {
  color: var(--muted);
  margin: 14px 0 22px;
  max-width: 60ch;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #111;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.btn:hover {
  background: var(--accent-2);
}

/* ------------------ PROFIELFOTO ------------------ */
.pfp-wrap {
  display: grid;
  place-items: center;
}

.pfp {
  width: min(320px, 70%);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #1a1a1a;
  position: relative;
  box-shadow: 0 0 0 6px rgba(255, 106, 0, 0.35), 0 0 64px 12px rgba(255, 106, 0, 0.25);
}

/* ------------------ SECTIES ------------------ */
section {
  padding: 42px 0;
}

.section-title {
  font-size: clamp(22px, 3.2vw, 32px);
  text-align: center;
  margin: 10px 0 22px;
}

.section-title .acc {
  color: var(--accent);
}

/* ------------------ ABOUT ------------------ */
.about {
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.about p {
  color: var(--muted);
  max-width: 80ch;
  margin-inline: auto;
  text-align: center;
}

.about .cta {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}



/* ------------------ DIENSTEN ------------------ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  text-align: center;
}

.card h3 {
  margin: 8px 0;
}

.card p {
  color: var(--muted);
}

/* ------------------ PORTFOLIO ------------------ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.thumb {
  background: #141417;
  border-radius: 14px;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  color: #7f8796;
  border: 1px dashed #2b2f37;
}
/* Portfolio thumbs als klikbare kaarten met afbeelding */
.thumb {
  background: #141417;
  border-radius: 14px;
  aspect-ratio: 16 / 10;
  display: block;               /* <a> wordt blok */
  overflow: hidden;
  border: 1px solid #2b2f37;    /* subtiele rand */
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;             /* vult het kader mooi op */
  display: block;
}

.thumb:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
}
/* ------------------ CONTACT ------------------ */
.contact {
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  text-align: center;
}

.contact a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 800;
}

/* ------------------ FOOTER ------------------ */
footer {
  color: #a2a9b6;
  opacity: 0.9;
  text-align: center;
  padding: 28px 0;
}

/* ------------------ RESPONSIVE ------------------ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero p {
    margin-inline: auto;
  }
  .pfp {
    width: 220px;
  }
  .cards,
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .nav ul {
    gap: 14px;
  }
  .cards,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}
/* ---------------- CONTACT PAGE ---------------- */
.contact-page { padding: 44px 0 64px; }

.contact-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.page-title { font-size: clamp(28px, 4vw, 42px); margin: 0 0 10px; }
.muted { color: var(--muted); margin-bottom: 18px; }

.contact-info .contact-block { margin: 18px 0; }
.contact-info a { color: var(--accent); text-decoration: none; }
.contact-info a:hover { color: var(--accent-2); }

/* Kaart */
.map-card {
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px;
}
.map-ratio { position: relative; width: 100%; aspect-ratio: 16/10; overflow: hidden; border-radius: 12px; }
.map-ratio iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Form */
.contact-form .form {
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}
.form label { display: block; margin-bottom: 14px; }
.form label span { display: block; color: #cdd3df; margin-bottom: 6px; }
.form input, .form textarea {
  width: 100%;
  background: #0e0e10;
  color: var(--text);
  border: 1px solid #2a2d34;
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form input:focus, .form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,106,0,.15);
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn.wide { width: 100%; margin-top: 8px; }

/* Responsive */
@media (max-width: 900px){
  .contact-wrap{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
}