/* Reset en basis */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* Navigatie */
nav {
  background-color: #222;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 999;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav li {
  margin: 0 10px;
}
nav a {
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
}
nav a:hover {
  background-color: #555;
  border-radius: 4px;
}

/* Header */
header {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}
header h1 {
  margin: 0;
  font-family: 'Playfair Display', serif;
}
.header-logo {
  max-width: 150px;
  margin: 0 auto;
}

/* Secties */
section {
  max-width: 1400px;
  margin: 20px auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}
h2 {
  margin-top: 0;
  font-family: 'Playfair Display', serif;
  text-align: center;
}

/* Slider met tekst en 2 knoppen */
.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 400px;
  margin-bottom: 20px;
  border-radius: 8px;
  background-color: #000;
}
.slides {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}
.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display:flex;
  align-items: center;
  justify-content: center;
  color:#fff;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
}
.slide-content {
  background: rgba(0,0,0,0.4);
  padding: 20px;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  text-align: center;
}
.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display:flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 10px;
}
.slider-controls button {
  background-color: rgba(0,0,0,0.4);
  border: none;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  cursor:pointer;
}
.indicators {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
}
.indicator {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  cursor:pointer;
}
.indicator.active {
  background-color: #333;
}
@media (max-width: 768px) {
  .slider {
    height: 250px; /* minder hoogte op mobiel */
  }
  .slide-content {
    padding: 10px;
  }
  .slide-content h3 {
    font-size: 1.2em;
  }
  .slide-content p {
    font-size: 1em;
  }
  .slider-controls button {
    padding: 8px;
  }
}
/* Algemene styling voor secties */
.content-section {
  max-width: 1450px; /* Pas dit aan naar jouw gewenste breedte */
  margin: 40px auto; /* Centraal uitlijnen en ruimte boven/onder */
  padding: 0 20px; /* Binnenmarge */
  box-sizing: border-box;
}

/* Zorg dat de galerijen er hetzelfde uitzien */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

/* Styling voor elke thumbnail */
.thumbnail {
  flex: 1 1 200px;
  max-width: 300px;
  background-color: #f9f9f9; /* Optioneel: achtergrondkleur voor duidelijkheid */
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  box-sizing: border-box;
  text-align: center;
}

/* Afbeeldingen in de seizoenen */
.thumbnail img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  border-radius: 8px;
}

/* Video iframe styling */
.thumbnail iframe {
  width: 100%;
  max-width: 300px;
  height: 180px;
  border-radius: 8px;
}

/* Grid voor 4 items (afbeeldingen, video's, MP3's, producten) */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.grid-4 img, .grid-4 video, .grid-4 audio {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* Product kaarten */
.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}
.product-card:hover {
  transform: scale(1.02);
}
.product-card img {
  max-width: 100%;
  border-radius: 8px;
}
.product-title {
  margin-top: 10px;
  font-weight: bold;
}
.price {
  color: #888;
  margin-top: 5px;
}

/* Split sektionen: links afbeelding, rechts tekst en vice versa */
.split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.split-section .image, .split-section .text {
  flex: 1 1 45%;
}
.split-section .image img {
  width: 100%;
  border-radius: 8px;
  display: block;
}
@media(max-width: 768px){
  .split-section {
    flex-direction: column;
  }
  .split-section .image, .split-section .text {
    flex: 1 1 100%;
  }
}

/* Algemene stijl voor de sectie */
.popular-section {
  padding: 40px;
  background-color: #f8f8f8;
  font-family: Arial, sans-serif;
}

/* Titel stijl */
.section-title h2 {
  font-family: 'Playfair Display', serif;
  font-weight: normal;
  font-size: 2.5em;
  margin-bottom: 20px;
  text-align: center;
}

/* Grid container voor 2 rijen en 3 kolommen */
.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 20px;
}

