/* ── Synna BV — Stylesheet ─────────────────────────────────
   Derived from synna.be live site
   Primary font : Raleway (Google Fonts)
   Body bg      : #1A3A5C  (rgb 26, 58, 92)
   Gold accent  : #C8A84B  (rgb 200, 168, 75)
   ──────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --navy:        #1A3A5C;
  --navy-dark:   #122840;
  --gold:        #C8A84B;
  --gold-light:  #D4B86A;
  --gold-pale:   rgba(200,168,75,0.12);
  --white:       #FFFFFF;
  --white-72:    rgba(255,255,255,0.72);
  --white-60:    rgba(255,255,255,0.60);
  --white-45:    rgba(255,255,255,0.45);
  --white-35:    rgba(255,255,255,0.35);
  --white-22:    rgba(255,255,255,0.22);
  --white-16:    rgba(255,255,255,0.16);
  --white-10:    rgba(255,255,255,0.10);
  --white-07:    rgba(255,255,255,0.07);
  --white-05:    rgba(255,255,255,0.05);
  --card-bg:     rgba(255,255,255,0.05);
  --card-border: rgba(255,255,255,0.10);
  --radius-sm:   6px;
  --radius:      10px;
  --radius-pill: 30px;
  --max:         1100px;
  --panel-left:  540px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', Calibri, 'Gill Sans MT', 'Gill Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

/* ── FULL-PAGE SPLIT LAYOUT ──────────────────────────────── */
.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Right-side building image (homepage) */
.bg-panel {
  position: fixed;
  top: 0; right: 0;
  width: 55%;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.bg-panel img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.bg-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--navy) 0%,
    rgba(26,58,92,0.45) 28%,
    rgba(26,58,92,0.05) 65%,
    transparent 100%
  );
}

/* Circle accent decoration */
.circle-accent {
  position: fixed;
  top: 50%;
  left: calc(var(--panel-left) - 40px);
  transform: translate(-50%, -50%);
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid var(--white-10);
  z-index: 0;
  pointer-events: none;
}

/* ── LEFT CONTENT PANEL ──────────────────────────────────── */
.panel-left {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--panel-left);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0 48px;
  background: var(--navy);
}

/* Gradient fade to transparent on right edge */
.panel-left::after {
  content: '';
  position: absolute;
  top: 0; right: -80px;
  width: 80px; height: 100%;
  background: linear-gradient(to right, var(--navy), transparent);
  pointer-events: none;
}

/* ── TOPBAR ──────────────────────────────────────────────── */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0 0;
  flex-shrink: 0;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-container img {
  width: 100px;
  border-radius: var(--radius-sm);
}

.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: var(--radius-pill);
  padding: 9px 21px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-login:hover {
  background: var(--gold);
  color: var(--white);
}

/* ── MAIN CONTENT ────────────────────────────────────────── */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0 40px;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white-07);
  border: 1px solid var(--white-16);
  border-radius: var(--radius-pill);
  color: var(--white-72);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 28px;
  width: fit-content;
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* H1 */
h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 10px;
}

h1 span { color: var(--gold); }

/* Tagline */
.tagline {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-60);
  margin-bottom: 28px;
}

/* Divider */
.divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.divider-line {
  width: 40px; height: 1px;
  background: var(--white-22);
}

.divider-icon {
  color: var(--gold);
  font-size: 0.55rem;
  opacity: 0.7;
}

/* Description */
.description {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--white-60);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 40px;
}

/* ── SERVICE CARDS ───────────────────────────────────────── */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 8px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  cursor: pointer;
}

.service-card:hover {
  background: var(--gold-pale);
  border-color: rgba(200,168,75,0.35);
  transform: translateY(-3px);
}

.service-icon {
  font-size: 1.3rem;
  color: var(--white-55, rgba(255,255,255,0.55));
}

.service-name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-78, rgba(255,255,255,0.78));
}

.service-sub {
  font-size: 0.67rem;
  color: var(--white-35);
  line-height: 1.4;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  padding: 24px 0 28px;
  flex-shrink: 0;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-bottom: 10px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--white-60);
  text-decoration: none;
  transition: color 0.15s;
}

.contact-link:hover { color: var(--gold); }
.contact-link i { font-size: 0.72rem; opacity: 0.7; }

.copyright {
  font-size: 0.68rem;
  color: var(--white-35);
  margin-top: 6px;
}

