@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@300;400;700&display=swap");

body {
  font-family: "Kumbh Sans", sans-serif;
  font-size: 16px;
  background-color: darkgray;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a:link,
a,
a:visited,
.fab {
  color: green;
  text-decoration: none;
  transition: 0.8s;
}

a:hover,
.fab:hover {
  color: greenyellow;
  text-decoration: none;
  transition: 0.8s;
}

.container {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.home__nav-li {
  list-style: none;
  padding: 10px;
}

.home__nav-ul {
  display: flex;
}

.home__nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  background-color: black;
  color: white;
  font-weight: 700;
}

.nav__hamburger {
  display: none;
}

.home__image-banner {
  position: fixed;
  width: 100%;
  height: calc(100vh);
  background-image: url("../img/IMG_9490_centertop_COMPRESSED.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.home__card {
  position: relative;
  align-self: center;
  min-width: 325px;
  background-color: black;
  margin: 25px;
  margin-top: 70vh;
  border-radius: 10px;
  padding: 30px;

  color: white;
  max-width: 750px;
  text-align: center;
  font-size: 1.2em;
  line-height: 1.2em;
}

.home__icon-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 45px;
}

.home__icon {
  color: white;
  transform: scale(2);
  cursor: pointer;
}

.home__h1,
.about__h1,
.contact__h1,
.liquerice-records__h1 {
  font-size: 2em;
  line-height: 1em;
  padding-top: 10px;
  padding-bottom: 20px;
  color: green;
}

/* About */

.about__card {
  position: relative;
  align-self: center;
  margin: 25px;
  margin-top: 70vh;
  padding: 30px;
  background-color: black;
  border-radius: 10px;
  color: white;
  min-width: 325px;
  max-width: 750px;
  line-height: 1.4em;
}

.about__p,
.contact__p,
.home__p,
.liquerice-records__p {
  padding: 20px 0;
  padding-bottom: 40px;
}

.records__h2 {
  padding: 30px 0;
  color: green;
}

/* Contact */

.contact__card {
  position: relative;
  align-self: center;
  margin: 25px;
  margin-top: 70vh;
  padding: 30px;
  background-color: black;
  border-radius: 10px;
  color: white;
  min-width: 325px;
  max-width: 750px;
  line-height: 1.4em;
}

.contact__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact__input {
  height: 30px;
  border-radius: 10px;
  border: none;
  padding-left: 30px;
}

textarea {
  height: 150px;
  border-radius: 10px;
  border: none;
  padding: 10px 30px;
}

.contact__submit {
  height: 30px;
  border-radius: 10px;
  border: none;
  margin-bottom: 25px;
  background-color: green;
  font-weight: 700;
  color: white;
  transition: 0.8s;
}

.contact__submit:hover {
  background-color: greenyellow;
  transition: 0.8s;
  color: black;
}

.contact__email-sent {
  padding: 60px;
  color: greenyellow;
  text-align: center;
}

/* Liquerice Records */

.liquerice-records__card {
  position: relative;
  align-self: center;
  margin: 25px;
  margin-top: 70vh;
  padding: 30px;
  background-color: black;
  border-radius: 10px;
  color: white;
  min-width: 325px;
  max-width: 750px;
  line-height: 1.4em;
}

.records__release-group {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

.records__links-group {
  display: flex;
  gap: 20px;
}

.records__cat-number {
  font-size: 12px;
}

.records__artist {
  font-size: 20px;
  padding: 10px 0;
}

hr {
  border: 1px dashed rgb(56, 56, 56);
}

.records__artist-group {
  display: flex;
  gap: 30px;
  align-items: center;
}

.records__artist-info {
  display: flex;
  flex-direction: column;
}

.records__artist-title {
  font-size: 20px;
  padding: 10px 0;
}

.records__artist-info--p {
  padding: 10px 0;
}

.records__artist-info-links-group {
  display: flex;
  gap: 30px;
}

.records__artist-image {
  background-image: url("../img/avatars-dpqdjKVfSfcqoBmz-IVI4kQ-t500x500.jpg");
  min-width: 200px;
  height: 200px;
  border-radius: 50%;
  border: none;
  background-size: contain;
}

.records__ldr-logo {
  display: flex;
  background-image: url("../img/ldr_logo325.png");
  /* width: 100%; */
  height: 325px;
  justify-content: center;
  align-items: center;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 100px;
}

.records__ldp-logo {
  display: flex;
  background-image: url("../img/ldp_logo325.png");
  /* width: 100%; */
  height: 325px;
  justify-content: center;
  align-items: center;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 100px;
}

.top-spacer {
  margin-top: 50px;
}

/* Media Q */

@media (max-width: 750px) {
  .nav__hamburger {
    display: block;
    transform: scale(1.5);
  }

  .home__nav-ul {
    display: none;
  }

  .home__nav-ul.active {
    display: block;
    position: absolute;
    top: 50px;
    z-index: 1;
    background-color: black;
    width: 100%;
    text-align: center;
  }

  .home__card {
    position: relative;
    font-size: 1em;
    margin-top: 70vh;
  }

  .about__card {
    margin-top: 70vh;
  }

  .home__icon {
    color: white;
    transform: scale(2);
    cursor: pointer;
  }

  .records__artist-group {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .records__artist-image {
    background-image: url("../img/avatars-dpqdjKVfSfcqoBmz-IVI4kQ-t500x500.jpg");
    min-width: 300px;
    height: 300px;
    border-radius: 50%;
    border: none;
    background-size: contain;
  }

  .divider {
    display: none;
  }
}

img {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}
