/* Reset en basis stijlen */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: #1f456e;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #15304d;
}

img {
  max-width: 100%;
  height: auto;
}

/* Typografie */
h1,
h2,
h3,
h4 {
  margin-bottom: 0.5em;
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 1.8rem;
  margin-top: 1.5em;
  font-weight: 600;
}

h3 {
  font-size: 1.3rem;
  margin-top: 1em;
  font-weight: 600;
}

p {
  margin-bottom: 1em;
}

/* Hero sectie */
.hero {
  background-color: #f9f9f9;
  padding: 3rem 0 2rem; /* Verkleinde padding onderaan */
  text-align: center;
  background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
    url("../images/gent-skyline.jpg");
  background-size: cover;
  background-position: center;
}

.hero h1 {
  color: #333;
  font-size: 3rem;
  margin-bottom: 0.5rem; /* Verkleinde margin */
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Kamers overzicht */
.kamers-overzicht {
  padding: 2rem 0 4rem; /* Verkleinde padding bovenaan */
}

.kamers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 0.5rem; /* Verkleinde margin-top */
}

.kamer-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.kamer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Stijlen voor klikbare kamers */
.kamer-card-clickable {
  cursor: pointer;
}

/* Stijlen voor niet-beschikbare kamers */
.kamer-card-unavailable {
  transform: none !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

.kamer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.kamer-verhuurd-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: rgba(108, 117, 125, 0.9);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.button-disabled {
  background-color: #6c757d !important;
  cursor: not-allowed !important;
  opacity: 0.7;
}

.button-disabled:hover {
  background-color: #6c757d !important;
}

.kamer-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.kamer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.kamer-card:not(.kamer-card-unavailable):hover .kamer-image img {
  transform: scale(1.05);
}

.kamer-info {
  padding: 1.5rem;
  position: relative;
}

.kamer-info h3 {
  margin-top: 0;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.kamer-adres {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.kamer-adres i {
  color: #1f456e;
  font-size: 1rem;
}

.kamer-kenmerken-card {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.kenmerk-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.kenmerk-card i {
  color: #1f456e;
  font-size: 1.2rem;
}

.beschikbaarheid {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  text-align: center;
}

.button {
  display: inline-block;
  background-color: #1f456e;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s;
  width: 100%;
  text-align: center;
}

.button:hover {
  background-color: #15304d;
  color: #fff;
}

/* Contact sectie */
.contact-section {
  background-color: #f9f9f9;
  padding: 4rem 0;
}

.contact-info {
  margin-top: 1.5rem;
}

.contact-info p {
  margin-bottom: 0.8rem;
}

.contact-info i {
  color: #1f456e;
  margin-right: 0.5rem;
  width: 20px;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumbs {
  margin: 2rem 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  flex-wrap: nowrap; /* Prevent wrapping to new line */
  overflow-x: auto; /* Allow horizontal scrolling if needed */
  white-space: nowrap; /* Keep all text on one line */
  background-color: #f9f9f9;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  scrollbar-width: none; /* Hide scrollbar in Firefox */
  -ms-overflow-style: none; /* Hide scrollbar in IE/Edge */
}

/* Hide scrollbar in Chrome/Safari */
.breadcrumbs::-webkit-scrollbar {
  display: none;
}

.breadcrumbs a {
  color: #1f456e;
  display: flex;
  align-items: center;
  flex-shrink: 0; /* Prevent shrinking */
}

.breadcrumbs a:hover {
  color: #15304d;
}

.breadcrumbs span {
  color: #666;
  flex-shrink: 0; /* Prevent shrinking */
}

.breadcrumbs i {
  margin-right: 0.5rem;
  font-size: 0.8rem;
}

.breadcrumbs .separator {
  color: #ccc;
  margin: 0 0.5rem; /* Slightly increased spacing */
  flex-shrink: 0; /* Prevent shrinking */
}

/* Responsive adjustments for breadcrumbs */
@media (max-width: 576px) {
  .breadcrumbs {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    margin: 1.5rem 0;
  }

  .breadcrumbs .separator {
    margin: 0 0.3rem;
  }
}

/* Kamer detail pagina */
.kamer-detail {
  padding-bottom: 4rem;
}

/* Kamer top grid layout */
.kamer-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1rem;
}

.kamer-foto-kolom {
  display: flex;
  flex-direction: column;
}

.kamer-beschrijving-kolom {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 0; /* Geen padding bovenaan */
  margin-bottom: 0; /* Verwijder de witruimte onderaan */
}

/* Carousel */
.carousel-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem; /* Voeg wat witruimte toe tussen de carrousel en de basisinfo */
  cursor: pointer;
}

.carousel {
  position: relative;
  height: 500px;
  background-color: #2a3b4d; /* Donkergrijze achtergrond met blauwe tint */
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Video in carousel */
.carousel-slide.video-slide {
  position: relative;
  background-color: #000;
}

.carousel-slide.video-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(31, 69, 110, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
  transition: background-color 0.3s;
}

.video-play-button:hover {
  background-color: rgba(31, 69, 110, 1);
}

.video-play-button i {
  color: white;
  font-size: 2rem;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff; /* Verwijderd transparantie */
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Toegevoegde schaduw voor betere zichtbaarheid */
}

.carousel-button:hover {
  background-color: #f0f0f0; /* Lichtere achtergrond bij hover */
}

.carousel-button.prev {
  left: 15px;
}

.carousel-button.next {
  right: 15px;
}

.carousel-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active,
.dot:hover {
  background-color: #1f456e;
}

/* Fullscreen modal */
.fullscreen-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
}

.fullscreen-modal.active {
  display: flex;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1010;
}

.fullscreen-carousel {
  position: relative;
  width: 90%;
  height: 90%;
  max-width: 1200px;
}

.fullscreen-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fullscreen-slide.active {
  opacity: 1;
}

.fullscreen-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Video in fullscreen */
.fullscreen-slide.video-slide {
  background-color: #000;
}

.fullscreen-slide.video-slide video {
  max-width: 100%;
  max-height: 100%;
}

.fullscreen-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff; /* Verwijderd transparantie */
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: #333; /* Donkere tekstkleur voor contrast */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
  z-index: 1010;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Toegevoegde schaduw voor betere zichtbaarheid */
}

.fullscreen-button:hover {
  background-color: #f0f0f0; /* Lichtere achtergrond bij hover */
}

.fullscreen-button.prev {
  left: 20px;
}

.fullscreen-button.next {
  right: 20px;
}

/* Kamer basis info */
.kamer-basis-info {
  margin-bottom: 2rem;
}

/* Nieuwe grid layout voor kenmerken */
.kamer-kenmerken {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.kenmerk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.kenmerk i {
  color: #1f456e;
  font-size: 1rem;
}

/* Google Maps link stijl */
.maps-link {
  display: inline-flex;
  align-items: center;
  margin-left: 0.5rem;
  color: #1f456e;
  font-size: 0.85rem;
}

.maps-link:hover {
  color: #15304d;
}

.maps-link i {
  font-size: 0.85rem;
}

/* Kamer locatie styling onder de basisinfo */
.kamer-locatie {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #666;
  white-space: nowrap; /* Prevent text wrapping */
}

.kamer-locatie i {
  color: #1f456e;
  font-size: 1rem;
  flex-shrink: 0; /* Prevent icon from shrinking */
}

.kamer-locatie a {
  white-space: nowrap; /* Ensure address doesn't break */
  color: #1f456e;
}

.kamer-locatie a:hover {
  text-decoration: underline;
}

@media (max-width: 576px) {
  .kamer-kenmerken {
    grid-template-columns: 1fr; /* Op kleine schermen, maak één kolom */
    grid-template-rows: repeat(4, auto);
  }
}

/* Hoofdbeschrijving */
.kamer-hoofdbeschrijving {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0;
  margin-top: 0; /* Verwijder eventuele margin bovenaan */
}

/* Voorzieningen en andere secties */
.voorzieningen-lijst,
.voorwaarden-lijst,
.locatie-omgeving-lijst,
.gedeelde-voorzieningen-lijst {
  list-style: none;
  margin-bottom: 2rem;
}

.voorzieningen-lijst li,
.voorwaarden-lijst li,
.locatie-omgeving-lijst li,
.gedeelde-voorzieningen-lijst li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
}

.voorzieningen-lijst i,
.voorwaarden-lijst i,
.voorwaarden-lijst i,
.locatie-omgeving-lijst i,
.gedeelde-voorzieningen-lijst i {
  color: #1f456e;
  margin-right: 0.8rem;
  min-width: 20px;
  text-align: center;
  margin-top: 0.2rem;
}

/* Nieuw gestylde contact-cta sectie */
.contact-cta {
  background: linear-gradient(135deg, #e1eaf3 0%, #1f456e 100%);
  padding: 2.5rem;
  border-radius: 12px;
  margin-top: 3rem;
  margin-bottom: 4rem; /* Add whitespace below the contact block */
  box-shadow: 0 4px 15px rgba(31, 69, 110, 0.1); /* Reduce shadow intensity */
  border: 1px solid rgba(31, 69, 110, 0.15); /* Lighter border */
}

.contact-cta-container {
  display: flex;
  flex-direction: column;
}

/* Nieuw toegevoegde stijlen voor de contact-cta-header */
.contact-cta-header {
  text-align: center; /* Wijziging: tekst in het midden uitlijnen */
  margin-bottom: 2rem;
}

.contact-cta-header h2 {
  color: #ffffff; /* Change to white for better contrast on dark background */
  font-size: 1.8rem; /* Slightly smaller */
  margin-top: 0;
  margin-bottom: 1rem;
}

.contact-cta-header p {
  font-size: 1.1rem;
  margin-bottom: 0;
  color: #ffffff; /* Change to white for better contrast on dark background */
}

.contact-cta-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); /* Lighter shadow */
  width: 100%;
  max-width: 33%;
}

.contact-info-item i {
  color: #1f456e;
  font-size: 1.3rem; /* Slightly smaller */
  background-color: rgba(31, 69, 110, 0.08); /* Lighter background */
  width: 45px; /* Slightly smaller */
  height: 45px; /* Slightly smaller */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-info-item a {
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
  transition: all 0.3s;
}

.contact-info-item a:hover {
  color: #1f456e;
  text-decoration: none;
}

.booking-column {
  display: flex;
  align-items: center;
}

.booking-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: white;
  color: #1f456e;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  text-align: center;
}

.booking-button:hover {
  background-color: #f5f9ff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: #1f456e;
  text-decoration: none;
}

.booking-button i {
  font-size: 1.5rem;
}

/* Verbeterde contact-info-direct styling */
.contact-info-direct {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem; /* Ruimte tussen de contactblokken */
  margin-top: 1.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .contact-info-direct {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-info-direct p {
    width: calc(50% - 0.5rem);
    max-width: 400px;
  }
}

.contact-info-direct p {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); /* Lighter shadow */
  width: 100%;
  max-width: 400px; /* Iets smaller voor betere layout */
}

.contact-info-direct i {
  color: #1f456e;
  font-size: 1.3rem; /* Slightly smaller */
  background-color: rgba(31, 69, 110, 0.08); /* Lighter background */
  width: 45px; /* Slightly smaller */
  height: 45px; /* Slightly smaller */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0; /* Voorkomt dat het icoon krimpt */
}

.contact-info-direct a {
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
  transition: all 0.3s;
}

.contact-info-direct a:hover {
  color: #1f456e;
  text-decoration: none;
}

/* Video container styling */
.video-container {
  margin: 3rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background-color: #f9f9f9;
  padding: 2rem;
}

.video-container h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  text-align: center;
}

