/* 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;
}

/* Marquee container */
.marquee-container {
  background-color: black;
  overflow: hidden;
  width: 100%;
}

/* Marquee tekst met animatie */
.marquee {
  display: inline-block;
  white-space: nowrap;
  padding: 10px 0;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: gold;
  font-weight: bold;
  animation: scroll-left 15s linear infinite;
}

/* Animatie keyframes */
@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}


.contact-section {
    display: flex;
    justify-content: center; /* Horizontaal centreren */
    align-items: center;     /* Verticaal centreren */
    padding: 20px;
    margin: 0 auto;        /* Zorg ervoor dat de sectie met dezelfde marge aan de zijkanten zit */
}
.contact-split {
    display: flex;
    flex-wrap: wrap; /* Flex-wrap voor responsiviteit */
    width: 100%;
    max-width: 1200px; /* Maximum breedte ingesteld */
    margin: 0 auto; /* Zorg ervoor dat het in het midden staat */
}
.contact-left,
.contact-right {
    flex: 1; /* Evenredige verdeling */
    min-width: 300px; /* Minimaal formaat voor flex-item */
    padding: 10px;
}
.contact-image img {
    width: 100%; /* Responsieve afbeelding */
    height: auto; /* Autoresizer voor de afbeelding */
}
.contact-details {
    display: flex;
    flex-direction: column; /* Stuwt de inhoud in een kolom */
    justify-content: center;
    padding: 20px;
}
.contact-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}
.contact-text {
    margin-bottom: 20px;
}
.btn {
    background-color: #f39c12; /* Pas deze kleur aan indien nodig */
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}
@media (max-width: 768px) {
    .contact-split {
        flex-direction: column; /* Stapel op kleinere schermen */
    }
}

  section.terms {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 20px;
  }
  section.terms h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    margin-bottom: 20px;
  }

  .artikel {
    margin-top: 30px;
  }
  .artikel h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
    margin-bottom: 10px;
  }
  .tekst {
    line-height: 1.6;
  }
  ol {
    padding-left: 20px;
  }
  ul {
    padding-left: 20px;
  }

  /* Responsive */
  @media(max-width: 600px) {
    section.terms {
      padding: 0 10px;
    }
    section.terms h2 {
      font-size: 1.75em;
    }
    .artikel h3 {
      font-size: 1.3em;
    }
  }

  .privacy {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 20px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }

  .privacy h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    margin-bottom: 20px;
  }

  /* Algemene tekststijl */
  .privacy p {
    margin-bottom: 15px;
  }

  /* Responsive aanpassingen */
  @media(max-width: 600px) {
    .privacy {
      padding: 10px;
    }
    .privacy h2 {
      font-size: 1.75em;
    }
  }

  /* Cookie banner styling */
  #cookieConsentContainer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #222;
    color: #fff;
    padding: 15px;
    display: none;
    z-index: 9999;
  }

  #cookieConsentContainer div {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  #cookieConsentContainer p {
    margin: 0 10px 0 0;
  }

  #cookieConsentContainer button {
    margin-left: 10px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
  }

  #acceptCookies {
    background-color: #ffd700;
    color: #222;
  }

  #moreInfo {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
  }

  /* Cookie info overlay */
  #cookie-informatie {
    display: none;
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    font-family: 'Open Sans', sans-serif;
  }

  #cookie-informatie h2 {
    margin-top: 0;
  }

  #cookie-informatie button {
    margin-top: 20px;
    padding: 10px 20px;
    background: #222;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
  }

/* Retourbeleid styling */
.retourbeleid {
  max-width: 900px;
  margin: 30px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  font-family: 'Open Sans', sans-serif;
}

.retourbeleid h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2em;
  margin-bottom: 20px;
  color: #222; /* Pas de kleur aan indien gewenst */
}

.retourbeleid h3 {
  margin-top: 20px;
  font-size: 1.2em;
  color: #333;
}

.retourbeleid p {
  margin-top: 10px;
  line-height: 1.6;
  color: #555;
}

.retourbeleid ul {
  margin-top: 10px;
  padding-left: 20px;
  list-style-type: disc;
  color: #555;
}

.retourbeleid a {
  color: #ffd700; /* of een andere kleur die bij je website past */
  text-decoration: underline;
}

@media(max-width: 600px) {
  .retourbeleid {
    padding: 10px;
  }
  .retourbeleid h2 {
    font-size: 1.75em;
  }
}

