/* Base */
:root {
  --bg1: #faf6fb;
  --bg2: #f4f0f7;
  --ink: #1f1f1f;
  --muted: #6a6a6a;
  --brand: #b0469f;
  --card: #ffffff;
  --shadow: 0 20px 50px rgba(0,0,0,.12);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { height: 100%; }
body { min-height: 100vh; margin: 0; }

body {
margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--bg1) 0%, var(--bg2) 100%);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  place-items: center;
  padding: 32px 16px 0 16px;
}

/* Card layout */
.card {
    flex: 1;
  width: 100%;
  max-width: 820px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 28px 20px;
}

/* Heading */
h1 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(26px, 4.2vw, 40px);
  line-height: 1.1;
  margin: 0 0 14px;
  letter-spacing: .2px;
  color: var(--brand);
  text-align: center;
}

/* Hero image */
.hero {
  margin: 0;
}
.hero img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
}

/* Bio text */
.bio {
  margin-top: 18px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.7;
}
.bio strong { font-weight: 600; }

/* ─────────────── FOOTER ─────────────── */

footer {
  background: linear-gradient(180deg, #f4f0f7 0%, #e8e2ee 100%);
  padding: 1.5rem 1rem;
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.95rem;
  color: #666;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}

/* producer line */
footer p {
  margin: 0.25rem 0;
}

/* email link */
footer a {
  color: #993f8c;
  text-decoration: none;
  border-bottom: 1px solid rgba(153, 63, 140, 0.3);
  transition: opacity 0.3s ease;
}

footer a:hover {
  opacity: 0.8;
}

/* copyright line */
footer p:last-child {
  font-size: 0.85rem;
  color: #777;
  margin-top: 0.5rem;
}

/* ─────────────── SIMPLE SOCIAL ICONS ─────────────── */

.social {
  text-align: center;
  margin-top: 1.5rem;
}

.social p {
  font-weight: 600;
  font-size: 1rem;
  color: var(--brand, #7b2cbf);
  margin-bottom: 0.5rem;
}

/* icons inline */
.social a {
  display: inline-block;
  margin: 0 8px;
  color: var(--brand, #7b2cbf);
  text-decoration: none;
  transition: transform 0.25s ease, color 0.25s ease;
}

/* SVG size */
.social a svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  vertical-align: middle;
}

/* hover effect */
.social a:hover {
  transform: scale(1.2);
  color: #993f8c;
}