/* Kleuren gebaseerd op logo */
:root {
  --main-bg: #f7e9d2; /* warm beige achtergrond : #f5deb3, iets lichter #f7e9d2 */
  --main-color: #5a1d0d; /* wijnrood */
}

/* Font voor de hele site */
body {
  margin: 0;
  font-family: Georgia, serif;
  background-color: var(--main-bg);
  color: var(--main-color);
}

/* Header */
header {
  background-color: var(--main-bg);
  color: var(--main-color);
  padding: 15px 30px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px; /* ruimte tussen logo en namen */
}

.logo-container img {
  height: 150px;
}

.site-names h1 {
  font-size: 2.8rem;
  margin: 0;
}

.site-names h2 {
  font-size: 1.2rem;
  margin: 0;
  color: #7a2b1d; /* iets lichtere wijnkleur voor contrast */
}

/* Mobile: keep row, but shrink logo and text */
@media (max-width: 480px) {
  .logo-container {
    flex-direction: row;      /* row instead of column */
    justify-content: space-between; /* logo left, text right */
    align-items: center;
    width: 100%;
    padding: 0 10px;          /* optional: some horizontal padding */
  }

  .logo-container img {
    height: 150px;             /* smaller logo on mobile */
  }

  .site-names h1 {
    font-size: 2.4rem;
    margin: 0;
  }

  .site-names h2 {
    font-size: 1rem;
    margin: 0;
  }

  .site-names {
    text-align: right;        /* align text to right side */
  }
}


.intro-content {
  display: flex;
  align-items: center;
  
  gap: 20px;
  margin-left: 50px; /
}

.intro-text {
  flex: 1;
}

.intro-images {
  display: flex;
  gap: 50px;
  margin-right: 150px; /
}

.intro-images img {
  width: 200px;      /* zelfde breedte voor alle afbeeldingen */
  height: 400px;     /* zelfde hoogte voor alle afbeeldingen */
  object-fit: cover; /* zorgt dat de afbeelding netjes bijgesneden wordt */
  
  
}

@media(max-width: 768px) {
  .intro-content {
    flex-direction: column;
    align-items: center;   /* center all content */
    margin-left: 0;        /* remove extra spacing */
    margin-right: 0;
    gap: 20px;
    text-align: center;    /* center the text */
  }

  .intro-text {
    width: 100%;
  }

  .intro-images {
    flex-direction: column; /* stack images */
    align-items: center;    /* center them */
    gap: 20px;
    margin: 0;              /* remove big right margin */
  }

  .intro-images img {
    width: 90%;   /* make images scale to screen width */
    max-width: 300px; 
    height: auto;
  }
}
/* Gallery */
.gallery {
  padding: 30px 20px;
  position: relative; /* belangrijk: context voor absolute positioning */
}
.gallery-overlay {
  position: absolute;
  top: 20px;           /* pas aan: afstand vanaf top van de gallery */
  right: 20px;         /* pas aan: afstand vanaf rechterkant */
  width: 180px;        /* grootte desktop */
  height: auto;
  z-index: 999;        /* ligt boven de gallery afbeeldingen */
  pointer-events: auto; /* of 'none' als je wilt dat klikken doorloopt naar onderliggende elementen */
  
  
}
/* mobiele versie: kleiner en evt. iets andere positie */
@media (max-width: 768px) {
  .gallery-overlay {
    width: 100px;   /* kleinere breedte */
    top: 10px;      /* iets dichterbij de bovenkant */
    right: 10px;    /* iets dichterbij de rand */
  }
}


.gallery h2 {
  margin-bottom: 15px;
}

.gallery-container {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding-bottom: 10px;
}

