/* === Variables === */
:root {
  --purple: #8a5da0;
  --olive: #a4a362;
  --purple-light: rgba(138, 93, 160, 0.25);
  --olive-light: rgba(164, 163, 98, 0.2);
  --white: #ffffff;
  --off-white: #fafaf9;
  --text-dark: #1a1a1a;
  --text-muted: #5c5c5c;
}

/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  min-height: 100vh;
  color: var(--text-dark);
  overflow-x: hidden;
  position: relative;
}

/* === Dynamic Background === */
.bg-dynamic {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #f5f0f8 0%, #f8f7f0 50%, #f0f2f5 100%);
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.7;
  animation: float 20s ease-in-out infinite;
}

.blob-1 {
  width: min(45vw, 450px);
  height: min(45vw, 450px);
  background: var(--purple-light);
  top: -10%;
  left: -5%;
  animation-delay: 0s;
  animation-duration: 18s;
}

.blob-2 {
  width: min(35vw, 350px);
  height: min(35vw, 350px);
  background: var(--olive-light);
  top: 50%;
  right: -8%;
  animation-delay: -5s;
  animation-duration: 22s;
}

.blob-3 {
  width: min(30vw, 280px);
  height: min(30vw, 280px);
  background: var(--purple-light);
  bottom: -5%;
  left: 20%;
  animation-delay: -10s;
  animation-duration: 25s;
}

.blob-4 {
  width: min(25vw, 220px);
  height: min(25vw, 220px);
  background: var(--olive-light);
  top: 30%;
  left: 50%;
  animation-delay: -7s;
  animation-duration: 20s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -40px) scale(1.05);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }
  75% {
    transform: translate(40px, 30px) scale(1.02);
  }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(138, 93, 160, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138, 93, 160, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* === Logo op witte achtergrond === */
.logo-wrapper {
  background: var(--white);
  padding: 2rem 2.5rem;
  border-radius: 16px;
  margin-bottom: 1.75rem;
  box-shadow: 0 8px 32px rgba(138, 93, 160, 0.12);
}

/* === Content === */
.content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

.logo-section {
  text-align: center;
  max-width: 520px;
}

.logo {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: transform 0.4s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.tagline {
  font-family: 'Caveat', cursive;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.4;
}

/* === Footer === */
.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 2rem;
  text-align: center;
}

.address {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.address strong {
  color: var(--text-dark);
  font-weight: 600;
}

.legal {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* === Playful accent === */
.address::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--olive));
  margin: 0 auto 1rem;
  border-radius: 2px;
}

/* === Responsive === */
@media (max-width: 480px) {
  .content {
    padding: 1.5rem 1rem;
  }

  .logo-wrapper {
    padding: 1.5rem 1.75rem;
  }

  .logo {
    max-width: 280px;
  }

}
