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

:root {
  --purple: #5c2d91;
  --purple-light: #7b3fbf;
  --yellow: #f5c800;
  --yellow-dark: #d4a800;
  --white: #ffffff;
  --off-white: #fafaf7;
  --text-dark: #1a1a2e;
  --text-mid: #444;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: var(--off-white);
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Header ── */

header {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-bottom: 5px solid var(--yellow);
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.header-text h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--yellow);
  text-shadow: 2px 2px 0 var(--yellow-dark), 0 3px 8px rgba(0,0,0,0.4);
  letter-spacing: 1px;
}

.tagline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 0.4rem;
  font-style: italic;
}

/* ── Main ── */

main {
  flex: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

section {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  box-shadow: 0 2px 16px rgba(92, 45, 145, 0.09);
  border-top: 4px solid var(--purple-light);
}

section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 0.9rem;
}

section p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── Contact section ── */

.contact {
  border-top-color: var(--yellow-dark);
  text-align: center;
}

.email-link {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.75rem 2rem;
  background: var(--purple);
  color: var(--yellow);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 3px 10px rgba(92, 45, 145, 0.25);
}

.email-link:hover {
  background: var(--purple-light);
  transform: translateY(-2px);
}

/* ── Footer ── */

footer {
  background: var(--purple);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 1.4rem 1rem;
  font-size: 0.88rem;
  border-top: 3px solid var(--yellow);
}

footer p + p {
  margin-top: 0.3rem;
}

/* ── Responsive ── */

@media (min-width: 540px) {
  .header-inner {
    flex-direction: row;
    text-align: left;
  }

  .header-text h1 {
    font-size: 3rem;
  }
}
