/* ============================================================================
   ojn-it.nl — landing page styles
   Recreated from the Vindjouwvakman design handoff as standalone CSS.
   ========================================================================== */

:root {
  --primary:              #2A7AFA;
  --primary-hover:        #1f6ae0;
  --primary-container:    #E4EEFF;
  --primary-container-on: #0B4AA2;
  --success:              #388E3C;

  --bg:          #ffffff;
  --surface-2:   #f5f6f8;
  --grey-50:     #e9ebef;   /* progress-bar track */
  --divider:     #e5e7eb;
  --border:      #d5d8de;

  --fg-strong:   #262a30;
  --fg:          #3f434a;
  --fg-muted:    #757b85;

  --shadow-card:     0 1px 2px rgba(18, 24, 40, .04), 0 2px 6px rgba(18, 24, 40, .05);
  --shadow-elevated: 0 4px 12px rgba(18, 24, 40, .08), 0 18px 40px rgba(18, 24, 40, .10);

  --font-sans: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --maxw: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3 { margin: 0; }

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

/* Material Symbols */
.ms {
  font-family: "Material Symbols Rounded";
  font-weight: normal; font-style: normal; line-height: 1;
  letter-spacing: normal; -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
}

@keyframes barIn { from { width: 0; } }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; border-radius: 100px; cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn .ms { font-size: 20px; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-card); padding: 14px 24px; font-size: 15px; }
.btn-primary:hover { background: var(--primary-hover); }
.btn-secondary { background: #fff; color: var(--fg); border: 1px solid var(--border); padding: 13px 22px; font-size: 15px; }
.btn-secondary:hover { border-color: var(--fg); background: var(--surface-2); }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-sm .ms { font-size: 18px; }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-lg .ms { font-size: 21px; }

/* ── Chips (icon tiles) ───────────────────────────────────────────────────── */
.chip { display: grid; place-items: center; border-radius: 12px; flex: none; }
.chip--primary { width: 48px; height: 48px; background: var(--primary-container); color: var(--primary-container-on); }
.chip--primary .ms { font-size: 26px; }
.chip--surface { width: 42px; height: 42px; border-radius: 11px; background: var(--surface-2); color: var(--primary); }
.chip--surface .ms { font-size: 22px; }

/* ── Nav ──────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--divider);
}
.nav-inner { height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; color: var(--fg-strong); }
.logo-badge {
  width: 34px; height: 34px; border-radius: 10px; background: var(--primary);
  color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 15px; letter-spacing: -.02em;
}
.logo-badge--sm { width: 28px; height: 28px; border-radius: 8px; font-size: 12px; }
.logo-name { font-weight: 700; font-size: 16px; letter-spacing: -.01em; }
.logo-tld { color: var(--fg-muted); font-weight: 500; }

.nav-right { display: flex; align-items: center; gap: 28px; }
.navlinks { display: flex; align-items: center; gap: 26px; }
.navlinks a { font-weight: 600; font-size: 14px; color: var(--fg-muted); transition: color .15s ease; }
.navlinks a:hover { color: var(--fg-strong); }

.lang { display: inline-flex; padding: 3px; background: var(--surface-2); border-radius: 100px; font-weight: 700; font-size: 12.5px; }
.lang button {
  border: none; background: transparent; color: var(--fg-muted);
  padding: 6px 13px; border-radius: 100px; cursor: pointer; font: inherit;
  transition: background .15s ease, color .15s ease;
}
.lang button.is-active { background: var(--primary); color: #fff; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  padding-top: 84px; padding-bottom: 72px;
  display: grid; grid-template-columns: 1.35fr .9fr; gap: 56px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px;
  background: var(--primary-container); color: var(--primary-container-on);
  border-radius: 100px; font-weight: 600; font-size: 13px; margin-bottom: 22px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); }
.hero h1 { font-weight: 800; font-size: 52px; line-height: 1.06; letter-spacing: -.03em; color: var(--fg-strong); margin-bottom: 20px; }
.lead { font-size: 18px; line-height: 1.6; color: var(--fg-muted); max-width: 46ch; margin: 0 0 32px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }
.stats { display: flex; gap: 40px; }
.stat-num { font-weight: 800; font-size: 30px; letter-spacing: -.02em; color: var(--fg-strong); }
.stat-label { font-size: 13px; color: var(--fg-muted); margin-top: 2px; }

.hero-photo { justify-self: center; }
.photo-wrap { position: relative; }
.photo-card { width: 300px; height: 340px; border-radius: 20px; overflow: hidden; background: var(--surface-2); box-shadow: var(--shadow-elevated); }
.photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-badge {
  position: absolute; left: -22px; bottom: 26px; background: #fff; border-radius: 14px;
  padding: 14px 18px; box-shadow: var(--shadow-elevated); display: flex; align-items: center; gap: 12px;
}
.photo-badge .chip--primary { width: 40px; height: 40px; border-radius: 10px; }
.photo-badge .chip--primary .ms { font-size: 22px; }
.photo-badge-name { font-weight: 700; font-size: 14px; color: var(--fg-strong); }
.photo-badge-role { font-size: 12.5px; color: var(--fg-muted); }

/* ── Sections ─────────────────────────────────────────────────────────────── */
.section { padding-top: 84px; padding-bottom: 76px; }
.section--alt { background: var(--surface-2); border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); }

