:root {
  --beige: #E8E6E0;
  --anthracite: #2A2A2A;
  --groen: #527F64;
  --grijs-groen: #64716A;
  --white: #FFFFFF;

  --font-base: 1rem;
  --font-small: 0.9rem;
  --font-large: 1.25rem;
  --font-xl: 1.5rem;
}

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

ul > li {
  list-style: none;
}

body {
  font-family: 'Chakra Petch', sans-serif;
  color: var(--anthracite);
  background-color: var(--beige);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: var(--font-base);
  line-height: 1.6;
}

.container {
  width: 71%;
  padding: 0 1.5rem;
  margin: 0 auto;
  max-width: 1200px;
}

.main-logo {
  display: block;
  max-width: 220px;
  width: 100%;
  height: auto;
}

/* Hide SVG variants */
.logo-wrapper, .kapperjim-logo {
  display: none !important;
}

.menu-header {
  background: var(--white);
  padding: 0.7rem 0;
  box-shadow: 0 6px 24px -8px rgba(100, 113, 106, 0.13), 0 1.5px 0 rgba(100, 113, 106, 0.07);
  z-index: 10;
	margin-left: -2%;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: left;
  height: 75px;
}

.cta-button, .main-cta {
  display: inline-block;
  background-color: var(--groen);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: 0.5px;
  padding: 1rem 2rem;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(82, 127, 100, 0.08);
}

.cta-button:hover, .main-cta:focus {
  background: var(--grijs-groen);
  transform: translateY(-2px) scale(1.03);
}

.body-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  background: var(--beige);
  text-align: center;
  padding: 2rem 1rem;
}

.body-content h1 {
  font-family: 'Dela Gothic One', cursive;
  font-size: clamp(2rem, 6vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--anthracite);
}

.promo-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--grijs-groen);
  margin-bottom: 2rem;
}

footer {
  background: var(--anthracite);
  color: var(--white);
  padding: 1.1rem 1rem;
  flex-shrink: 0;
  box-shadow: 0 -6px 24px -8px rgba(100, 113, 106, 0.13), 0 -1.5px 0 rgba(100, 113, 106, 0.07);
}

.footer-flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  text-align: right;
  font-size: var(--font-small);
  line-height: 1.4;
}

.footer-contact a,
.footer-contact .footer-address,
.footer-contact .footer-kvk {
  display: flex;
  align-items: center;
  gap: 0.4em;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-contact i {
  color: var(--grijs-groen);
  font-size: 1em;
  min-width: 1.1em;
  text-align: center;
}

.footer-contact span {
  display: inline-block;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link, .footer-tel {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.social-link:hover,
.footer-tel:hover {
  color: var(--groen);
}

.booking-preview-label {
  font-size: var(--font-large);
  color: var(--grijs-groen);
  margin-bottom: 0.7rem;
  margin-left: 2px;
}

.booking-preview {
  background: var(--beige);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(100, 113, 106, 0.07);
  padding: 4rem 2rem;
  max-width: 1000px;
  min-height: 500px;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.booking-preview .promo-text {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  text-align: center;
  margin-bottom: 2rem;
  max-width: 700px;
}

.booking-preview .main-cta {
  font-size: 1.2rem;
  padding: 1.1rem 2.5rem;
  margin-bottom: 0;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 700px) {
  .header-flex {
    justify-content: center;
    padding: 0 1rem;
  }

  .main-logo {
    width: auto;
    height: 70px;
    max-width: 90vw;
  }

  .container {
    padding: 0 1rem;
  }

  .body-content h1 {
    font-size: 2rem;
  }

  .promo-text {
    font-size: 1.05rem;
  }

  .cta-button, .main-cta {
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
  }

  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 1rem;
  }

  .footer-contact {
    align-items: flex-start;
    text-align: left;
  }

  .footer-contact a {
    font-size: 1.1rem;
  }

  .booking-preview {
    padding: 3rem 1rem;
    width: 100%;
    max-width: 95vw;
    min-height: unset;
  }

  .booking-preview .promo-text {
    font-size: 1.1rem;
  }
}