/* Item styling */
.item {
  background: #fff;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Afbeeldingen in items */
.item-image {
  max-height: 200px; /* pas dit aan indien nodig */
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

/* Titel onder afbeelding */
.item-title {
  font-size: 1.286em;
  margin-bottom: 10px;
}

/* Knop styling */
.btn {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #0056b3;
}

/* Responsief: op kleine schermen 1 kolom */
@media(max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

/* Style voor de hele sectie */
.categories-section {
  padding: 40px 20px;
  background-color: #f5f5f5;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
  font-family: 'Open Sans', sans-serif;
}

/* Algemene sectie styling */
.popular-section {
  padding: 40px;
  background-color: #f8f8f8;
  font-family: Arial, sans-serif;
}

/* Titel styling */
.section-title h2 {
  font-family: 'Playfair Display', serif;
  font-weight: normal;
  font-size: 2.5em;
  margin: 0 0 20px 0;
  text-align: center;
}

/* Container voor items */
.items-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* individuele item styling */
.item {
  background: #fff;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  flex: 1 1 30%;
  min-width: 250px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Afbeeldingen in items */
.item-image {
  max-height: 527px; /* kan je aanpassen per item indien nodig */
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
  display: block;
}

/* Titel onder afbeelding */
.item-title {
  font-size: 1.286em;
  margin-bottom: 10px;
}

/* Knop styling */
.btn {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #0056b3;
}

/* Responsive aanpassingen (optioneel) */
@media (max-width: 768px) {
  .item {
    flex: 1 1 80%;
  }
}

/* Container voor alle categorieën, flex layout */
.categories-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Individuele categorie-items */
.category-item {
  width: 250px;
  text-align: center;
}

/* Afbeeldingen styling */
.category-image {
  max-height: 500px; /* of pas aan naar wens */
  max-width: 100%;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain; /* houdt de verhouding */
}

/* Titel en prijs styling */
.category-title {
  margin: 10px 0 5px 0;
  font-family: 'Open Sans', sans-serif;
}

.category-price {
  margin: 0;
  font-weight: bold;
  font-family: 'Open Sans', sans-serif;
}

/* Algemene sectie styling */
.zomer-collectie-section {
  padding: 40px 20px;
  background-color: #fff; /* of andere kleur */
}

/* Container en rijen */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Kolommen */
.column {
  flex: 1 1 50%; /* 50% breedte voor grote schermen */
}

/* Responsive aanpassing */
@media(max-width: 768px) {
  .column {
    flex: 1 1 100%; /* vol breedte voor kleine schermen */
  }
}

/* Extra styling voor inhoud */
.content-box {
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.margin-top {
  margin-top: 20px;
}

.btn {
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

/* Bijvoorbeeld extra styles voor de titel en tekst */
.title {
  font-family: 'Playfair Display', serif;
  font-size: 3.571em;
  color: rgba(157,157,157,1);
}

.subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 3.571em;
}

/* Testimonials / Extra info */
.testimonial, .info-section {
  margin-bottom: 20px;
}
.testimonial {
  font-style: italic;
  font-size: 1.2em;
  padding: 10px;
  background: #eef;
  border-radius: 8px;
}
.hidden {
  display: none;
}

/* Galerij */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}
.gallery img {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  object-fit: cover;
}

/* Footer met 4 kolommen naast elkaar */
/* Footer met grote kolommen en volledige breedte */
footer {
  width: 100%;
  background-color: #222;
  color: #fff;
  padding: 60px 40px; /* meer ruimte */
}

.footer-container {
  width: 100%;
  max-width: 1800px; /* groter voor meer breedte */
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* of space-around */
}

.footer-column {
  flex: 1 1 250px; /* grote basisbreedte */
  margin: 10px;
}

footer h4 {
  margin-top: 0;
}
footer a {
  color: #fff;
  text-decoration: underline;
  display: block;
  margin-top: 8px;
}
footer a:hover {
  text-decoration: none;
}

/* Advertentie Banner Styles */
.ad-banner-section {
  background-color: #007bff; /* of een andere kleur naar wens */
  padding: 20px 0;
}

.ad-banner-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.ad-text {
  flex: 1 1 45%;
  padding: 20px;
}

.ad-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2em;
  margin-bottom: 10px;
}

.ad-text p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1em;
  margin-bottom: 15px;
}

.ad-text .btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.ad-text .btn:hover {
  background-color: #0056b3;
}

.ad-image {
  flex: 1 1 45%;
  padding: 20px;
  text-align: center;
}

.ad-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsive */
@media(max-width: 768px) {
  .ad-banner-container {
    flex-direction: column;
  }
  .ad-text, .ad-image {
    flex: 1 1 100%;
    text-align: center;
  }
}

/* Merken slider onderin */
.merken-slider {
  overflow: hidden;
  margin: 40px 0;
  position: relative;
}
.merken-track {
  display: flex;
  animation: slide 20s linear infinite;
}
.merken-logo {
  flex: 0 0 auto;
  width: 150px;
  margin: 0 60px;
}
@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Algemene knop voor bewerking of info */
.btn {
  display: inline-block;
  padding: 10px 20px;
  margin: 10px 0;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}
.btn:hover {
  background-color: #555;
}

/* Modal voor bewerkingen */
#editModal {
  display: none;
  position: fixed;
  z-index: 9999;
  left:0; top:0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}
#modalContent {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
}
#closeModal {
  float: right;
  cursor: pointer;
  font-size: 1.5em;
  font-weight: bold;
}
input[type=text], input[type=url], textarea {
  width: 100%;
  padding: 8px;
  margin-top: 8px;
  margin-bottom: 12px;
  box-sizing: border-box;
}
h3 {
  margin-top: 0;
}

