html, body {
margin: 0;
scroll-behavior: smooth;
overflow-x: hidden;
}

* {
box-sizing: border-box;
}
img, picture, video, audio, canvas, svg {
display: block;
width: 100%;
max-width: 100vw;
height: auto;
}
input, button, textarea, select {
font: inherit;
font-size: 16px;
}

section, aside, footer, header {
width: 100%;
max-width: 1200px; /* 1600px */
display: flex;
flex-direction: column;
margin-inline: auto;
padding-inline: 16px;
}


@font-face {
font-family: 'Fleur mirage';
src: url('./FleurMirage-Regular.woff2') format('woff2');
}



body {
    background-color: #F4F3EE;
}

#menu{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #151413;
    white-space: nowrap;
    text-decoration: none;
}

#menu:hover{
    color: #E0AFA0;
}

ul{
    list-style: none;
    gap: 56px;
    display: flex;
    flex-direction: row;
    justify-content: right;
    gap: 24px;
}

.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

h1{
    font-family: "Fleur mirage";
    color: #151413;
    font-weight: normal;
    font-size: 48px;
    margin-bottom: 0;
    text-align: center;
}

h2{
    font-family: "Fleur mirage";
    color: #151413;
    font-weight: normal;
    font-size: 42px;
    margin-bottom: 0;
}

p{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 24px;
    color: #151413;
}

main{
    gap: 80px;
    margin-left: 160px;
    margin-right: 160px;
    margin-bottom: 160px;
}



hr{
    border-top: 8px dashed #E0AFA0;
    margin-top: 80px;
    margin-bottom: 40px;
}




#logo{
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}


.posters-intro{
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 16px;
    justify-content: center;
}

.posters-mockup{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 32px;
}

#posters{
    gap: 24px;
}

#cover {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px 8px;
    align-items: flex-end;
    grid-template-areas:
    "one two three"
    "four five six";
}
#cover-text { grid-area: one; }
#cover-mockup1 { grid-area: two; }
#cover-mockup2 { grid-area: three; }
#cover-front { grid-area: four; }
#vinyl-center { grid-area: five; }
#cover-back { grid-area: six; }

#merch {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    align-items: flex-end;
    grid-template-areas:
    "one two three"
    "four five six";
}
#hat { grid-area: one; }
#bag { grid-area: two; }
#merch-text { grid-area: three; }
#long-sleeves { grid-area: four; }
#hoodie-card { grid-area: five; }
#tshirt-card { grid-area: six; }

#hoodie-card{
    width: 320px;
    height: 320px;
    background-image: url(./hoodie-front.webp);
    background-size: cover;
    transition: background-image 0.3s ease-in-out;
}

#hoodie-card:hover{
    background-image: url(./hoodie-back.webp)
}

#tshirt-card{
    width: 320px;
    height: 320px;
    background-image: url(./tshirt-front.webp);
    background-size: cover;
    transition: background-image 0.3s ease-in-out;
}

#tshirt-card:hover{
    background-image: url(./tshirt-back.webp)
}




#stickers{
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

#stickers-mockup{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 64px;
}



#team{
    display: flex;
    flex-direction: column;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 24px;
    list-style: circle;
}

#video-download{
    color: #151413;
}

#video-download:hover{
    text-decoration: none;
}

video {
  max-width: 100%;
  height: auto;
}

#logo img{
  align-self: center;
}









footer{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    background-color: #E0AFA0;
}

.footer-bg{
    background-color: #E0AFA0;
}

footer ul{
    list-style: none;
    gap: 56px;
    display: flex;
    flex-direction: column;
    justify-content: left;
    gap: 8px;
    padding-left: 0;
}

h4{
    font-family: "Fleur mirage";
    color: #151413;
    font-weight: normal;
    font-size: 24px;
    margin-bottom: 0;
}

.center-footer{
    display: flex;
    flex-direction: column;
    align-items: center;
}

#links-footer{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #151413;
    white-space: nowrap;
    text-decoration: none;
}

#links-footer:hover{
    color: #433A37;
}




.legal-mentions p{
    font-size: 16px;
}

.legal-mentions h2{
    font-size: 24px;
}




a:focus-visible,
button:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
input:focus-visible {
outline-offset: 2px;
outline: #433A37 2px solid;
transition: none;
}




@media (max-width: 768px) {
  footer {
    flex-direction: column;
    gap: 32px;
    padding: 32px 16px;
    text-align: center;
  }

  footer ul {
    align-items: center;
  }
}

@media (max-width: 460px) {
  .header {
    flex-direction: column;
  }
  header ul{
    padding-left: 0;
  }
}

@media (max-width: 1024px) {
  main {
    margin-left: 32px;
    margin-right: 32px;
    margin-bottom: 96px;
    gap: 64px;
  }
}

@media (max-width: 600px) {
  main {
    margin-left: 16px;
    margin-right: 16px;
    margin-bottom: 80px;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 32px;
  }

  p,
  #team {
    font-size: 18px;
    line-height: 1.6;
  }
}

@media (max-width: 1286px) {
  #logo {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  #logo img {
    max-width: 220px;
  }
}

@media (max-width: 1286px) {
  .posters-intro {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .posters-mockup {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

    .posters-mockup img:last-child, .posters-mockup img:first-child {
    display: none;
    }

}


@media (max-width: 1286px) {
  #cover {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
}

@media (max-width: 1342px) {
  #merch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
}

@media (max-width: 940px) {
  #stickers {
    flex-wrap: wrap;
    gap: 24px;
    padding: 40px 0;
  }

  #stickers-mockup {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
}