:root {
  --color-sand-50: #faf8f5;
  --color-sand-100: #f5f1ea;
  --color-sand-200: #e8dfd0;
  --color-sand-300: #d9cab1;
  --color-sand-600: #a58760;
  --color-sand-700: #8b7050;
  --color-sand-900: #4a3d2f;
  --color-ocean-100: #e0f2fe;
  --color-ocean-600: #0284c7;
  --color-ocean-700: #0369a1;
  --color-white: #ffffff;

  --shadow-soft: 0 10px 15px -3px rgb(0 0 0 / 0.08),
    0 4px 6px -4px rgb(0 0 0 / 0.06);
  --shadow-strong: 0 20px 25px -5px rgb(0 0 0 / 0.12),
    0 8px 10px -6px rgb(0 0 0 / 0.1);

  --radius-lg: 1rem;
  --radius-full: 999px;
}

/* Reset klein beetje opschonen */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--color-sand-900);
  background-color: var(--color-sand-50);
}

/* Helpers */

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

img {
  max-width: 100%;
  display: block;
}

/* Navigatie / header */

.site-header {
  position: relative;
}

.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-sand-200);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  color: var(--color-ocean-600);
}

.nav-title {
  font-weight: 700;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--color-sand-700);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--color-ocean-600);
}

/* Buttons */

.btn {
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  padding: 0.5rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--color-ocean-600);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background-color: var(--color-ocean-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-strong);
}

.btn-outline {
  background: transparent;
  border-color: var(--color-sand-300);
  color: var(--color-sand-700);
}

.btn-outline:hover {
  border-color: var(--color-ocean-600);
  color: var(--color-ocean-600);
}

/* Hero */

.hero {
  min-height: 100vh;
  padding-top: 5rem;
  position: relative;
  background: linear-gradient(
    to bottom,
    #e0f2fe,
    var(--color-sand-50),
    var(--color-sand-100)
  );
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 35px,
    rgba(139, 92, 46, 0.15) 35px,
    rgba(139, 92, 46, 0.15) 37px
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  padding: 4rem 0 5rem;
}

.hero-content {
  max-width: 48rem;
  text-align: center;
  margin: 0 auto;
  animation: fadeIn 1s ease-out;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero h1 span {
  display: block;
  color: var(--color-ocean-600);
  margin-top: 0.25rem;
}

.hero p {
  font-size: 1.2rem;
  color: var(--color-sand-700);
  line-height: 1.6;
  margin: 0 auto 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 2.5rem;
  transform: translateX(-50%);
  color: var(--color-ocean-600);
  animation: bounce 1s infinite;
}

/* Secties */

.section {
  padding: 5rem 0;
}

.section-light {
  background-color: var(--color-white);
}

.section-soft {
  background-color: var(--color-sand-50);
}

.section-gradient {
  background: linear-gradient(
    to bottom,
    var(--color-sand-50),
    var(--color-white)
  );
}

.section-gradient-light {
  background: linear-gradient(
    to bottom,
    var(--color-white),
    var(--color-sand-50)
  );
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0 0 0.75rem;
}

.section-underline {
  width: 6rem;
  height: 0.25rem;
  border-radius: 999px;
  margin: 0 auto;
  background-color: var(--color-ocean-600);
}

.section-subtitle {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--color-sand-700);
}

/* Grids */

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: center;
}

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

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

/* Content blokken */

.text-block p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-sand-700);
  margin: 0 0 1rem;
}

.image-wrapper-large {
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  background: none;
}

.image-wrapper-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cards */

.card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-soft {
  background-color: var(--color-sand-50);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  margin: 0 auto 1rem;
  background-color: var(--color-ocean-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ocean-600);
}

.card h3 {
  margin: 0.5rem 0 0.5rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--color-sand-700);
  line-height: 1.6;
}

.card-full {
  max-width: 48rem;
  margin: 0 auto;
}

/* Stappen */

.card-step {
  position: relative;
  height: 100%;
}

.step-badge {
  position: absolute;
  top: -0.9rem;
  left: -0.9rem;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background-color: var(--color-ocean-600);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

/* CTA onder stappen */

.section-cta {
  margin-top: 3rem;
  text-align: center;
}

.section-cta p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: var(--color-sand-700);
}

/* Galerij */

.gallery {
  margin-bottom: 2rem;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--color-sand-50);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-strong);
}

.gallery-note {
  text-align: center;
  font-style: italic;
  color: var(--color-sand-600);
}

/* Contact */

.contact-grid {
  margin-bottom: 3rem;
}

.link {
  color: var(--color-ocean-600);
  text-decoration: none;
  font-weight: 500;
}

.link:hover {
  text-decoration: underline;
}

.section-about-artist {
  margin-top: 2rem;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--color-sand-200);
  padding: 2rem 0;
  background-color: var(--color-white);
  text-align: center;
  color: var(--color-sand-600);
  font-size: 0.9rem;
}

/* Animaties */

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translate(-50%, -20%);
  }
  50% {
    transform: translate(-50%, 0);
  }
}

/* Responsive */

@media (max-width: 960px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-links {
    display: none;
  }
}

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

  .hero-inner {
    padding-top: 3rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .step-badge {
    left: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 4.5rem;
  }

  .btn {
    width: 100%;
  }
}


@media (max-width: 480px) {
  .nav-inner {
    height: 4.75rem;
  }
  .nav-title {
    font-size: 0.9rem;
  }
  .hero {
    padding-top: 5.5rem;
  }
  .btn {
    width: 100%;
  }
}


/* WhatsApp knoppen */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-whatsapp {
  background-color: #22c55e;
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.btn-whatsapp:hover {
  background-color: #16a34a;
  transform: translateY(-1px);
  box-shadow: var(--shadow-strong);
}

