/* Normal */
@font-face {
    font-family: 'Open sans';
    src:    url('/fonts/OpenSans-Regular.woff2') format('woff2'),
            url('/fonts/OpenSans-Regular.woff') format('woff');
    font-style: normal;    
    font-weight: 400;
    font-display: swap;
}
/* Medium */
@font-face {
    font-family: 'Open sans';
    src:    url('/fonts/OpenSans-Semibold.woff2') format('woff2'),
            url('/fonts/OpenSans-Semibold.woff') format('woff');
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

/* Bold */
@font-face {
    font-family: 'Open sans';
    src:    url('/fonts/OpenSans-Bold.woff2') format('woff2'),
            url('/fonts/OpenSans-Bold.woff') format('woff');
    font-style: normal;    
    font-weight: 700;
    font-display: swap;
}

:root {
  --primary: #2190ff;
  --primary_b: #17314c;
  --secondary: #28ba54;
  --header_bg: #2190ff;
  --header_bg_inner: #D8CCE2;
  --footer_bg: #17314c;
  --bg: #2190ff;
  --text: #222;
  --radius: 10px;
  --shadow: 0 12px 20px rgba(0,0,0,0.08);
}

/* Global */
body {
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  margin: 0;
  line-height: 1.6;
}

h1, h2 {
  margin-top: 0;
}

h1 {
  color: var(--primary);
  font-size: 4rem;
}

h2 {
  line-height: 1.2;
  color: var(--primary_b);
  font-size: 2rem;
}
main h2{
  color:#fff;
  font-size: 2.4rem;
}
h3 {
  color: var(--primary_b);
  font-size: 1.8rem;
  margin-top: 0;
}
.block {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.block_image {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}


/* Containers */
.container {
  width: min(90%, 1100px);
  margin: 0 auto;
  padding: 2.5rem 0;
}

/* --- Hero Header --- */
.site-header {
  background: var(--header_bg);
  color: var(--text);
  padding: 0;
}

/* Grid Layout */
.hero-grid {
  width: min(90%, 1600px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 70vh;
  align-items: center;
  background-color: var(--header_bg);
}
.hero-content {
  grid-column: 1 / 4;
  grid-row: 1;        /* same grid row as image */
  z-index: 2;
}
.hero-image {
  grid-column: 1 / 6;
  grid-row: 1;
}

.block_image {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.block_image .content{
  grid-column: 1 / 4;
  grid-row: 1;
  padding-right: 2rem;
}
.block_image .image{
  grid-column: 4 / 6;
  grid-row: 1;
}
.block_image .image img{
  height: 100%;
  width: 100%;
}

.block_contact{
  display: grid;
  place-items: center;
  grid-template-columns: 1fr 1fr 4rem 1fr 1fr;
}
.block_contact .li{
  grid-column: 4 / 6;
  height: 100%;
  width: 100%;
}
.block_contact .li-gt{
  grid-column: 1 / 2;
  width: 100%;

  place-items: center center;
}
.block_contact .li-tm{
  grid-column: 2 / 3;
  width: 100%;
}

/* Hero opmaak */
.hero-content{
  border-bottom-left-radius: var(--radius);
  padding: 1rem 2rem 4rem 2rem;
  max-width: 800px;
  background: rgba(255, 255, 255, 0.2); 
  margin: 2rem; 
  backdrop-filter: blur(6px); 
}

/* Right side: image */
.hero-image{
  border-bottom-right-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
  background-image: url('/images/presentatie-hero.jpg');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

/* Left side: text content */

.logo img{
  max-width: 290px;
  margin-bottom: 2rem;
}

.header-text h1 {
  color: var(--primary);
  line-height: 106%;
  margin-bottom: 1rem;
}

.header-text h2 {
  color: var(--primary_b);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  margin-right: 4rem;
}

.header-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 700px;
}


/* CTA Buttons */
.cta-buttons, .cta-inline {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  text-shadow: 0 1px 3.4px rgba(0, 0, 0, 0.8);
}

.btn-primary:hover {
  background: #00224d;
  transform: translateY(-2px);
}

.btn-secondary {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}


/* Options Section */
.options-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.option {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.photo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}

.photo-frame img {
  width: 100%;
  display: block;
}

.option ul {
  list-style: none;
  padding: 0;
}

.option li::before {
  content: "✔";
  color: var(--secondary);
  margin-right: 8px;
}

/* Comparison Table */
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

th, td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid #eee;
}
.last td{
    border-bottom: 0px solid #eee;
}
th {
  background: #e6ecf2;
  color: var(--primary_b);
}

/* Footer */
.site-footer {
  background: var(--footer_bg);
  color: #fff;
  text-align: center;
  padding: 2rem 0;
}

.footer-inner ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

.footer-inner a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-inner a:hover {
  opacity: 0.7;
}
.footer-logo{
   filter: brightness(0) invert(1); /* make logo white if needed */
}

/* --- Responsive --- */
@media (max-width: 1400px) {
  h1 {
    font-size: 3rem;
  }
  .hero-grid {
    grid-template-columns: repeat(7, 1fr);
    width: 100%;
  }
  .hero-content {
    grid-column: 1 / 5;
    padding: 3rem 1.5rem;
    margin: 0;
    background: rgba(255, 255, 255, 0.6); 
  }
  .hero-image {
    grid-column: 1 / 8;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .block_image {
    display: block;
  }
  .block_image .content{
    padding:0;
  }
  .header-text p {
    font-size: 1rem;
  }
  .hero-image {
    background-position: calc(100% + 100px) center;
  }
  .header-text h2 {
    margin-right: 0;
  }
}
/* --- Responsive --- */
@media (max-width: 700px) {
  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr 500px;
 }
  .hero-content {
    background: rgba(255, 255, 255, 0.9); 
    border-bottom-left-radius: 0;
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    text-align: center;
  }
  .logo img {
    margin: 0 auto 1.5rem;
  }
 .hero-image{
    background-position: right bottom;
    grid-column: 1 / 3;
    grid-row: 2 / 3;
  }
  .block_contact{
    grid-template-columns: 1fr 1fr 1fr;
  }
  .block_contact .li{
    grid-column: 3 / 4;
  }
  .block_contact .li-gt{
    grid-column: 1 / 2;
  }
  .block_contact .li-tm{
    grid-column: 2 / 3;
  }
}