.gallery-container img {
  height: 400px;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

/* Footer */
footer {
  background-color: var(--main-color);
  color: var(--main-bg);
  text-align: center;
  padding: 20px;
  margin-top: 30px;
  border-radius: 10px;
}
footer a {
  color: #fcefdc;        /* lighter beige than var(--main-bg) */
  text-decoration: none; /* remove underline */
  font-weight: 500;      /* make it stand out a bit */
}

footer a:hover {
  color: #ffffff;        /* pure white on hover */
  text-decoration: underline;
}

.about {
  background-color: var(--main-color);
  color: var(--main-bg);
  padding: 30px 80px 30px 50px;   /* ruimte rondom de tekst, maar bg gaat full-width */
  margin-top: 100px;
}

.about-inner {
  max-width: 400px;     /* tekst smaller */
  margin: 10 auto;       /* centreert tekst binnen de full-width bg */
  line-height: 1.6;     /* betere leesbaarheid */
}

.intro p {
  font-size: 1.2rem; /* groter maken dan de standaard 1rem */
  line-height: 1.4;  /* zorgt voor betere leesbaarheid */
}
/* Fix about section on smaller screens */
@media(max-width: 768px) {
  .about {
    padding: 20px;       /* less padding for small screens */
    margin-top: 50px;
    text-align: center;  /* center text */
  }

  .about-inner {
    max-width: 100%;     /* let it fill the screen */
    margin: 0 auto;
  }
}
/* On small screens: keep horizontal scroll */
@media(max-width: 768px) {
  .gallery-container {
    flex-wrap: nowrap;       /* no wrapping, stay in one row */
    justify-content: flex-start;
  }

  .gallery-container img {
    width: auto;            /* smaller images fit better on mobile */
    height: 300px;
  }
}
/* Arrangementen sectie */
.arrangementen-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  margin: 80px auto;
  max-width: 1200px;
}
.arrangementen {
  flex: 1;
  max-width: 600px;
  padding: 30px 20px;
  font-family: Georgia, serif;
  background-color: var(--main-bg);
  color: var(--main-color);
}
.arrangement-image {
  width: 100px;
  height: auto;
  object-fit: cover;
  margin-top: 60px;
}

.arrangementen h2 {
  font-family: Georgia, serif;
  text-align: center;
  margin-bottom: 20px;
}


.accordion {
  font-family: Georgia, serif;
  max-width: 600px;
  margin: 0 auto;
}

.accordion-item {
  font-family: Georgia, serif;
  border-bottom: 1px solid var(rgb(146, 46, 24));
}

.accordion-header {
  font-family: Georgia, serif;
  width: 100%;
  text-align: left;
  padding: 15px;
  font-size: 1.2rem;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: bold;
  color: var(--main-color);
  position: relative;  /* nodig voor het plus/min teken */
}

.accordion-header:hover {
  background-color: rgba(177, 46, 10, 0.1);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
}

.accordion-content ul {
  margin: 20px 0;
  padding-left: 20px;
}

.accordion-item.active .accordion-content {
  max-height: 300px; /* genoeg ruimte voor tekst */
  padding: 15px;
}
.accordion-header::after {
  font-family: Georgia, serif;
  content: "+";                   /* standaard een plus */
  position: absolute;
  right: 15px;                     /* rechts uitlijnen */
  font-size: 1.5rem;
  transition: transform 0.2s ease, content 0.2s ease;
}

.accordion-item.active .accordion-header::after {
  content: "−";                   /* verandert in min */
}
/* Mobiel: stack images boven en onder */
@media (max-width: 768px) {
  .arrangementen-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 10px;            /* minder ruimte tussen kolommen */
    margin: 10px auto;    /* minder buitenruimte rondom de hele sectie */
    padding: 0 12px;      /* kleine padding aan de zijkanten */
    max-width: 100%;
  }

  .arrangement-image {
    width: 50%;
    max-width: 100px;
    margin: 10px 0; /* minder ruimte boven en onder */
  }

  .arrangement-image.left {
    order: -1;  /* boven */
    
  }

  .arrangement-image.right {
    order: 1;   /* onder */
    
  }
}

