@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

@font-face {
  font-family: "Thunder Bold";
  src: url("./assets/fonts/Thunder-BoldLC.otf") format("woff2"),
    url("./assets/fonts/Thunder-BoldLC.otf") format("woff");
}

:root {
  --offwhite: #f2f1ef;
  --white: #fff;
  --black: #000;
  --green: #09f800;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--offwhite);
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

h1 {
  font-family: "Thunder Bold", sans-serif;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  font-size: 4rem;
  font-weight: 700;
  line-height: 0.95;
}

h2 {
  font-family: "Thunder Bold", sans-serif;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 0.95;
}

h3 {
  font-family: IBM Plex Mono, sans-serif;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 100%;
}

p,
a,
input,
input::placeholder,
textarea,
textarea::placeholder {
  font-family: "Roboto", sans-serif;
  color: var(--black);
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  margin: 0;
  padding: 0;
}

.mobile-nav {
  display: none;
  background-color: #d9dbd1;
  flex-flow: column;
  justify-content: flex-end;
  align-items: stretch;
  min-height: 100dvh;
  padding: 1rem;
  position: absolute;
  inset: 0% 0% auto;
  transform: translate3d(0px, -50px, 0px) scale3d(1, 1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.mobile-nav.show {
  display: flex;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1);
  opacity: 1;
}

.mobile-nav .menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 3rem;
}

.mobile-nav .menu h2 {
  font-size: 56px;
}

.monoText,
button,
span {
  color: var(--black);
  text-transform: uppercase;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 1rem;
  line-height: 100%;
}

.monoText {
  padding-top: 24px;
}

span {
  color: var(--green);
  font-weight: 500;
}

section {
  padding: 0 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}

#home {
  background-color: var(--offwhite);
}

#about {
  background-color: var(--offwhite);
}

#artists {
  background-color: var(--offwhite);
}

#services {
  background-color: var(--offwhite);
}

#contact {
  background-color: var(--offwhite);
}

#contact .right {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

section .elements {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2rem;
  width: 100%;
}

.span {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

#about p {
  font-size: 2rem;
  line-height: 1.3;
}

header {
  z-index: 999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  background-image: url("./assets/images/logo-weerklank.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 4rem;
  height: 4rem;
}

header .logo {
  margin-left: 24px;
}

header .hamburger {
  width: 24px;
  margin-right: 24px;
}

header .hamburger {
  transition: opacity 0.3s ease;
}

header .menu {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin-right: 24px;
}

header .menu a,
footer a,
#contact a,
#contact .mail p {
  color: var(--black);
  transition: color 0.3s ease;
}

header .menu a:hover,
footer a:hover,
#contact .mail p:hover,
#contact a:hover {
  color: var(--green);
}

/* ---- home ---- */
#home h1 {
  font-size: 4rem;
}

/* ---- artists ---- */
#artists .elements a {
  width: 100%;
  text-align: right;
}

#artists .slider {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

#artists .slider .artist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#artists .slider .artist:nth-child(even) {
  padding-top: 120px;
}

#artists .slider .artist .image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 240px;
  filter: grayscale(100%);
  position: relative;
}

#artists .slider .artist .image p {
  position: absolute;
  bottom: 8px;
  right: 8px;
  color: var(--white);
  margin: 0;
  font-size: 11px;
}

#artists .slider .artist .image p a {
  font-size: 11px;
  color: var(--white);
  text-decoration: none;
}

#artists .slider .artist.Metejoor .image {
  background-image: url("./assets/images/artists/headshots/Metejoor.webp");
}

#artists .slider .artist.Gustaph .image {
  background-image: url("./assets/images/artists/headshots/Gustaph.webp");
}

#artists .slider .artist.MichaelAsnot .image {
  background-image: url("./assets/images/artists/headshots/MichaelAsnot.webp");
}

#artists .slider .artist.LenNeefs .image {
  background-image: url("./assets/images/artists/headshots/LenNeefs.webp");
}

#artists .slider .artist.JEN .image {
  background-image: url("./assets/images/artists/headshots/JEN.webp");
}

#artists .slider .artist.Judith .image {
  background-image: url("./assets/images/artists/headshots/Judith.webp");
}

#artists .slider .artist.LeManou .image {
  background-image: url("./assets/images/artists/headshots/LeManou.webp");
}

#artists .slider .artist:hover p {
  visibility: visible;
  opacity: 1;
}

/* ---- services ---- */
#services {
  gap: 0px;
}

#services .elements .services {
  width: 100%;
}

