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

body {
  font-family: 'Playfair Display', serif;
  background: #fdf6f1;
  color: #4b2c1c;
  line-height: 1.6;
  animation: fadeIn 1.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

/* Header */
header {
  background: #f3e8dd;
  padding: 1.5rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: #4b2c1c;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #c08e7f;
}

/* Hero section */
@keyframes pulse-hands {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.hero {
  position: relative;
  background: linear-gradient(to bottom, #f7e8dc, #fdf6f1);
  padding: 8rem 2rem;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: url('../img/icons/hero-hands.png') no-repeat center center;
  background-size: contain;
  opacity: 0.15;
  z-index: 0;
  animation: pulse-hands 6s ease-in-out infinite;
}

.hero h2,
.hero button {
  position: relative;
  z-index: 2;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #4b2c1c;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero button {
  padding: 0.8rem 2.2rem;
  background: #c08e7f;
  border: none;
  color: white;
  font-size: 1.1rem;
  border-radius: 30px;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.hero button:hover {
  background: #a67162;
  transform: scale(1.05);
}

/* Intro section */
.intro {
  padding: 4rem 0;
  text-align: center;
}

.intro p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #5d3e2f;
}

.services {
  display: flex;
  justify-content: space-around;
  margin-top: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.service {
  max-width: 180px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
  padding: 1rem;
}

.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  background: #f8efe7;
}

.service img {
  width: 100%;
  margin-bottom: 1rem;
}

.service h3 {
  font-size: 1rem;
}

/* In je style.css bestand */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  text-align: center;
  color: #6e4d37;
  margin-bottom: 1rem;
}

.review-list {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #f9f6f2;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.review {
  background-color: #ffffff;
  border-left: 4px solid #c9a27e; /* zachte aardetint */
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.review strong {
  display: block;
  font-size: 1.1rem;
  color: #3e3e3e;
  margin-bottom: 0.25rem;
  font-weight: bold;
}

.review p {
  margin: 0;
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.review-form {
  background-color: #f9f6f2;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  max-width: 600px;
  margin: 2rem auto;
  font-family: 'Playfair Display', serif;
}

.review-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #6e4d37;
  font-size: 1.1rem;
}

.review-form input[type="text"],
.review-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  background-color: #fff;
}

.review-form input:focus,
.review-form textarea:focus {
  outline: none;
  border-color: #c9a27e;
  box-shadow: 0 0 4px rgba(201, 162, 126, 0.5);
}

.review-form button {
  background-color: #c9a27e;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.review-form button:hover {
  background-color: #b18e6f;
}
.review {
  border-bottom: 1px solid #ccc;
  padding: 1em 0;
}
.review-header {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}

/* Footer */
footer {
  background-color: #f5f3f0;
  padding: 40px 20px;
  font-family: 'Playfair Display', serif;
  color: #333;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 250px;
}

.footer-left h2,
.footer-center h3,
.footer-right h3 {
  margin-bottom: 10px;
}

.footer-left p,
.footer-center p {
  margin: 5px 0;
}

.footer-center a {
  color: #333;
  text-decoration: none;
}

.footer-center a:hover {
  text-decoration: underline;
}

.socials a {
  margin-right: 15px;
  display: inline-block;
}

.socials img {
  width: 50px;
  height: 50px;
  transition: transform 0.2s ease;
}

.socials img:hover {
  transform: scale(1.1);
}


/* Modal stijl */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-content img.modal-icon {
  width: 80px;
  margin-bottom: 1rem;
}

.modal-content .modal-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.modal-content .modal-description {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.modal-content .modal-price {
  font-weight: bold;
  font-size: 1.1rem;
  color: #4b2c1c;
}

.modal .close {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
}

.booking-form button {
  padding: 0.8rem;
  background: #c08e7f;
  color: white;
  border: none;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.booking-form button:hover {
  background: #a67162;
}
