/* ═══════════════════════════════════════════
   MR HOSTLY — Stylesheet
   Wit met blauwe en oranje vlakken
═══════════════════════════════════════════ */

:root {
  --navy:        #1B2D5E;
  --navy-deep:   #142348;
  --navy-light:  #2A4080;
  --orange:      #E8A030;
  --orange-deep: #C8851A;
  --orange-soft: #FFF1DD;
  --blue-soft:   #EBF1FA;
  --cream:       #FAF7F0;
  --white:       #FFFFFF;
  --off-white:   #F9F8F4;
  --ink:         #1A1A1A;
  --text:        #2D2D2D;
  --muted:       #6B7280;
  --border:      #E5E7EB;
  --border-soft: #EFEDE5;
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Inter Tight', sans-serif;
  --nav-h: 72px;
  --max: 1200px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* NAVIGATIE */
nav.main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
  height: var(--nav-h);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; height: 100%;
  padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: baseline; gap: 4px; font-family: var(--font-display); font-size: 26px; font-weight: 700; letter-spacing: -0.02em; cursor: pointer; }
.nav-brand .mr { color: var(--navy); }
.nav-brand .hostly { color: var(--orange); }

.nav-links { display: flex; gap: 4px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text);
  padding: 8px 16px; border-radius: 8px;
  transition: all 0.2s; cursor: pointer;
}
.nav-links a:hover { background: var(--cream); color: var(--navy); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-links a.nav-cta {
  background: var(--navy); color: var(--white);
  padding: 10px 22px; font-weight: 600;
  transition: all 0.25s;
}
.nav-links a.nav-cta:hover { background: var(--orange); color: var(--white); transform: translateY(-1px); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.nav-mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 16px 32px 28px; flex-direction: column; z-index: 99;
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 16px; font-weight: 500; color: var(--text);
  padding: 14px 0; border-bottom: 1px solid var(--border-soft);
  cursor: pointer; transition: color 0.2s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover, .nav-mobile a.active { color: var(--navy); }
.nav-mobile .mob-cta {
  background: var(--navy); color: var(--white) !important;
  text-align: center; padding: 14px;
  margin-top: 14px; border-radius: 10px;
  border-bottom: none !important; font-weight: 600 !important;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 600;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-orange { background: var(--orange); color: var(--ink); }
.btn-orange:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,160,48,0.35); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--orange); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,160,48,0.35); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn-arrow::after { content: '→'; transition: transform 0.25s; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* FOOTER */
footer.main-footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: 72px 32px 32px;
  position: relative;
}
footer.main-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--orange) 30%, var(--orange) 70%, transparent);
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-block .footer-logo {
  font-family: var(--font-display); font-size: 30px; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.footer-brand-block .footer-logo .mr { color: var(--white); }
.footer-brand-block .footer-logo .hostly { color: var(--orange); }
.footer-brand-block p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.7); cursor: pointer; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
  font-size: 14px;
}
.footer-social a:hover { background: var(--orange); }

/* UTILITIES */
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 16px;
}
.section-eyebrow::before {
  content: ''; display: block; width: 24px; height: 2px;
  background: var(--orange); border-radius: 2px;
}

/* MOBIEL */
@media (max-width: 900px) {
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { padding-top: 24px; flex-direction: column; text-align: center; }
  footer.main-footer { padding: 60px 20px 28px; }
  .container { padding: 0 20px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
