/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

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

/* ── Base ── */
body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #333;
}

/* ── Header ── */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.site-title {
  font-size: 1.65rem;
  font-weight: 700;
  color: #c9185b;
  text-decoration: none;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

nav a {
  color: #c9185b;
  text-decoration: none;
  font-size: 1.225rem;
  font-weight: 500;
  transition: opacity 0.15s;
}

nav a:hover { opacity: 0.7; }
nav a.active { font-weight: 700; }

/* ── Landing hero ── */
.hero {
  max-width: 660px;
  margin: 30px auto 60px;
  padding: 0 20px;
}

.card {
  background: #f0f0f0;
  border-radius: 18px;
  padding: 20px 50px 36px;
  text-align: center;
  position: relative;
  margin-top: 65px;
}

.avatar-wrap {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}

.avatar-wrap img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid #fff;
  display: block;
}

.avatar-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: #f5c842;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.card-spacer { height: 110px; }

.card p {
  color: #4a3a8a;
  font-size: 1.115rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.card p:last-child { margin-bottom: 0; }

/* ── Social buttons ── */
.social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 32px;
}

.social-btn {
  width: 80px;
  height: 80px;
  background: #c9185b;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
}

.social-btn:hover { opacity: 0.85; transform: translateY(-2px); }

.social-btn svg {
  width: 40px;
  height: 40px;
  fill: #ffffff;
}

/* ── Report pages ── */
.report-page {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 58px);
}

.report-title-bar {
  padding: 10px 30px;
  background: #f8f8f8;
  border-bottom: 1px solid #eee;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e2060;
}

.report-frame {
  flex: 1;
  width: 100%;
  border: none;
  display: block;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  header { flex-direction: column; gap: 14px; padding: 16px 20px; }
  nav { justify-content: center; gap: 16px; }
  .card { padding: 20px 24px 28px; margin-top: 20px; }
  .card-spacer { display: none; }
  .avatar-wrap {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 0 auto 16px;
    width: fit-content;
  }
}
