* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  color: #3a3a3a;
  background: #fff;
  overflow-x: hidden;
}

/* NAV */
nav {
  background: #fff;
  border-bottom: 1px solid #f0e6e6;
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
}

nav .logo {
  display: flex;
  align-items: center;
  line-height: 0;
  overflow: hidden;
  height: 80px;
}

nav .logo img {
  height: 200px;
  width: auto;
  object-fit: cover;
  object-position: center center;
  display: block;
  margin: -40px 0;
}

nav a {
  text-decoration: none;
  color: #3a3a3a;
  margin-left: 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

nav a:hover {
  color: #c47b8a;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #fdf0f3 0%, #fce8f0 50%, #f9e4ec 100%);
  padding: 4rem 2rem;
}

.hero-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-content {
  flex: 1;
  text-align: left;
}

.hero h1 {
  font-size: 3rem;
  color: #c47b8a;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.hero p {
  font-size: 1.15rem;
  color: #7a6a6a;
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero a {
  display: inline-block;
  background: #c47b8a;
  color: #fff;
  padding: 0.8rem 2.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: background 0.2s;
}

.hero a:hover {
  background: #a8606f;
}

.hero-image-container {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.slider {
  position: relative;
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(196, 123, 138, 0.2);
}

.slides {
  position: relative;
  width: 100%;
  height: 500px;
}

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

.slide.active {
  opacity: 1;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  color: #c47b8a;
  border: none;
  padding: 1rem 1.2rem;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 10;
  transition: background 0.3s;
  border-radius: 4px;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.95);
}

.slider-btn.prev {
  left: 1rem;
}

.slider-btn.next {
  right: 1rem;
}

.slider-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

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

.dot.active,
.dot:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* DIENSTEN */
.diensten {
  padding: 5rem 2rem;
  text-align: center;
  background: #fff;
}

.diensten h2 {
  font-size: 2rem;
  color: #c47b8a;
  margin-bottom: 0.5rem;
}

.diensten .subtitle {
  color: #9a8a8a;
  margin-bottom: 3rem;
  font-size: 0.95rem;
}

.diensten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.dienst-kaart {
  background: #fdf0f3;
  border-radius: 12px;
  padding: 2rem 1.5rem;
}

.dienst-kaart .icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.dienst-kaart h3 {
  font-size: 1rem;
  color: #3a3a3a;
  margin-bottom: 0.4rem;
}

.dienst-kaart p {
  font-size: 0.85rem;
  color: #9a8a8a;
}

/* RESERVEREN */
.reserveren {
  padding: 5rem 2rem;
  background: #fdf0f3;
  text-align: center;
}

.reserveren h2 {
  font-size: 2rem;
  color: #c47b8a;
  margin-bottom: 0.5rem;
}

.reserveren .subtitle {
  color: #9a8a8a;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

form {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}

.form-rij {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-groep {
  margin-bottom: 1.2rem;
}

label {
  display: block;
  font-size: 0.85rem;
  color: #7a6a6a;
  margin-bottom: 0.4rem;
  letter-spacing: 0.3px;
}

input, select, textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid #e8d5da;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
  color: #3a3a3a;
  outline: none;
  transition: border-color 0.2s;
}

input:focus, select:focus, textarea:focus {
  border-color: #c47b8a;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

button[type="submit"] {
  width: 100%;
  background: #c47b8a;
  color: #fff;
  border: none;
  padding: 0.9rem;
  border-radius: 30px;
  font-size: 1rem;
  font-family: inherit;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s;
}

button[type="submit"]:hover {
  background: #a8606f;
}

.form-info {
  text-align: center;
  font-size: 0.8rem;
  color: #b09898;
  margin-top: 1rem;
}

/* FOOTER */
footer {
  background: #3a3a3a;
  color: #ccc;
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
}

footer span {
  color: #c47b8a;
}

@media (max-width: 768px) {
  .hero {
    padding: 3rem 2rem;
  }
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    text-align: center;
  }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-image-container {
    width: 100%;
    margin-top: 2rem;
  }
  .slider {
    max-width: 100%;
    width: 100%;
  }
  .slides {
    height: 400px;
  }
}

@media (max-width: 500px) {
  .hero {
    padding: 3rem 0;
  }
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 0;
  }
  .hero-content {
    text-align: center;
    padding: 0 1.5rem;
  }
  .hero h1 { font-size: 2rem; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-image-container {
    width: 100%;
    margin-top: 2rem;
    padding: 0;
  }
  .slider {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
  }
  .slides {
    height: 400px;
  }
  .slide {
    object-fit: cover;
    object-position: center;
  }
  .slider-btn {
    display: none;
  }
  .form-rij { grid-template-columns: 1fr; }
  nav .links { display: none; }
  nav .logo {
    height: 70px;
  }
  nav .logo img { 
    height: 180px;
    margin: -40px 0;
  }
}