/* Maak SVG iconen kleiner */
.svg-icon {
  width: 25%; /* Pas deze waarde aan naar de gewenste grootte */
  height: auto; /* Behoud de verhoudingen */
}

  /* Main sectie */
  section.main-section {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 20px;
  }

  /* Titel FAQ */
  section.main-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    margin-bottom: 20px;
  }

  /* FAQ lijst */
  .faq {
    margin-bottom: 20px;
  }
  .question {
    background-color: #fff;
    padding: 15px;
    margin-bottom: 5px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
  }
  .question:hover {
    background-color: #eee;
  }

  /* Antwoord */
  .answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background-color: #fff;
    padding: 0 15px;
    border-radius: 4px;
  }
  .answer.open {
    max-height: 500px; /* groot genoeg om inhoud te tonen */
    padding: 15px;
  }

/* 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;
}

/* 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 {
  background-color: #222;
  color: #fff;
  padding: 40px 20px;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 20px;
}
.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}
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;
}

.fashion-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 40px 20px;
  background-color: #f4f4f4;
}
.fashion-item {
  flex: 1 1 30%;
  max-width: 30%;
  box-sizing: border-box;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; /* Als je alle tekst gecentreerd wilt */
}
.fashion-item img {
  max-height: 300px; /* Dit limiet houdt de afbeelding op een redelijke hoogte */
  width: 100%; /* Zorgt ervoor dat de afbeelding altijd 100% van de containerbreedte heeft */
  height: auto; /* Houdt de aspectratio intact */
  object-fit: contain; /* Zorgt ervoor dat de afbeelding correct wordt weergegeven binnen de gegeven ruimte */
  margin-bottom: 15px;
}
/* Media Query voor kleinere schermen */
@media (max-width: 768px) {
  .fashion-item {
    flex: 1 1 100%; /* Op mobiele apparaten neemt elk item de volledige breedte in */
    max-width: 100%;
  }
}
.image-container {
    position: relative; /* Dit maakt de container de referentie voor absolute positionering van het kind (de afbeelding) */
    width: 100%; /* Breedte van de container */
    height: auto; /* Hoogte aanpassen op basis van de inhoud */
}
.responsive-image {
    position: absolute;
    top: 0;
    right: 0; /* Helemaal rechts */
    width: 100%; /* De breedte van de container */
    height: 100%; /* Dit maakt de hoogte van de afbeelding 100% van de container hoogte */
    object-fit: cover; /* Maakt dat de afbeelding de container vult zonder de aspectratio te vervormen */
    z-index: 0; /* Dit brengt de afbeelding achter andere elementen (als die er zijn) */
}
@media (max-width: 768px) {
    .image-container {
        height: 200px; /* Andere hoogte voor kleinere schermen */
    }
}
.fashion-section {
    display: flex;
    flex-wrap: wrap; /* Items kunnen naar de volgende regel gaan wanneer ze niet passen */
    justify-content: space-around; /* Ruimte tussen items */
    padding: 40px 20px;
    background-color: #f4f4f4; /* Achtergrondkleur */
}
.fashion-item {
    flex: 1 1 30%; /* Breedt van 30% van de container */
    max-width: 30%; /* Max breedte van 30% */
    box-sizing: border-box; /* Padding en border zijn inbegrepen in de breedte */
    padding: 10px; /* Padding rondom elk item */
    display: flex;
    flex-direction: column; /* Verticaal gerangschikt */
    align-items: center; /* Center de inhoud */
    margin-bottom: 20px; /* Ruimte onder elk item */
}
.fashion-image {
    max-height: 300px; /* Max hoogte voor de afbeelding */
    max-width: 100%; /* Volledige breedte vanuit de container */
    height: auto; /* Houdt de aspect ratio intact */
    object-fit: contain; /* Zorgt ervoor dat de afbeelding niet vervormd wordt */
    margin-bottom: 15px; /* Ruimte onder de afbeelding */
}
h3 {
    font-family: 'Playfair Display', serif; /* Lettertype */
    font-size: 2.143em; /* Grootte letters */
    margin: 0; /* Geen standaard marge */
    text-align: center; /* Center tekst */
}
p {
    font-family: 'Lora', serif; /* Lettertype */
    font-style: italic; /* Schuin */
    margin-top: 10px; /* Ruimte boven paragraaf */
    text-align: center; /* Center tekst */
}
/* Media Query voor kleine schermen */
@media (max-width: 768px) {
    .fashion-item {
        flex: 1 1 100%; /* Elk item vult de volle breedte */
        max-width: 100%; /* Max breedte 100% */
    }
}

