/* ─── Fonts ─────────────────────────────────────────────────────────── */
/* Bebas Neue: headings  |  Special Elite: body (typewriter feel) */

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

body {
  font-family: 'Special Elite', serif;
  background-color: #111;
  background-image: url("/Assets/Background.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  color: #111;
}

/* ─── Main Layout ────────────────────────────────────────────────────── */
main {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 60%;
  margin: 0 auto;
  padding: 2% 0;
  gap: 1%;
}

/* ─── Header ─────────────────────────────────────────────────────────── */
header.main-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #c6c6c6;
  padding: 1.5% 5%;
}

header.main-header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 0.1em;
}

/* ─── Nav ────────────────────────────────────────────────────────────── */
nav.mainnav {
  display: flex;
  gap: 3rem;
  padding-top: 0.5rem;
}

nav.mainnav a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: #111;
  text-decoration: none;
}

nav.mainnav a:hover {
  text-decoration: underline;
}

/* ─── Guide Banner ───────────────────────────────────────────────────── */
article.guide {
  background: #c6c6c6;
  text-align: center;
  padding: 0.75rem 2rem;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

/* ─── Book + Songs Section ───────────────────────────────────────────── */
section.book {
  display: flex;
  align-items: stretch;
  gap: 1%;
  flex: 1;          /* fills remaining vertical space */
  overflow: hidden; /* children handle their own scroll */
  min-height: 0;    /* required for flex children to shrink below content size */
}

/* ─── Book Text Panel ────────────────────────────────────────────────── */
aside.book-text {
  flex: 3;
  background: #c6c6c6;
  padding: 2rem 2rem 2rem 2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

aside.book-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.08em;
}

aside.book-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

/* Styled scrollbar to match the dark aesthetic */
aside.book-text::-webkit-scrollbar {
  width: 10px;
}
aside.book-text::-webkit-scrollbar-track {
  background: #aaa;
}
aside.book-text::-webkit-scrollbar-thumb {
  background: #111;
}

/* ─── Songs Panel ────────────────────────────────────────────────────── */
aside.songs {
  flex: 1;
  background: #c6c6c6;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow-y: auto;
}

/* ─── Individual Track ───────────────────────────────────────────────── */
.track {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.track h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

.track audio {
  width: 100%;
}

/* ─── About Page ─────────────────────────────────────────────────────── */
article.about-text {
  background: #c6c6c6;
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

article.about-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.08em;
}

article.about-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

.chapter {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 2em;
  margin-bottom: 1em;
}

.chapter-italic {
  font-style: italic;
  font-weight: 400;
  opacity: 0.85;
}

.chapter-italic-text {
  font-style: italic;
  font-weight: 1100;
  opacity: 1;
}