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

body {
  font-family: "Playfair Display", serif;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    #f6b2c8 0%,
    #f7b08a 45%,
    #f3a15f 100%
  );
  color: white;
  position: relative;
}

/* NAV – DEFINITIEF */
.nav {
  display: flex;
  align-items: center;
  padding: 40px 48px;
  font-size: 13px;              /* iets kleiner = past altijd */
}

.nav .logo {
  font-size: 20px;              /* bewust net iets subtieler */
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;                    /* compacter */
  margin-left: auto;            /* duwt menu naar rechts */
  white-space: nowrap;
}

/* HERO TEKST */
.hero-text {
  position: absolute;
  bottom: 80px;
  left: 60px;
  max-width: 700px;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  font-weight: 400;
  line-height: 1.2;
}
