/* Toren7 Huisstijl — Base tokens & shared styles */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

:root {
  --t7-blauw: #211D71;
  --t7-oranje: #F1592A;
  --t7-grijs: #E5E5E5;
  --t7-wit: #FFFFFF;

  --t7-blauw-75: rgba(33, 29, 113, 0.75);
  --t7-blauw-50: rgba(33, 29, 113, 0.50);
  --t7-blauw-25: rgba(33, 29, 113, 0.25);
  --t7-oranje-75: rgba(241, 89, 42, 0.75);
  --t7-oranje-50: rgba(241, 89, 42, 0.50);

  --font: 'Open Sans', sans-serif;
  --radius: 6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--t7-blauw);
  background: var(--t7-wit);
  -webkit-font-smoothing: antialiased;
}

h1 { font-size: 60px; font-weight: 700; line-height: 1.1; }
h2 { font-size: 36px; font-weight: 700; line-height: 1.2; }
h3 { font-size: 26px; font-weight: 600; line-height: 1.3; }
p  { font-size: 20px; font-weight: 400; }
a  { font-size: 20px; font-weight: 400; color: var(--t7-oranje); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Layout */
.brochure {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

/* Header */
.brochure-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 48px;
}

.brochure-header__logo img {
  height: 40px;
  width: auto;
}

.brochure-header__tagline {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--t7-oranje);
}

/* Hero */
.brochure-hero {
  padding: 80px 48px;
  text-align: center;
}

.brochure-hero h1 {
  margin-bottom: 16px;
}

.brochure-hero p {
  max-width: 600px;
  margin: 0 auto 32px;
  color: var(--t7-blauw-75);
}

/* Partner section */
.partner-card {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 48px;
}

.partner-card__logo {
  flex-shrink: 0;
}

.partner-card__logo img {
  width: 120px;
  height: auto;
}

.partner-card__body {
  flex: 1;
}

.partner-card__body h2 {
  margin-bottom: 12px;
}

.partner-card__body p {
  margin-bottom: 24px;
  color: var(--t7-blauw-75);
}

/* Services */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  padding: 48px;
}

.service-item {
  text-align: center;
  padding: 32px 16px;
}

.service-item h3 {
  margin-bottom: 8px;
}

.service-item p {
  font-size: 16px;
  color: var(--t7-blauw-75);
}

/* CTA Button */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.2s, transform 0.15s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--t7-oranje);
  color: var(--t7-wit);
}

.btn--primary:hover {
  background: var(--t7-oranje-75);
}

.btn--outline {
  background: transparent;
  color: var(--t7-oranje);
  border: 2px solid var(--t7-oranje);
}

.btn--outline:hover {
  background: var(--t7-oranje);
  color: var(--t7-wit);
}

/* Footer */
.brochure-footer {
  padding: 32px 48px;
  text-align: center;
  font-size: 14px;
  color: var(--t7-blauw-50);
}

/* Diagonal accent (huisstijl element from brand guide) */
.accent-stripe {
  height: 6px;
  background: linear-gradient(135deg, var(--t7-oranje) 0%, var(--t7-blauw) 100%);
}

/* Divider */
.divider {
  height: 1px;
  background: var(--t7-grijs);
  margin: 0 48px;
}
