@font-face {
  font-family: "Manrope";
  src: url("./static/Manrope-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
}

body {
  margin: 0;
  background-color: black;
  height: 100vh; /* full screen height */
  color: rgba(255, 255, 255, 0.904);
  font-size: clamp(14px, calc(2vw + 1vh), 25px);
  font-family: "Manrope", sans-serif;
  font-weight: 200;
}

h2 {
  font-size: 1.4em;
}

.image-stack {
  position: relative; /* establishes a positioning context */
  width: 100%;
  display: flex;
  justify-content: center; /* optional, keeps main image centered */
  align-items: center;
}

.image-stack .main-image {
  width: 100%;
  height: auto;
  display: block;
}

.image-stack .overlay-image {
  position: absolute;
  top: 10%; /* adjust vertical position */
  left: 50%; /* center horizontally */
  transform: translateX(-50%);
  width: 40vw; /* responsive size */
  height: auto;
  opacity: 1; /* optional fade */
  pointer-events: none; /* lets clicks pass through */
}

.about-section {
  text-align: center;
  padding-top: 10vw;
  max-width: 800px;
  margin: 0 auto;
}
.about-section h2 {
  text-transform: uppercase;
  text-decoration: underline;
}
.about-section p {
  line-height: 1.6;
  padding-left: 2vh;
  padding-right: 2vh;
  margin: 0;
}

.discography-section {
  text-align: center;
  padding-top: 6vw;
}
.discography-section h2 {
  text-transform: uppercase;
  text-decoration: underline;
}
.albums {
  display: flex;
  justify-content: center; /* center the row */
  gap: 3vw; /* space between albums */
  flex-wrap: nowrap; /* always one row */
}

.album {
  width: 25vw; /* album width = 20% of screen width */
  height: auto; /*20vw; /* make it square */
  overflow: hidden;
}

.album img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.album img:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.outnow-section {
  text-align: center;
  padding-top: 10vw; /* relative padding */
}

.outnow-section h2 {
  text-transform: uppercase;
  text-decoration: underline;
}

.outnow-section img {
  width: 30rem; /* image takes 60% of screen width */
  max-width: 60vw; /* keep safe on mobile */
  height: auto; /* maintain aspect ratio */
  display: block;
  margin: 0 auto 2vh; /* center + space below */
  transition: transform 0.3s ease, filter 0.3s ease;
}

.outnow-section img:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.outnow-section p {
  line-height: 1.6;
  max-width: 60vw; /* paragraph width limit */
  margin: 0 auto;
}

.contact-section {
  text-align: center;
  padding-top: 8vw; /* relative padding */
}

.contact-section h2 {
  text-transform: uppercase;
  text-decoration: underline;
  margin-bottom: 3vh;
}

.contact-section p {
  margin-bottom: 2vh;
}

.contact-section a {
  color: aliceblue;
  text-decoration: none;
  font-weight: bold;
  margin: 0 1.5vw;
}

.contact-section a:hover {
  color: #b29eb8; /* or any accent color */
}

.contact-section a:hover {
  text-decoration: underline;
}

.footer-section {
  text-align: center;
  padding: 1vh;
}

.footer-section p {
  font-size: 0.5rem;
}
