/* Global Font and Base Layout */
body {
  font-family: 'CMU Serif', serif;
  background: white;
  margin: 0;
  padding: 0;
}

/* Sidebar Navigation */
nav {
  width: 160px;
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 2rem 1rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-transform: lowercase;
  border-right: none;
  box-shadow: none;
}

nav a {
  color: black;
  text-decoration: none;
  font-weight: normal;
  font-size: 1rem;
  cursor: pointer;
}

/* Shared Layout: Centered Main Content */
main,
.centered-main {
  margin-left: 160px;
  min-height: 100vh;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  box-sizing: border-box;
}

/* Piece Page Layout */
.piece-page main {
  margin-left: 160px;
  min-height: 100vh;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  box-sizing: border-box;
}

.piece-content {
  max-width: 750px;
}

.piece-title {
  font-style: italic;
  font-size: 1.4rem;
  font-weight: normal;
  margin-bottom: 0.25rem;
}

.piece-details {
  font-size: 1rem;
  font-style: normal;
  margin: 0.25rem 0;
}

/* PDF Link Styling */
.pdf-link {
  color: black;
  text-decoration: none;
  font-style: normal;
}

.pdf-link:visited {
  color: black;
}

.pdf-link:hover {
  text-decoration: underline;
}

/* SoundCloud Player */
.soundcloud-player {
  display: block;
  margin: 1.5rem auto 0.5rem auto;
  max-height: 100px;
  border: none;
}

/* Music Page Structure */
.music-year {
  font-size: 1.2rem;
  font-style: normal;
  margin: 2rem 0 1rem 0;
}

.piece-info {
  text-align: center;
  margin-bottom: 2rem;
  display: block;
  text-decoration: none;
  color: black;
}

.piece-info:link,
.piece-info:visited,
.piece-info:hover,
.piece-info:active {
  color: black;
  text-decoration: none;
}

.piece-info:hover * {
  text-decoration: underline;
}

/* Events Page */
.events-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.section-heading {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.event-title {
  font-style: italic;
  font-size: 1.2rem;
}

.event p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* Home Page Image */
.home-image {
  width: 33%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Contact Page */
.contact-main {
  text-align: center;
  padding-top: 2rem;
}

.contact-main img {
  max-width: 675px;
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}