.video-wrapper {
  position: relative;
  max-width: 450px;
  margin: 0 auto;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Prijsinformatie sectie */
.kamer-prijsinformatie {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.prijs-kaart {
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
  max-width: 33%; /* Beperkt tot 1/3 van de container */
  width: 100%; /* Zorgt ervoor dat de kaart altijd de volledige beschikbare breedte gebruikt */
}

.prijs-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.prijs-rij {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.8rem;
  white-space: nowrap; /* Voorkomt dat tekst naar een nieuwe regel gaat */
}

.prijs-rij.totaal {
  border-bottom: none;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 2px solid #1f456e;
  font-weight: 700;
  font-size: 1.2rem;
  color: #1f456e;
}

.prijs-label {
  font-weight: 500;
}

.prijs-waarde {
  font-weight: 600;
  margin-left: 1rem; /* Extra ruimte tussen label en waarde */
}

/* Responsive design */
@media (max-width: 992px) {
  .carousel {
    height: 400px;
  }

  .contact-cta {
    padding: 2.5rem 1.5rem;
  }

  /* Responsive design voor de prijskaart */
  .prijs-kaart {
    max-width: 50%; /* Iets breder op middelgrote schermen */
  }
}

@media (max-width: 768px) {
  /* Bestaande stijlen behouden */
  .carousel {
    height: 350px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .kamer-kenmerken {
    grid-template-columns: 1fr 1fr; /* Behoud 2 kolommen op middelgrote schermen */
  }

  /* Nieuwe toevoeging voor responsiveness */
  .kamer-top-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .kamer-beschrijving-kolom {
    margin-bottom: 0; /* Verwijder alle witruimte onder de beschrijving op mobiel */
  }

  /* Verminder de witruimte tussen beschrijving en details sectie */
  .kamer-details-section {
    margin-top: 0; /* Verwijder alle witruimte boven de details sectie */
  }

  /* Prijsinformatie tabel op volledige breedte op mobiel */
  .prijs-kaart {
    max-width: 100%;
    padding: 1.5rem;
  }

  /* Zorg ervoor dat de prijsinformatie niet op 2 lijnen komt */
  .prijs-rij {
    font-size: 0.95rem;
    padding-bottom: 0.6rem;
  }

  .prijs-rij.totaal {
    font-size: 1.1rem;
  }

  .contact-info-direct p {
    padding: 0.8rem 1.5rem;
    max-width: 100%; /* Volledige breedte op mobiel */
  }

  .contact-info-direct i {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  /* Verkleinde ruimte op mobiel */
  .hero {
    padding: 2rem 0 1.5rem;
  }

  .kamers-overzicht {
    padding: 1.5rem 0 3rem;
  }

  .video-container {
    padding: 1.5rem;
    margin: 2rem 0;
  }
  .kamer-details-section h2:first-child {
    margin-top: 0;
  }
  .contact-cta {
    background: linear-gradient(135deg, #e1eaf3 0%, #1f456e 100%); /* Ensure background is applied */
    padding: 1.5rem; /* Slightly reduce padding on mobile */
    margin-top: 2rem;
    margin-bottom: 3rem;
  }

  .contact-cta-header h2,
  .contact-cta-header p {
    color: #ffffff; /* Ensure text is visible on the gradient */
  }

  .contact-info-direct {
    width: 100%; /* Ensure full width on mobile */
  }
}

@media (max-width: 576px) {
  .carousel {
    height: 250px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .kamer-hoofdbeschrijving {
    font-size: 1.1rem;
  }

  .contact-cta {
    padding: 2rem 1rem;
  }

  .contact-cta h2 {
    font-size: 1.6rem;
  }

  .contact-info-direct p {
    flex-direction: row; /* Houd de richting horizontaal */
    gap: 0.8rem;
    text-align: left; /* Tekst links uitlijnen */
    padding: 0.8rem 1rem;
    justify-content: flex-start; /* Zorg ervoor dat items links uitgelijnd zijn */
  }

  .contact-info-direct a {
    text-align: left; /* Zorg dat de link tekst links uitgelijnd is */
  }

  .contact-info-direct a {
    font-size: 1rem; /* Iets kleinere tekst op zeer kleine schermen */
  }

  .video-container {
    padding: 1rem;
  }

  .kamer-kenmerken {
    grid-template-columns: 1fr; /* Op kleine schermen, maak één kolom */
    gap: 0.5rem;
  }
}

/* Video indicator styling */
.video-indicator {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 5px;
}

.video-indicator i {
  font-size: 0.9rem;
}

/* Verbeterde video play button styling */
.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(31, 69, 110, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
  transition: background-color 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.video-play-button:hover {
  background-color: rgba(31, 69, 110, 1);
  transform: translate(-50%, -50%) scale(1.05);
}

.video-play-button i {
  color: white;
  font-size: 2rem;
}

/* Verbeterde fullscreen video controls */
.fullscreen-slide.video-slide .video-play-button {
  opacity: 1;
  width: 100px;
  height: 100px;
}

.fullscreen-slide.video-slide .video-play-button i {
  font-size: 2.5rem;
}

/* Swipe hint voor mobiel */
@media (max-width: 768px) {
  .swipe-hint {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: none;
    animation: fadeOut 3s forwards;
  }

  .swipe-hint i {
    animation: swipeAnimation 1.5s infinite;
  }

  @keyframes swipeAnimation {
    0% {
      transform: translateX(-5px);
    }
    50% {
      transform: translateX(5px);
    }
    100% {
      transform: translateX(-5px);
    }
  }

  @keyframes fadeOut {
    0% {
      opacity: 1;
    }
    70% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
}

/* Voeg een nieuwe stijl toe voor de export HTML knop, na de .copy-json-btn:hover stijl: */

.export-html-btn {
  background-color: #28a745;
  margin-right: 0.5rem;
}

.export-html-btn:hover {
  background-color: #218838;
}

/* Voeg deze stijl toe voor de booking-button-container */
.booking-button-container {
  width: 100%;
  margin-top: 2rem; /* Vergroot de ruimte boven de knop */
  text-align: left; /* Zorg dat de knop links uitgelijnd is */
}

/* Wijzig de kamer-top-grid om de booking-button-container correct te positioneren */
.kamer-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1rem;
}

/* Pas de contact-cta aan om de booking-column te verwijderen */
.contact-cta-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (max-width: 768px) {
  .contact-info-item {
    max-width: 100%;
  }
}

.gebouw-foto,
.kamer-foto-kolom {
  margin-bottom: 0;
}

.gebouw-foto .carousel {
  height: 500px;
  overflow: hidden;
}

.gebouw-foto .carousel-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gebouw-foto .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Find the kamer-hoofdbeschrijving class and modify its margin-bottom */
.kamer-hoofdbeschrijving {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0;
  margin-top: 0;
}

/* Find the kamer-beschrijving-kolom class and modify its margin-bottom */
.kamer-beschrijving-kolom {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 0;
  margin-bottom: 0;
}

/* Find the kamer-details-section class and modify its margin-top */
.kamer-details-section {
  margin-top: 0;
}

/* Zoek de kamer-beschrijving-kolom class en zorg dat margin-bottom op 0 staat */
.kamer-beschrijving-kolom {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 0; /* Geen padding bovenaan */
  margin-bottom: 0; /* Verwijder de witruimte onderaan */
}

/* Zoek de kamer-details-section class en zorg dat margin-top op 0 staat */
.kamer-details-section {
  margin-top: 0; /* Verwijder de witruimte bovenaan */
  padding-top: 0; /* Verwijder eventuele padding bovenaan */
}

/* Voeg een specifieke regel toe om eventuele padding te verwijderen */
.kamer-details-section > div:first-child {
  padding-top: 0;
  margin-top: 0;
}

/* Zorg dat de eerste h2 in de details section geen margin-top heeft */
.kamer-details-section h2:first-child {
  margin-top: 0;
}

/* Nieuwe stijlen voor de layout onder de carrousel */
@media (min-width: 768px) {
  /* Basis info container aanpassen voor desktop */
  .kamer-basis-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Kenmerken links uitlijnen */
  .kamer-kenmerken {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    margin-bottom: 0;
  }

  /* Locatie links uitlijnen */
  .kamer-locatie {
    margin-left: auto; /* Duwt het element naar rechts */
  }

  /* Zorg dat de kenmerken niet te veel ruimte innemen */
  .kenmerk {
    white-space: nowrap;
  }
}
