:root {
  --color-bg: #faf7f6;
  --color-primary: #d4b9b8;
  --color-primary-soft: #efdbd7;
  --color-dark: #333333;
  --color-light: #ffffff;
  --color-text: #444444;
  --shadow-soft: 0 8px 24px rgba(0,0,0,0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Lato", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
}

/* Layout helpers */

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 64px 0;
}

.section--light {
  background-color: #ffffff;
}

.section--dark {
  background-color: #222;
  color: #ffffff;
}

.section__subtitle {
  margin-top: 32px;
  margin-bottom: 8px;
}

.section__note {
  margin-top: 16px;
  font-size: 0.95rem;
  color: #666;
}

.grid {
  display: grid;
  gap: 32px;
}

.grid--2 {
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
}

@media (max-width: 768px) {
  .grid--2 {
    grid-template-columns: 1fr;
  }
}

/* Nav */

.site-header {
  position: relative;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background-color: var(--color-primary-soft);
  box-shadow: var(--shadow-soft);
  z-index: 100;
}

.nav__brand img {
  height: 48px;
}

.nav__links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav__links a {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--color-dark);
  padding: 8px 12px;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav__links a:hover {
  background-color: var(--color-primary);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    flex-direction: column;
    background-color: var(--color-primary-soft);
    padding: 16px;
    display: none;
  }
  .nav__links--open {
    display: flex;
  }
  .nav__toggle {
    display: block;
    color: var(--color-dark);
  }
}

/* Hero */

.hero {
  position: relative;
  height: 75vh;
  min-height: 420px;
  background-image: url("images/foto_1.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  margin-top: 64px; /* nav hoogte */
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero h1 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 2.8rem;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.hero__subtitle {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.hero__location {
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.hero__move {
  display: inline-block;
  margin-top: 4px;
  font-weight: 600;
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
  background-color: var(--color-primary);
  color: #000;
  border-color: #000;
}

.btn--primary:hover {
  background-color: var(--color-primary-soft);
}

.btn--light {
  background-color: #fff;
  color: #000;
  border-color: #fff;
}

.btn--light:hover {
  background-color: var(--color-primary-soft);
}

/* Notice */

.notice-wrapper {
  margin-top: 32px;
}

.notice {
  background-color: #fff7f5;
  border-left: 4px solid var(--color-primary);
  border-radius: 4px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

/* Card */

.card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.card--soft {
  background-color: #fff7f5;
}

/* Lists */

.list {
  list-style: none;
  padding-left: 0;
  margin: 16px 0;
}

.list li {
  margin-bottom: 6px;
}

.list--locations > li {
  margin-bottom: 12px;
}

.list--locations ul {
  list-style: disc;
  margin-top: 6px;
  margin-left: 20px;
}

/* Section images */

.section__image img {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

/* Contact */

.contact {
  display: grid;
  gap: 32px;
  align-items: center;
}

.contact a {
  color: var(--color-primary-soft);
}

.contact__cta {
  text-align: left;
}

@media (max-width: 768px) {
  .contact {
    grid-template-columns: 1fr;
  }
  .contact__cta {
    text-align: left;
  }
}

/* Footer */

.footer {
  background-color: #111;
  color: #ddd;
  padding: 32px 0;
  font-size: 0.9rem;
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__social a {
  color: #ddd;
  text-decoration: none;
}

.footer__social a:hover {
  text-decoration: underline;
}

.footer__credit a {
  color: #ddd;
}