
/* user.css – opgeschoond en gestructureerd voor Farine */


/* ========== GOOGLE FONT ========== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@900&display=swap');

/* ========== ROOT VARIABELEN ========== */
:root {
  --kleur-wit: #fff;
  --kleur-paars: #7a02a0;
  --kleur-oranje: #ff5c00;
  --kleur-blauw: #0766ff;
  --kleur-hover: #7a02a0;

  --kleur-primair: #81b337;
  --kleur-tekst: #242b39;
  --kleur-knop: #676454;
  --kleur-achtergrond: #f9fdfc;
}

/* Scrollbar styling voor WebKit-browsers */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f9fdfc;
}

::-webkit-scrollbar-thumb {
  background-color: var(--kleur-oranje);
  border-radius: 10px;
  border: 2px solid #f9fdfc;
}

/* ========== ALGEMEEN ========== */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--kleur-achtergrond);
  color: var(--kleur-tekst);
}

h1, h2, h3, h4, h5, h6 {
  color: #fff;
}

h1 {
  margin: 0;
  padding: 0 10px 20px 0;
  color: var(--kleur-oranje);
}


/* ========== HEADER STRUCTUUR ========== */
.site-header {
  background-color: var(--kleur-oranje);
  border-bottom: 1px solid #eee;
  padding: 0 1em 0.6em 2em;
  position: relative;
}

.header-container {
  max-width: 1200px;
  padding: 0 1.5em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
}

.logo {
  display: flex;
  align-items: center;
  padding-top: 1em;
  gap: 0.6rem;
}

.bedrijfsnaam {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  color: var(--kleur-wit);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.bedrijfsnaam:hover {
  opacity: 1;
}

/* ========== MENU STIJLEN ========== */
.hoofdmenu ul {
  list-style: none;
  display: flex;
  gap: 2em;
  margin: 0;
  padding: 0;
}

.hoofdmenu a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.hoofdmenu a:hover,
.hoofdmenu a:focus {
  color: var(--kleur-hover);
}


/* ========== HEADER BUTTONS (Facebook + Houdoe) ========== */
/* ========== HEADER BUTTONS (Facebook + Houdoe) ========== */
.header-buttons {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.header-buttons img {
  width: 24px;
  height: 24px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  display: block;
}

.header-buttons img:hover {
  opacity: 1;
}


/* ========== MENU TOGGLE (Hamburger) ========== */
.menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  opacity: 0.8;
  cursor: pointer;
  display: none;
}

.menu-toggle:hover {
  opacity: 1;
}

.menu-toggle i {
  font-size: 2.5rem;
}


/* ========== MEDIA QUERIES ========== */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    position: relative;
  }

  .logo {
    padding-top: 0;
    order: 1;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 2.5rem;
    right: 1rem;
    z-index: 1000;
  }

  .hoofdmenu {
    display: none;
    width: 100%;
    margin-top: 1em;
    order: 3;
  }

  .hoofdmenu.open {
    display: block;
  }

  .hoofdmenu ul {
    flex-direction: column;
    gap: 1em;
    padding: 1em 0;
  }

  .header-buttons {
    order: 2;
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }

  .header-buttons img {
    width: 26px;
    height: 26px;
  }
}



/* ========== WELKOM ========== */

.welkom-section {
  padding: 4em 0 8em 0;
  background-color: #f9fdfc;
}

.welkom-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2em;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3em;
}

.welkom-tekst {
  flex: 1 1 52%;
  min-width: 280px;
  max-width: 540px;
}

.diagonaal-container {
  flex: 1 1 44%;
  min-width: 280px;
  max-width: 500px;
}

.welkom-tekst p {
  font-size: 1.6rem;
  line-height: 1.7;
  margin-bottom: 1.2em;
  color: #333;
}

.welkom-buttons {
  margin-top: 2rem;
}

.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  background-color: var(--kleur-oranje);
  border-radius: 0.4rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: var(--kleur-blauw);
}

.welkom-tekst h1.hoofdtitel {
  font-size: 2.6rem;
  margin-bottom: 0.5em;
  color: #75b9a0;
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 1s ease-out forwards;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 1s ease-out forwards;
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.diagonaal-container {
  position: relative;
  max-width: 500px;
  aspect-ratio: 3 / 2;
}

.diagonaal-foto-wrapper {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  max-width: 100%;
  width: auto;
  text-align: center;
}

.diagonaal-foto-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}


/* ========== CONTACT ========== */

.contact-section {
  padding: 4em 0;
  background-color: #fff;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2em;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5em;
}

.contact-section .contact-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2em;
}

.contact-container,
.container.contact-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2em;
}

.contact-logo,
.contact-tekst {
  flex: 1 1 50%;
  min-width: 280px;
}

.contact-tekst {
  flex: 1 1 50%;
  min-width: 280px;
  max-width: 500px;
}

.contact-logo {
  flex: 1 1 50%;
  min-width: 280px;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-logo img {
  width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: contain;
  display: block;
}

.contact-tekst h2 {
  font-size: 2.6rem;
  margin-bottom: 0.5em;
  color: #f28c00;
}

.contact-tekst p {
  font-size: 1.6rem;
  line-height: 1.7;
  margin-bottom: 1.2em;
  color: #333;
}

.contact-tekst a {
  color: #f28c00;
  text-decoration: none;
}

.contact-tekst a:hover {
  text-decoration: underline;
}



/* ========== FOOTER ========== */

.site-footer {
  background-color: #7a02a0;
  color: white;
  padding: 1em 1.5em;
  font-family: sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 220px;
  margin: 1em;
}

.footer-column h3 {
  font-size: 1.4rem;
  margin-bottom: 1em;
  color: white;
}

.footer-column p,
.footer-column a {
  color: white;
  margin: 0.4em 0;
  text-decoration: none;
  font-size: 1.5rem;
}

.footer-column i {
  color: #fcb564;
  margin-right: 0.5em;
}

.footer-column.center {
  text-align: center;
}


/* Hover-effect voor links */
.site-footer a {
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #fce7ca;
}

.site-footer h3 {
	font-size: 2.5rem;
	font-weight: 600;
}

/* Responsive layout */
@media (max-width: 768px) {
  .site-footer {
    text-align: left;
  }

  .footer-container {
    flex-direction: column;
    gap: 2em;
    padding: 1em 1.5em;
  }

  .footer-column {
    flex: 1 1 100%;
  }

  .footer-column img {
    max-width: 120px;
    height: auto;
  }
}

.copyright {
  text-align: center;
  font-size: 0.9rem;
  color: #ffffff;
  padding: 0;
}

.copyright a {
  color: #fce7ca;
  text-decoration: none;
}

.copyright a:hover {
  text-decoration: underline;
}