#services .elements .service {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 3rem 0 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  width: 100%;
}

#services .elements .service h2 {
  max-width: 320px;
}

#services .elements .service .row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

#services .elements .service p {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 1s ease, opacity 1s ease;
}

#services .elements .service p.show {
  max-height: 100px;
  opacity: 1;
}

.accordion-icon {
  transition: transform 1s ease;
}

.accordion-icon.rotated {
  transform: rotate(180deg);
}

#services .elements .service .row .accordion-arrow-wrapper {
  width: 46px;
  height: 46px;
  border: 1px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}

#services .elements .service .row .accordion-arrow-wrapper img {
  width: 12px;
  height: 12px;
}

/* ---- contact ---- */
form {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
  width: 100%;
}

form .row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  width: 100%;
}

form .row input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--black);
  border-radius: none;
  padding-bottom: 1rem;
  width: 100%;
}

form textarea {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--black);
  border-radius: none;
  padding-bottom: 2rem;
  width: 100%;
}

button {
  background-color: transparent;
  border: none;
  text-align: left;
  padding: 16px 8px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: var(--green);
  border-color: var(--green);
}

.contactUs {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contactUs .elements {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.contactUs div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#about .elements {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

#about .elements .text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

#about .image,
#contact .image {
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 320px;
  position: relative;
  filter: grayscale(100%);
}

#about .image p,
#contact .image p {
  position: absolute;
  bottom: 16px;
  right: 16px;
  color: var(--white);
  margin: 0;
  font-size: 11px;
}

#about .image p a,
#contact .image p a {
  font-size: 11px;
  color: var(--white);
}

#about .image {
  background-image: url("assets/images/artists/live/about.webp");
  background-position: center 35%;
}

#contact .image {
  background-image: url("assets/images/artists/live/contact.webp");
  background-position: center 55%;
}

/* ---- footer ---- */
footer {
  background-color: var(--offwhite);
  padding: 48px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

footer .top {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

footer .top .row,
footer .logoReference {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

footer .backToTop {
  border: 1px solid var(--black);
  width: 140px;
  height: 140px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
}

footer .socials,
footer .sitemap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

footer .socials .column,
footer .sitemap .column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contactUs div .row a,
footer .socials .column a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.25rem;
}

footer .reference {
  line-height: 150%;
}

footer .reference a {
  color: var(--green);
}

.thankYou {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

@media (min-width: 800px) {
  section {
    padding: 2rem;
  }

  footer {
    padding: 2rem;
  }

  header .hamburger {
    display: none;
  }

  header .menu {
    display: flex;
  }

  section .elements {
    align-items: flex-start;
  }

  .monoText {
    width: 100%;
    text-align: right;
    padding-top: 80px;
  }

  h1 {
    font-size: 5rem;
  }

  h2 {
    font-size: 3rem;
  }

  #about .elements {
    flex-direction: row;
    justify-content: space-between;
  }

  #about .elements .text,
  #about .elements .image {
    width: 50%;
  }

  #artists .slider .artist .image {
    width: 320px;
    height: 480px;
  }

  #services .elements .service .row .accordion-arrow-wrapper img {
    width: 2rem;
    height: 2rem;
  }

  #services .elements .service .row .accordion-arrow-wrapper {
    width: 65px;
    height: 65px;
  }

  #services .elements .service h2 {
    max-width: 640px;
  }

  #contact .right {
    flex-direction: row;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
  }

  #contact .right form,
  #contact .right .contactUs {
    width: 50%;
  }

  #about .image,
  #contact .image {
    display: flex;
  }

  footer .top {
    flex-direction: row;
    justify-content: space-between;
  }

  footer .top .row {
    flex-direction: row;
    gap: 4rem;
  }

  footer .backToTop {
    order: 2;
  }

  footer .row {
    flex-direction: row;
    gap: 0.25rem;
  }
}

@media (min-width: 1200px) {
  .logo {
    width: 6rem;
    height: 6rem;
  }

  header .hamburger {
    margin-left: 3rem;
  }

  header .menu {
    margin-right: 3rem;
  }

  #home {
    height: 68vh;
  }

  #home h1 {
    font-size: 8rem;
  }

  #artists .slider {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  #artists .slider .artist:nth-child(even) {
    padding-top: 0;
  }

  #artists .slider .artist .image {
    width: 320px;
    height: 480px;
  }

  #services .elements .service h2 {
    max-width: 1000px;
  }

  #about .image,
  #contact .image {
    height: 480px;
  }
}
