/* ===== Index Page Specific Styles ===== */

.ms-madi-regular {
  font-family: "Ms Madi", cursive;
  font-weight: 400;
  font-style: normal;
}

main {
  text-align: center;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.logo {
  height: 10rem;
  margin-bottom: 1.5rem;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(3rem, 16vw, 5rem);
  line-height: 1.1;
  color: var(--accent);
  letter-spacing: -0.04em;
}

.tagline {
  margin-bottom: 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted);
}

.section {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  background: var(--card);
  backdrop-filter: blur(8px);
  text-align: left;
}

.section h2 {
  margin-bottom: 0.75rem;
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section p {
  margin-bottom: 0;
  color: var(--text);
}

.section + .section {
  margin-top: 1rem;
}

.read-more {
  font-size: 0.8rem;
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.read-more:hover,
.read-more:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

h3 {
  margin: 0;
}