/* ==========================================================================
   1. Basis Reset & Variabelen
   ========================================================================== */
:root {
    --primary-color: #9b9168; /* De olijfgroene/kaki accentkleur */
    --text-dark: #222222;
    --text-light: #666666;
    --bg-light: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* ==========================================================================
   2. Typografie & Knoppen
   ========================================================================== */
h1, h2, h3 {
    font-weight: 400;
}

p {
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text-dark);
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 10px 24px;
    text-decoration: none;
    font-size: 16px;
    font-weight: normal;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    border-radius:4px;
    margin-top:10px;
}

.btn:hover {
    background-color: #7a7251;
}

/* ==========================================================================
   3. Header
   ========================================================================== */
header {
    padding: 20px 0;
    background: var(--bg-light);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo, .footer-logo {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.logo span, .footer-logo span {
    color: var(--primary-color);
}

.btn-header {
    padding: 8px 16px;
    font-size: 13px;
}

/* ==========================================================================
   4. Hero Sectie & Slider
   ========================================================================== */
.hero {
    /* Fallback en basis styling */
    background-color: #333; 
    background-position: center;
    background-size: cover;
    height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    /* Zorgt voor een zachte overgang van de achtergrondfoto */
    transition: background-image 0.8s ease-in-out; 
}

.hero-text-box {
    padding-top: 20px;
    display: inline-block;
}
.border-line{
    border-top:3px solid #fff;
    width:200px;
}

.hero h1 {
    color: #ffffff;
    font-size: 60px;
    line-height: 1.2;
}

/* Slider Navigatie Pijlen */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    border: none;
    padding: 15px 20px;
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.slider-arrow:hover {
    background-color: var(--primary-color);
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

/* Slider Indicatoren (Streepjes) */
.hero-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 30px;
    height: 3px;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator:hover {
    background-color: rgba(255,255,255,0.8);
}

.indicator.active {
    background-color: #ffffff;
}

/* Animatie voor de tekst in de slider */
@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   5. Content Secties (Intro & Wisselende blokken)
   ========================================================================== */
.intro-section {
    text-align: center;
    padding: 60px 0 40px;
    max-width: 800px;
}

.intro-section p {
    font-size: 20px;
    line-height: 1.8;
}

.content-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 40px 0;
}

.content-row.reverse {
    flex-direction: row-reverse;
}

.text-col, .img-col {
    flex: 1;
}

.accent-title {
    color: var(--primary-color);
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: bold;
    line-height:normal;
}

/* Placeholder voor de afbeeldingen */

.placeholder-img.placeholder1 {
  background: url("img/Frame1.jpg") center center;
    background-repeat: repeat;
    background-size: auto;
  background-size: contain;
  background-repeat: no-repeat;
}
.placeholder-img.placeholder2 {
  background: url("img/Frame2.jpg") center center;
    background-repeat: repeat;
    background-size: auto;
  background-size: contain;
  background-repeat: no-repeat;
}
.placeholder-img.placeholder3 {
  background: url("img/Frame3.jpg") center center;
    background-repeat: repeat;
    background-size: auto;
  background-size: contain;
  background-repeat: no-repeat;
}
.placeholder-img {
    background-color: #e0e0e0;
    height: 350px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
}

/* Lijnen tussen secties */
.separator {
  border-bottom: 2px solid #ebe8df;
  margin: 0 auto;
  position: relative;
  height: 21px;
}

.separator .triangle {
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--primary-color);
  font-size: 12px;
  border-right: 5px solid #fff;
}

/* ==========================================================================
   6. Brede Banner Sectie
   ========================================================================== */

.banner-section .container {
    width: auto;
  max-width: 1100px;
  display: table;
  text-align: center;
  margin: 0px auto;
}
.banner-section {
background-color: var(--primary-color);
  padding: 100px 0;
  color: #ffffff;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  height: 360px;
  display: block;
  width: 100%;
  text-align: center;
}
.logo img, .footer-logo img{
    width:320px;
}

.banner-content {
    position: relative;
    z-index: 2; 
}

.banner-section h2 {
    font-size: 32px;
    line-height: 1.4;
    font-weight: 400;
}

.banner-section strong {
    font-weight: 700;
}

/* Parallax Driehoeken Basis Stijl */
.float-shape {
    position: absolute;
    z-index: 1;
    /* Zorgt voor een vloeiende beweging op schermen met hoge verversingssnelheid */
    will-change: transform; 
}

/* Specifieke positionering & styling per driehoek */
.shape-1 { /* Links Groot (Subtiel gevuld) */
    width: 200px;
    top: -20%;
    left: 15%;
    fill: rgba(255, 255, 255, 0.07);
}

.shape-2 { /* Links Klein (Alleen rand) */
    width: 80px;
    top: 45%;
    left: 5%;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
}

.shape-3 { /* Midden Klein Onder (Alleen rand) */
    width: 30px;
    bottom: 15%;
    left: 45%;
    fill: none;
    stroke: #ffffff;
    stroke-width: 4;
}

.shape-4 { /* Rechts Onder (Subtiel gevuld) */
    width: 100px;
    bottom: 10%;
    right: 20%;
    fill: rgba(255, 255, 255, 0.07);
}

.shape-5 { /* Rechts Boven (Alleen rand) */
    width: 60px;
    top: 35%;
    right: 8%;
    fill: none;
    stroke: #ffffff;
    stroke-width: 3;
}

.banner-section h2 {
    font-size: 40px;
    line-height: 1.4;
    font-weight: 400;
}

.banner-section strong {
    font-weight: 700;
}

/* ==========================================================================
   7. Footer
   ========================================================================== */
footer {
    padding: 0px 0 40px;
    text-align: center;
    margin-top: 50px;
}
#contact .container{
    border-top: 2px solid #968a60;
   padding-top: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

footer p {
    color: #9b9168;
    font-size: 16px;
    margin-bottom: 5px;
}
footer a{
    color: #9b9168;    
}

/* ==========================================================================
   8. Responsive Design (Mobiel & Tablet)
   ========================================================================== */
@media (max-width: 768px) {
    .content-row, .content-row.reverse {
        flex-direction: column;
        gap: 30px;
    }
    .hero{
        height:350px;
    }
    .img-col, .placeholder-img {
      height: 235px!important;
      width: 100%;
    }
    .placeholder-img.placeholder1{
        background-size: cover!important;
    }
    .banner-section h2{
        font-size:28px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .header-flex {
        flex-direction: column;
        gap: 15px;
    }

    .slider-arrow {
        padding: 10px 15px;
        font-size: 20px;
    }

    .prev-arrow {
        left: 10px;
    }

    .next-arrow {
        right: 10px;
    }
}