/* Algemene Stijlen */
:root {
  --pink: #e91e63;
  /* De kleur van je jasje */
  --dark: #333;
  --light-grey: #f9f9f9;
  --white: #ffffff; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  margin: 0;
  color: var(--dark);
  scroll-behavior: smooth; }

.container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px; }

h2 {
  text-align: center;
  color: var(--pink);
  font-size: 2.5rem;
  margin-bottom: 40px; }

/* Navigatie */
header {
  background: var(--white);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); }

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  padding: 0 20px; }

.logo img {
  height: 60px; }

nav ul {
  display: flex;
  list-style: none; }

nav ul li a {
  text-decoration: none;
  color: var(--dark);
  margin-left: 20px;
  font-weight: bold;
  transition: color 0.3s; }

nav ul li a:hover {
  color: var(--pink); }

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/image2.jpeg") no-repeat center center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white; }

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px; }

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px; }

.btn {
  background: var(--pink);
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: transform 0.3s; }

.btn:hover {
  transform: scale(1.05); }

/* Flexbox Layouts */
.flex-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px; }

.flex-row.reverse {
  flex-direction: row-reverse; }

.image-box img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); }

.text-box {
  flex: 1; }

/* Prijslijst Headspa */
.bg-light {
  background: var(--light-grey); }

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px; }

.price-item {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border-top: 5px solid var(--pink); }

.price {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--pink);
  margin: 10px 0; }

.duration {
  color: #888;
  text-transform: uppercase;
  font-size: 0.8rem; }

.disclaimer {
  background: #fff3f3;
  padding: 15px;
  border-left: 5px solid var(--pink);
  margin: 20px 0; }

/* Klapp sectie */
.klapp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px; }

.klapp-card {
  background: var(--light-grey);
  padding: 20px;
  border-radius: 5px; }

/* Footer */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 40px 0; }

footer a {
  color: var(--pink);
  text-decoration: none; }

/* Responsive */
@media (max-width: 768px) {
  .flex-row, .flex-row.reverse {
    flex-direction: column; }

  nav ul {
    display: none; }

  .hero-content h1 {
    font-size: 2rem; } }
