:root {
  --bg-gradient: radial-gradient(circle at top left, #ffe8c7 0%, #ffd3e1 35%, #f1f5ff 70%, #ffffff 100%);
  --primary: #ff7b54;
  --primary-dark: #e45e37;
  --accent: #ffc947;
  --text-main: #222222;
  --text-muted: #666666;
  --card-bg: rgba(255, 255, 255, 0.92);
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.14);
  --radius-xl: 1.75rem;
  --radius-pill: 999px;
  --transition-fast: 0.25s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Poppins", system-ui, sans-serif;
  background: var(--bg-gradient);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.page {
  width: 100%;
  max-width: 980px;
}

/* Card layout */
.card {
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 2.5rem 2.25rem;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
}

/* Decorative bubbles */
.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}

.b1 {
  width: 260px;
  height: 260px;
  background: #ffb4a2;
  top: -80px;
  right: -60px;
}

.b2 {
  width: 180px;
  height: 180px;
  background: #ffd166;
  bottom: -60px;
  left: -40px;
}

.b3 {
  width: 110px;
  height: 110px;
  background: #9ad0ff;
  bottom: 30%;
  right: 10%;
}

.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

/* Logo row */
.logo-row {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.25);
  width: fit-content;
  font-size: 0.88rem;
  color: var(--text-muted);
  backdrop-filter: blur(8px);
}

.logo-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: conic-gradient(from 130deg, #ff7b54, #ffc947, #9ad0ff, #ff7b54);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.logo-circle span {
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}

/* Typography */
h1 {
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.highlight {
  background: linear-gradient(120deg, #ff7b54, #ff9f68);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin-bottom: 1.2rem; /* voeg deze toe of verhoog hem */
  margin-top: 1.2rem; /* voeg deze toe of verhoog hem */
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(148, 163, 184, 0.12);
  color: #475569;
}

/* Coming soon badge */
.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.82rem;
  border-radius: var(--radius-pill);
  background: rgba(22, 163, 74, 0.06);
  color: #166534;
  border: 1px solid rgba(22, 163, 74, 0.21);
}

.coming-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.3);
}

/* Buttons */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.btn-primary {
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  padding: 0.9rem 1.6rem;
  font-size: 0.94rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 14px 30px rgba(248, 113, 113, 0.35);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 18px 38px rgba(248, 113, 113, 0.45);
}

.note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Contact */
.contact-line {
  font-size: 0.88rem;
  color: #334155;
}

.contact-line a {
  color: var(--primary-dark);
  text-decoration: none;
  border-bottom: 1px dashed rgba(248, 113, 113, 0.6);
}

.contact-line a:hover {
  border-bottom-style: solid;
}

/* Dog card (illustration) */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-dog-card {
  width: 100%;
  max-width: 340px;
  border-radius: 2rem;
  padding: 1.6rem 1.5rem 1.4rem;
  background: linear-gradient(145deg, #0f172a, #1e293b);
  color: #e5e7eb;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.8);
}

.hero-dog-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.hero-dog-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.hero-dog-name {
  font-weight: 600;
  font-size: 1.05rem;
}

.hero-dog-tag {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: #9ca3af;
}

/* Stats */
.hero-dog-body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.8rem;
  align-items: center;
}

.dog-emoji {
  font-size: 3.4rem;
  background: radial-gradient(circle at 30% 20%, #fecaca, #f97316);
  -webkit-background-clip: text;
  color: transparent;
  filter: drop-shadow(0 10px 18px rgba(248, 113, 113, 0.8));
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.78rem;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  column-gap: 5px;
}

.stat-label {
  color: #9ca3af;
}

.stat-value {
  font-weight: 600;
}

.progress-bar {
  height: 5px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.35);
}

.progress-fill {
  height: 100%;
  width: 78%;
  background: linear-gradient(90deg, #22c55e, #bef264);
}

/* Footer */
.footer {
  margin-top: 1.6rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

/* Responsive */
@media (max-width: 820px) {
  .card {
    grid-template-columns: 1fr;
    padding: 2rem 1.6rem;
  }

  .hero-visual {
    order: -1;
  }

  body {
    padding: 1.2rem;
  }
}

@media (max-width: 520px) {
  .card {
    padding: 1.6rem 1.2rem;
    border-radius: 1.3rem;
  }

  .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-dog-card {
    max-width: 100%;
  }

  .subtitle {
    font-size: 0.95rem;
  }
}
