:root {
    --light:#fef5f0;
    --dark:#434b24;
    --accent:#b88e0d;
}

/* Google fonts */

.font-brand {
  font-family: "Raleway", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-brand-bold {
  font-family: "Raleway", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.font-brand-regular-italic {
  font-family: "Raleway", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
}

.font-brand-bold-italic {
  font-family: "Raleway", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: italic;
}

.font-text {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* colors */

.txt-light {
  color: var(--light);
}

.txt-light-50 {
  color: var(--light);
  opacity: 0.5;
}

.txt-dark {
  color: var(--dark);
}

.txt-accent {
  color: var(--accent);
}

.bg-light {
  background-color: var(--light);
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-accent {
  background-color: var(--accent);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--dark);
  text-decoration: underline;
}

.btn-accent {
  background-color: var(--accent) !important;
  color: var(--light) !important;
  border-color: var(--accent) !important;
  transition:
    background-color .3s ease,
    color .3s ease,
    border-color .3s ease,
    box-shadow .2s ease,
    transform .2s ease;
}

.btn-accent:hover {
  background-color: var(--light) !important;
  color: var(--accent) !important;
  border-color: var(--accent) !important;
  text-decoration: none ;
  transform: translateY(-1px);
}

.btn-dark {
  background-color: var(--dark) !important;
  color: var(--light) !important;
  border-color: var(--dark) !important;
  transition:
    background-color .3s ease,
    color .3s ease,
    border-color .3s ease,
    box-shadow .2s ease,
    transform .2s ease;
}

.btn-dark:hover {
  background-color: var(--light) !important;
  color: var(--dark) !important;
  border-color: var(--dark) !important;
  text-decoration: none ;
  transform: translateY(-1px);
}


/* global styles */

body {
    background-color: var(--light);
    color: var(--dark);
    font-family: "Quicksand", sans-serif;
}

p {
  font-size: 1.125rem; /* ~18px op standaard root (16px) */
  line-height: 1.6;    /* Mooie leesbaarheid */
}


/* branding */

.brand-img{
    width: 12%;
    height: auto;
}


/* Hero styling */

.hero-1 {
  position: relative;
  height: 100vh; /* Volledige hoogte van viewport */
  background: url('../img/KristofDewaele-AymaraConsult-31.jpg') no-repeat center center/cover; 
}

.hero-1 a {
  text-decoration: none;
  color: var(--light);
  font-size: 1rem;
}

.hero-1 a:hover {
  color: var(--accent);
  font-weight: bold;
}

.hero-2 {
  position: relative;
  height: 100vh; /* Volledige hoogte van viewport */
  background-color: var(--accent);
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Donkere overlay voor leesbaarheid */
}

.hero-content {
  z-index: 2; /* Boven overlay */
  transform: translateY(160px);
}


/* Card styling */

.card-clean {
  border: none;         /* Geen rand */
  background: none;     /* Geen achtergrondkleur */
  box-shadow: none;     /* Geen schaduw */
}

.card-clean .card-body {
  padding: 1rem 0; /* Iets minder padding voor minimalistische look */
}

.card-clean img {
  border-radius: 8px; /* Optioneel: zachte hoeken */
}


/* Achtergrond en tekst */

.quote-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 5rem 0;
}


/* Grote openingsquote */

.quote-icon {
  font-size: 6rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.1);
  display: block;
  margin-bottom: -1.5rem;
}


/* Tekst styling */

.blockquote h1 {
  font-size: 2rem;
  line-height: 1.4;
  font-style: italic;
}


/* Contact sectie styling */

.contact-info a {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* ruimte tussen icoon en tekst */
  text-decoration: none; /* geen onderlijning */
  color: inherit; /* neem de tekstkleur over van de parent */
  transition: color 0.3s;
}

.contact-info a:hover {
  color: var(--accent); 
  text-decoration: none; /* underline blijft uit */
}

.contact-info i {
  font-size: 1.2rem; /* iconen iets groter dan tekst */
}


/* Footer (auteur) */
.blockquote-footer {
  font-size: 1rem;
  letter-spacing: 1px;
}


/* section testimonials */

.testimonials-section .testimonial {
  position: relative;
  min-height: 260px; /* of bijvoorbeeld 300px, afhankelijk van je tekstlengte */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial {
  max-width: 700px;
  margin: 0 auto;
}

.carousel-inner {
  direction: rtl; /* Zorgt dat de animatie van rechts naar links gaat */
}

.carousel-item {
  direction: ltr; /* Tekst terug naar normaal */
}

.testimonials-section .quote-icon {
  margin-bottom: -3.0rem;
}

.testimonial p {
  font-size: 1.50rem;
  font-style: italic;
  line-height: 1.6;
}

.testimonial h5 {
  margin-top: 1rem;
  font-size: 1rem;
}


/* Gemeenschappelijke styling voor zwevende knoppen */

.scroll-top-btn,
.scroll-email-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.3s ease;
  z-index: 999;
}

.scroll-top-btn.show,
.scroll-email-btn.show {
  opacity: 1;
  visibility: visible;
}


/* Verschil in positie: email knop boven scroll-top */

.scroll-email-btn {
  bottom: 80px; /* 60px boven scroll-top knop */
  /* background-color: #6c757d; /* secundaire kleur, kan je aanpassen */
  /* color: #fff;  */
}

/* Hover effect */
.scroll-top-btn:hover,
.scroll-email-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}



/* Responsiveness */

@media (min-width: 768px) {
  .blockquote h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .blockquote h1 {
    font-size: 3rem;
  }
}