/* ═══════════════════════════════════════════════════════════
   CONTENT PAGES  (syndicus / financieel / technisch / ontzorging)
   ═══════════════════════════════════════════════════════════ */

/* Content pages use full-width layout, not split */
.content-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── CONTENT TOPBAR ──────────────────────────────────────── */
.content-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  border-bottom: 1px solid var(--white-10);
  position: sticky;
  top: 0;
  background: var(--navy);
  z-index: 100;
  flex-shrink: 0;
}

.content-topbar .logo-container img { width: 72px; }

.content-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.content-nav a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white-60);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  transition: color 0.15s, background 0.15s;
}

.content-nav a:hover { color: var(--white); background: var(--white-07); }
.content-nav a.active { color: var(--gold); }

/* ── PAGE HERO (content pages) ───────────────────────────── */
.page-hero {
  padding: 56px 48px 48px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--white-10);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid var(--white-07);
  pointer-events: none;
}

.page-hero-inner {
  max-width: var(--max);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--white-45);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.breadcrumb a { color: var(--white-45); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }

.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}

.page-hero .description {
  margin-bottom: 0;
  max-width: 560px;
}

/* ── CONTENT SECTIONS ────────────────────────────────────── */
.content-main {
  flex: 1;
  padding: 0 48px;
  max-width: calc(var(--max) + 96px);
  width: 100%;
}

.section {
  padding: 48px 0;
  border-bottom: 1px solid var(--white-10);
}

.section:last-child { border-bottom: none; }

.section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 12px;
}

.section-title span { color: var(--gold); }

.section-lead {
  font-size: 0.92rem;
  color: var(--white-60);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 32px;
}

/* ── TWO COLUMN ──────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── FEATURE GRID ────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color 0.2s, background 0.2s;
}

.feature-card:hover {
  border-color: rgba(200,168,75,0.3);
  background: var(--gold-pale);
}

.feature-card-icon {
  font-size: 1.3rem;
  margin-bottom: 12px;
  display: block;
  color: var(--gold);
}

.feature-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white-72);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.feature-card p {
  font-size: 0.82rem;
  color: var(--white-45);
  line-height: 1.65;
}

/* ── CHECK LIST ──────────────────────────────────────────── */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--white-60);
  line-height: 1.55;
}

.check-list li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23C8A84B' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat;
}

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  margin: 48px 0;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 40px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-section h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.cta-section p {
  font-size: 0.85rem;
  color: var(--white-60);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ── CONTENT FOOTER ──────────────────────────────────────── */
.content-footer {
  padding: 20px 48px 24px;
  border-top: 1px solid var(--white-10);
  margin-top: auto;
}

.content-footer .contact-row { margin-bottom: 8px; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 860px) {
  .bg-panel { display: none; }
  .circle-accent { display: none; }
  .panel-left { max-width: 100%; padding: 0 28px; }
  .panel-left::after { display: none; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .content-topbar { padding: 16px 24px; }
  .content-nav a:not(.btn-login) { display: none; }
  .page-hero { padding: 36px 24px; }
  .content-main { padding: 0 24px; }
  .two-col { grid-template-columns: 1fr; gap: 28px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .cta-section { flex-direction: column; align-items: flex-start; }
  .content-footer { padding: 16px 24px; }
}

@media (max-width: 480px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .contact-row { flex-direction: column; gap: 8px; }
}

/* ── CONTACT BUTTON (homepage footer) ───────────────────── */
.btn-contact-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 4px;
}
.btn-contact-footer:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ── COOKIE BANNER ───────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(14, 32, 52, 0.97);
  border-top: 1px solid rgba(200,168,75,0.25);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  backdrop-filter: blur(8px);
  transform: translateY(0);
  transition: transform 0.35s ease;
  font-family: 'Raleway', sans-serif;
}

#cookie-banner.hidden {
  transform: translateY(110%);
}

.cookie-text {
  flex: 1;
  min-width: 260px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.cookie-text strong {
  color: rgba(255,255,255,0.9);
  font-weight: 700;
}

.cookie-text a {
  color: var(--gold);
  text-decoration: none;
}
.cookie-text a:hover { text-decoration: underline; }

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius-pill);
  padding: 9px 22px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-cookie-accept:hover { background: var(--gold-light); }

.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.btn-cookie-decline:hover {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.4);
}