.intro {
    padding: 20px; /* Voeg wat padding toe aan de sectie */
}
.moodboard-image {
    max-width: 100%; /* Zorgt ervoor dat de afbeelding nooit breder is dan de container */
    text-align: center; /* Centreert de afbeelding */
    margin-bottom: 20px; /* Ruimte onder de afbeelding */
}
.profile {
    max-width: 100%; /* Zorgt ervoor dat de afbeelding zich aanpast aan de container */
    height: auto; /* Houdt de aspectratio intact */
}
/* Media Query voor kleinere schermen */
@media (max-width: 768px) {
    .column {
        width: 100%; /* Zorgt ervoor dat de kolommen onder elkaar staan op kleinere schermen */
    }
}

.intro {
    padding: 20px; /* Voeg padding toe aan de sectie */
}
.moodboard-section {
    display: flex; /* Gebruik flexbox */
    flex-wrap: wrap; /* Zorg ervoor dat items naar de volgende regel kunnen gaan */
    justify-content: space-between; /* Verdeelt de ruimte tussen de twee kolommen */
    margin-bottom: 20px; /* Ruimte onder elke moodboard sectie */
}
.moodboard-image {
    flex: 1 1 40%; /* Laat de afbeelding 40% van de beschikbare ruimte gebruiken */
    max-width: 400px; /* Max breedte van de afbeelding */
    margin-right: 20px; /* Ruimte tussen afbeelding en tekst */
}
.profile {
    max-width: 100%; /* Zorgt ervoor dat de afbeelding nooit breder is dan de containing box */
    height: auto; /* Houdt de aspectratio intact */
}
.moodboard-description {
    flex: 1 1 50%; /* Laat de beschrijving 50% van de beschikbare ruimte gebruiken */
}
/* Responsieve instellingen */
@media (max-width: 768px) {
    .moodboard-section {
        flex-direction: column; /* Stapel de elementen op kleinere schermen */
        align-items: center; /* Centreer de inhoud */
    }
    .moodboard-image {
        margin-right: 0; /* Verwijder marge aan de rechterkant */
        margin-bottom: 15px; /* Voegt ruimte onder de afbeelding toe */
    }
    .moodboard-description {
        text-align: center; /* Centreer de tekst op kleinere schermen */
    }
}


.banner-container {
    text-align: center; /* Centreert de inhoud binnen de container */
    margin: 0 auto; /* Centreert de container op de pagina */
    padding: 10px; /* Voeg wat padding toe voor esthetiek */
}
.banner-image {
    max-width: 100%; /* Zorgt ervoor dat de afbeelding niet breder is dan de container */
    height: auto; /* Houdt de aspectratio intact */
    margin-bottom: 20px; /* Ruimte onder de afbeelding */
}
/* Extra aanpassingen voor kleinere schermen */
@media (max-width: 768px) {
    .banner-container {
        padding: 5px; /* Verminder padding op kleinere schermen */
    }
    .banner-image {
        max-width: 90%; /* Zorgt ervoor dat de afbeelding iets meer ruimte krijgt op kleinere schermen */
    }
}

.contact-info {
    color: black; /* Tekst kleur instellen */
}
.contact-info h1 {
    font-size: 2em; /* Gelijk aan grootte 4px, dat is ongeveer 24px */
    margin: 0; /* Verwijdert de standaard marge van h1 */
}
.contact-info p {
    margin: 0; /* Verwijdert de standaard marge van paragraaf */
    font-size: 16px; /* Stelt een standaard grootte in voor paragraaf tekst */
}
/* Link styling */
.contact-info a {
    color: blue; /* Of een andere kleur naar keuze */
    text-decoration: none; /* Onderlijn van links verwijderen */
}
.contact-info a:hover {
    text-decoration: underline; /* Onderlijn verschijnt wanneer je over de link beweegt */
	
	