.kicker { font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--primary); margin-bottom: 12px; }
h2 { font-weight: 700; font-size: 34px; letter-spacing: -.02em; color: var(--fg-strong); }
.section-head { max-width: 620px; margin-bottom: 44px; }
.section-head h2 { margin-bottom: 14px; }
.section-lead { font-size: 16.5px; line-height: 1.6; color: var(--fg-muted); margin: 0; }

/* About */
.about-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 56px; }
.about-grid h2 { font-size: 32px; }
.about-body { font-size: 17px; line-height: 1.7; color: var(--fg); margin: 0 0 24px; }
.qualities { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; }
.quality { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; line-height: 1.5; color: var(--fg); }
.quality .ms { font-size: 20px; color: var(--primary); margin-top: 1px; flex: none; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: #fff; border-radius: 16px; padding: 28px; box-shadow: var(--shadow-card); border: 1px solid var(--divider); display: flex; flex-direction: column; }
.service-card .chip { margin-bottom: 18px; }
.service-card h3 { font-weight: 700; font-size: 19px; letter-spacing: -.01em; color: var(--fg-strong); margin-bottom: 8px; }
.service-card p { font-size: 14.5px; line-height: 1.6; color: var(--fg-muted); margin: 0 0 18px; }
.service-items { list-style: none; margin: auto 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.service-items li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--fg); }
.service-items .ms { font-size: 17px; color: var(--primary); }

/* Skills */
.skills-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.skill-card { background: #fff; border-radius: 14px; padding: 22px 24px; border: 1px solid var(--divider); border-left: 3px solid var(--primary); box-shadow: var(--shadow-card); }
.skill-label { font-weight: 700; font-size: 16px; color: var(--fg-strong); margin-bottom: 5px; }
.skill-text { font-size: 14px; line-height: 1.55; color: var(--fg-muted); }

/* Tech */
.tech-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 56px; }
.tech-item .tech-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 7px; }
.tech-name { font-weight: 600; font-size: 14.5px; color: var(--fg); }
.tech-level { font-weight: 600; font-size: 12.5px; color: var(--fg-muted); }
.track { height: 7px; background: var(--grey-50); border-radius: 100px; overflow: hidden; }
.fill { height: 100%; border-radius: 100px; background: var(--primary); animation: barIn 1s ease-out; }

/* Contact */
.section-contact { padding-top: 20px; padding-bottom: 96px; }
.contact-card { background: #fff; border: 2px solid var(--primary); border-radius: 24px; padding: 56px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; box-shadow: var(--shadow-elevated); }
.contact-card h2 { font-weight: 800; margin-bottom: 14px; }
.contact-card .section-lead { margin-bottom: 28px; max-width: 42ch; }
.contact-list { display: flex; flex-direction: column; gap: 4px; }
.contact-row { display: flex; align-items: center; gap: 14px; padding: 14px 12px; border-radius: 12px; transition: background .15s ease; }
.contact-row:hover { background: var(--surface-2); }
.contact-kind { display: block; font-size: 12px; color: var(--fg-muted); margin-bottom: 1px; }
.contact-val { display: block; font-weight: 600; font-size: 15px; color: var(--fg-strong); }

/* Footer */
.footer { border-top: 1px solid var(--divider); background: var(--surface-2); }
.footer-inner { padding-top: 28px; padding-bottom: 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--fg-muted); }
.footer-links { display: flex; gap: 20px; font-size: 14px; }
.footer-links a { color: var(--fg-muted); font-weight: 600; transition: color .15s ease; }
.footer-links a:hover { color: var(--fg-strong); }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 56px; }
  .hero h1 { font-size: 40px; }
  .hero-photo { justify-self: start; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; gap: 18px; }
  .contact-card { grid-template-columns: 1fr; gap: 32px; padding: 36px; }
  .section { padding-top: 60px; padding-bottom: 56px; }
}

@media (max-width: 720px) {
  .navlinks { display: none; }
  .hero h1 { font-size: 34px; }
  .stats { gap: 26px; }
  .qualities { grid-template-columns: 1fr; }
  .photo-badge { left: 12px; }
}
