/* ---------------------------
   RESET + BASE
--------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-image: url(images/Backgrounds/11v2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  line-height: 1.6;
  color: #111;
  padding: 20px;
}

/* ---------------------------
   HEADINGS
--------------------------- */
h3 {
  text-align: left;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  margin-bottom: 10px;
}

h4 {
  margin-top: 12px;
}

/* ---------------------------
   TEXT SECTIONS
--------------------------- */
.intro {
  max-width: 900px;
  margin: 0 auto 2rem;
  background-color: rgba(255,255,255,0.75);
  padding: 1rem 1.5rem;
  border-radius: 8px;
}

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

/* ---------------------------
   IMAGE + TEXT BLOCKS
--------------------------- */
.content-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 2rem auto;
  max-width: 1100px;
  background-color: rgba(255,255,255,0.7);
  padding: 1.25rem;
  border-radius: 10px;
}

.content-block.reverse {
  flex-direction: column;
}

/* Images */
.content-block img {
  width: 100%;
  max-width: 240px;
  height: auto;
  border-radius: 6px;
  display: block;
  margin: 0 auto;
}

/* Text */
.content-block .text {
  flex: 1;
  text-align: left;
  max-width: 600px;
}

/* ---------------------------
   PLAYER
--------------------------- */
.player {
  text-align: center;
  margin: 3rem 0;
}

/* Huge Bandcamp player */
.player iframe {
  width: 100%;
  max-width: 1200px;
  height: 360px;
  border: none;
  display: block;
  margin: 0 auto;
}

/* ---------------------------
   DESKTOP LAYOUT
--------------------------- */
@media (min-width: 800px) {
  .content-block {
    flex-direction: row;
    align-items: center; /* vertically center text with image */
    justify-content: center;
    gap: 2.5rem; /* soft spacing between image and text */
  }

  .content-block.reverse {
    flex-direction: row-reverse;
  }

  .content-block img {
    flex: 0 0 26%;
    max-width: 220px;
    margin: 0;
  }

  .content-block .text {
    flex: 0 0 62%;
    text-align: left; /* left-aligned text */
  }

  .intro {
    background-color: rgba(255,255,255,0.6);
  }
}

/* ---------------------------
   LARGE DESKTOPS
--------------------------- */
@media (min-width: 1100px) {
  .content-block img {
    max-width: 250px;
  }

  .content-block .text {
    font-size: 1.05rem;
  }

  .player iframe {
    max-width: 1200px;
    height: 360px;
  }
}



