body {
  margin: 0;
  font-family: 'Lora', serif;
  background-color: #000;
  color: #d8c090;
}

.sticky-header {
  position: sticky;
  top: 0;
  background-color: #000;
  z-index: 999;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

.branding h1 {
  color: #b8860b;
  font-size: 1.2rem;
  margin: 0;
}

.branding p {
  color: #fff;
  font-size: 0.7rem;
  margin: 0;
}

nav a {
  color: #d8c090;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 600;
}

nav a:hover {
  color: #fff;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch button {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.lang-switch button.active {
  color: #b8860b;
}

.top-phone {
  color: #b8860b;
  text-decoration: none;
  font-weight: bold;
}

/* HERO SECTION */
.hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 50px 60px;
}

.text-container {
  flex: 1;
  min-width: 350px;
  padding-right: 40px;
}

.text-container h2 {
  color: #b8860b;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.highlight {
  color: #b8860b;
  font-weight: bold;
}

.image-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.image-container img {
  width: 85%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(184, 134, 11, 0.4);
}

/* CONTACT BUTTONS */
.contact-line {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.phone-btn, .whatsapp-btn {
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: bold;
}

.phone-btn {
  background: #b8860b;
  color: #000;
}

.whatsapp-btn {
  background: #25D366;
  color: white;
}

/* ABOUT SECTION */
.about {
  margin-top: 40px;
}

.about h3 {
  color: #b8860b;
  margin-bottom: 10px;
}

.about p {
  line-height: 1.6;
}

/* REVIEWS */
.reviews {
  text-align: center;
  padding: 60px 20px;
  background-color: #111;
}

.reviews h2 {
  color: #b8860b;
}

.review {
  display: none;
}

.review.active {
  display: block;
  color: #d8c090;
  font-style: italic;
}

.review span {
  display: block;
  margin-top: 10px;
  color: #b8860b;
}

/* MOBILE CALL BUTTON */
.mobile-call {
  display: none;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 30px;
  }

  .image-container {
    justify-content: center;
  }

  .mobile-call {
    display: block;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #b8860b;
    padding: 12px 25px;
    border-radius: 50px;
  }

  .mobile-call a {
    color: black;
    text-decoration: none;
    font-weight: bold;
  }
}

.hidden {
  display: none;
}

/* CONTACT SECTION */
.contact {
  text-align: center;
  background-color: #111;
  color: #d8c090;
  padding: 60px 20px;
  transition: opacity 0.6s ease, max-height 0.6s ease;
  overflow: hidden;
  opacity: 0;
  max-height: 0;
}

.contact.visible {
  opacity: 1;
  max-height: 500px;
}


.contact a {
  color: #d8c090;
  text-decoration: none;
  font-weight: bold;
}

.contact a:hover {
  color: #b8860b;
}


/* Gouden lijn onder header */
.header-line {
  width: 100%;
  height: 2px;
  background-color: #b8860b;
  margin-top: 5px;
}

/* Reviews pijlen */
.review-slider {
  position: relative;
  display: inline-block;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #b8860b;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px 10px;
  transition: color 0.3s;
}

.arrow:hover {
  color: #fff;
}

.arrow.left {
  left: -50px;
}

.arrow.right {
  right: -50px;
}

/* Footer */
.footer {
  text-align: center;
  background-color: #000;
  color: #d8c090;
  padding: 20px 10px;
  font-size: 0.9rem;
}

/* Vaste belknop rechtsonder */
.floating-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #b8860b;
  color: #000;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(184, 134, 11, 0.5);
  transition: background 0.3s, transform 0.3s;
  z-index: 1000;
}

.floating-call:hover {
  background-color: #d8c090;
  transform: scale(1.05);
}
