/* Buritacos Landing Page */

:root {
  --brand-turquoise: #2DD4BF;
  --brand-rood: #FF4D4D;
  --brand-wit: #FFFFFF;
  --brand-antraciet: #2C2C2C;
  --text-body: #3D3D3D;
  --text-light: #666666;
  --bg-light: #F8F9FA;
}

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

body {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  color: var(--brand-antraciet);
  line-height: 1.7;
  background: var(--brand-wit);
}

h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--brand-antraciet);
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  background-image: url('assets/moodboard/02-counter-open-keuken.png');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 2rem 1.5rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44, 44, 44, 0.6);
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: 280px;
  max-width: 70%;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 2.2rem;
  color: var(--brand-wit);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  line-height: 1.6;
}

/* ===== Sections ===== */
.section {
  padding: 4rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  padding-bottom: 0.35em;
  border-bottom: 3px solid var(--brand-turquoise);
}

.section h3 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}

.section p {
  margin-bottom: 1em;
  color: var(--text-body);
}

/* ===== Waarde sectie ===== */
.waarde-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.waarde-list li {
  padding: 1rem 0;
  border-bottom: 1px solid #E5E7EB;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  line-height: 1.6;
  color: var(--text-body);
}

.waarde-list li:last-child {
  border-bottom: none;
}

.waarde-marker {
  display: inline-block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--brand-turquoise);
  border-radius: 50%;
  margin-top: 0.55rem;
}

/* ===== Moodboard Grid ===== */
.moodboard {
  padding: 4rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.moodboard h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.35em;
  border-bottom: 3px solid var(--brand-turquoise);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.moodboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.moodboard-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.moodboard-caption {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.4rem;
}

/* ===== Footer ===== */
.footer {
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  border-top: 1px solid #E5E7EB;
}

/* ===== Responsive ===== */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .hero-logo {
    width: 340px;
  }

  .section {
    padding: 6rem 2rem;
  }

  .moodboard {
    padding: 6rem 2rem;
  }

  .moodboard-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }

  .moodboard-grid img {
    height: 320px;
  }
}
