/* ============================================================
   Gevelrenovatie Calculator – Blauw thema + overrides
   ============================================================ */

/* ── Blauw kleurthema (overschrijft oranje van style.css/dakwerken.css) */
:root {
  --orange:       #1b3d6e;
  --orange-dark:  #163059;
  --orange-light: #eaeff7;
  --shadow-hover: 0 8px 32px rgba(27, 61, 110, 0.18);
}

/* Hardcoded rgba-schaduwen uit dakwerken.css overschrijven */
.option-row.selected {
  box-shadow: 0 0 0 3px rgba(27, 61, 110, 0.12);
}
.photo-card.selected {
  box-shadow: 0 0 0 3px rgba(27, 61, 110, 0.2);
}
.form-group input:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(27, 61, 110, 0.12);
}

/* ── Landing screen ──────────────────────────────────────── */
.landing-badge {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  background: linear-gradient(135deg, #1b3d6e 0%, #2a5da8 100%);
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 28px rgba(27, 61, 110, 0.25);
}

.landing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.landing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--dark-2);
}

.landing-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange-light);
  color: var(--orange);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.gevel-start-btn {
  gap: 10px;
}

/* ── Gevel-grid: illustrated house SVG cards (step 1) ────── */
.gevel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 380px;
  margin: 0 auto;
}

.gevel-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 10px 14px;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  position: relative;
}

.gevel-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.gevel-card.selected {
  border-color: var(--orange);
  background: var(--orange-light);
  box-shadow: 0 0 0 3px rgba(27, 61, 110, 0.15);
}

.gevel-card.selected::after {
  content: '✓';
  position: absolute;
  top: 8px;
  right: 10px;
  width: 22px;
  height: 22px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 400;
}

.gevel-card svg {
  width: 80px;
  height: 80px;
  margin-bottom: 8px;
}

.gevel-card-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
}

@media (max-width: 360px) {
  .gevel-card svg {
    width: 60px;
    height: 60px;
  }
  .gevel-card {
    padding: 12px 8px 10px;
  }
}
