/* ---------- global section padding ---------- */



/* ---------- big title ---------- */
.page-title {
    font-family: "norman-variable", serif;
    text-align: center;
    margin: 28px auto 8px;
    font-size: clamp(42px, 6vw, 92px);
    line-height: 1.05;
    color: #6c6c6c;
}

main {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}


h1 {
    padding-bottom: 2rem;
}

.header-img {
    aspect-ratio: 21 / 9;
    min-height: 300px;

    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

.header-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.header-img .page-title {
    position: relative;
    z-index: 1;
    margin: 0 0 4rem 0;
}

.quote-band{
  display: flex;
  align-items: flex-end;         /* align both to the bottom */
  justify-content: space-between;
  gap: 2rem;

  overflow: hidden;
}
.quote-band > p{
  flex: 0 0 auto;       /* don't let flex grow/shrink it */
  white-space: nowrap;  /* wrap ONLY at <br> */
  margin: 2rem;
  padding: 0;
  font: 700 60px/69px Arial, sans-serif; /* your mock’s sizing */
  color: #FFF8F0;
  align-self: flex-start;
}



.quote-band .hang1{ pointer-events: none; }

.quote-band .hang1 img
{

  width: clamp(1200px, 75vw, 2400px); /* min 800, fluid ~55% of screen, max 1400 */
  height: auto;

  transform: translateY(4%) translateX(10%);
}



.credits-project {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.credits-project .hero-wrapper img {
    display: block;
    width: 100%;
    max-width: 1200px;
    height: auto;
    padding-top: 130px;
    padding-bottom: 130px;
}




/* manifesto text */
.manifeste {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;


}

.manifeste h1 {
    font-family: "norman-variable", serif;
    font-size: clamp(42px, 6vw, 92px);
    line-height: 1.05;
    margin: 0 0 2rem;
    color: #00ff88;
    /* adjust if needed */
}

.video-band video {
    display: block;
    width: min(900px, 92%);
    height: auto;
    margin: 16px auto;
    padding-top: 130px;

}

.end-credits {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
  
 
}

.end-credits img {

  
    max-width: 100%;

    height: auto;

       display: block;



}

