/*Typography - Font Swop*/
@font-face {
			font-family: 'Kashmir';
			src: url("../fonts/Kashmir.woff2") format('woff2'),
				url("../fonts/Kashmir.woff") format('woff');
	font-weight: 100;
    font-style: normal;
    font-display: swap;
}

.banner{
	font-family: Kashmir, fantasy;
	text-align: center;
}



:root {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background-color: #f8f9fb;
  color: #0d1117;
  --primary: #0d6efd;
  --panel: #ffffff;
  --muted: #6c757d;
}

body {
  min-height: 100vh;
  margin: 0;
  background-color: #f8f9fb;
}

a {
  color: var(--primary);
}

a:hover {
  color: #0a58ca;
}

.nav-link {
  color: inherit;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #f8f9fb;
}

.hero {
  background: linear-gradient(135deg, rgba(14, 63, 85, 0.08), rgba(229, 231, 235, 0.9));
}

.hero h2 {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  letter-spacing: 0.04em;
}

.hero-figure {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  min-height: 100%;
}

.hero-figure img {
  width: 100%;
  height: auto;
}

.hero-figure ul li small {
  color: var(--muted);
}

.letter-spacing {
  letter-spacing: 0.35rem;
}

.callout {
  border-width: 1px;
  border-style: solid;
  border-color: rgba(13, 110, 253, 0.3);
  border-radius: 1.25rem;
  background-color: #ffffff;
  box-shadow: 0 10px 24px rgba(13, 110, 253, 0.12);
}

.bio-hero {
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.9), rgba(4, 8, 22, 0.95));
  color: #f8fbff;
}

.bio-hero p {
  color: rgba(248, 251, 255, 0.85);
}

.member-card, .member-aside {
  border-radius: 1.25rem;
  box-shadow: 0 12px 28px rgba(13, 40, 60, 0.12);
  background-color: #ffffff;
}

.member-card h4 {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  letter-spacing: 0.04em;
}

.member-aside {
  border: 1px solid rgba(13, 110, 253, 0.15);
}

.member-aside h5 {
  margin-bottom: 0.5rem;
}

.member-aside p {
  margin-bottom: 0.35rem;
}

.stairway-hero {
  background: #0b1a29;
  color: #f8fbff;
}

.stairway-hero p {
  color: rgba(248, 251, 255, 0.85);
}

.lyrics-card {
  background-color: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid rgba(13, 110, 253, 0.15);
  padding: 1.5rem;
  box-shadow: 0 12px 28px rgba(13, 40, 60, 0.1);
}

.lyrics-pre {
  background: #0d1117;
  color: #f0f5ff;
  padding: 1.5rem;
  border-radius: 1rem;
  font-family: 'Noto Sans Mono', 'Inter', monospace;
  line-height: 1.8;
  overflow-x: auto;
  white-space: pre-wrap;
}

.dropcap {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: 2.3rem;
  display: inline-block;
  line-height: 1;
  margin-right: 0.25rem;
  vertical-align: baseline;
}

@media (max-width: 767px) {
  .hero .btn {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .bio-hero, .stairway-hero {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .nav {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .nav-link {
    padding: 0.25rem 0;
  }
}

@media (max-width: 767px) {
  .hero-figure ul {
    justify-content: space-between;
    gap: 0.75rem;
  }
}

