@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Nunito+Sans:wght@400;600;700;800&family=Sora:wght@400;600;700;800&display=swap');

:root {
  --color-snow: #fafaf7;
  --color-charcoal: #111319;
  --color-sky-blue: #7eb7f4;
  --color-heart-blue: #6fa7f0;
  --color-silver-mist: #d8dde4;
  --color-blush-pink: #e8a1b2;
  --color-white: #ffffff;

  --font-brand: 'Nunito Sans', 'Sora', ui-sans-serif, system-ui, sans-serif;
  --font-heading: 'Sora', 'Nunito Sans', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, sans-serif;

  --radius-card: 1.5rem;
  --radius-badge: 999rem;

  --shadow-soft: 0 8px 24px rgb(17 19 25 / 0.08);
  --shadow-card: 0 12px 36px rgb(17 19 25 / 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-snow);
  color: var(--color-charcoal);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: var(--color-sky-blue);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

/* Header */
.header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.logo-text {
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-charcoal);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-charcoal);
}

.nav-links a:hover {
  color: var(--color-sky-blue);
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem 6rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--color-charcoal);
}

.hero-tagline-accent {
  color: var(--color-sky-blue);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--color-charcoal);
  opacity: 0.7;
  margin-bottom: 3rem;
  font-weight: 400;
}

.hero-mascot {
  max-width: 420px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgb(17 19 25 / 0.1));
}

/* About Page */
.about-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
}

.about-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.about-intro h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-intro p {
  font-size: 1.15rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.mascot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.mascot-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mascot-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.mascot-card img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.mascot-card h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-charcoal);
}

.mascot-card .role {
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-sky-blue);
  margin-bottom: 1rem;
}

.mascot-card p {
  font-size: 0.95rem;
  opacity: 0.75;
  line-height: 1.6;
}

.mascot-traits {
  list-style: none;
  margin-top: 1.5rem;
  text-align: left;
}

.mascot-traits li {
  font-size: 0.9rem;
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  opacity: 0.8;
}

.mascot-traits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--color-sky-blue);
  border-radius: 50%;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
  opacity: 0.5;
  border-top: 1px solid var(--color-silver-mist);
  margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-tagline {
    font-size: 2.5rem;
  }

  .hero-mascot {
    max-width: 300px;
  }

  .mascot-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .header {
    padding: 1rem;
  }
}
