/** COLORS **/
/** FONT SIZES **/
.has-fade {
  visibility: hidden;
}

@keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
.fade-in {
  animation: fade-in 200ms ease-in-out forwards;
}

@keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
.fade-out {
  animation: fade-out 200ms ease-in-out forwards;
}

html {
  font-size: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

@media (prefers-reduce-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
  font-family: "Aileron", sans-serif;
  line-height: 1.2;
  font-size: 1rem;
  letter-spacing: -0.0375rem;
  background-color: hsl(353, 64%, 21%);
  color: white;
}

a,
a:visited,
a:hover {
  text-decoration: none;
}

.noscroll {
  overflow: hidden;
}

h1 {
  font-family: "Times New Roman", Times, serif;
  letter-spacing: -0.8;
  line-height: 1;
  font-weight: 400;
  font-size: 2rem;
  padding-bottom: 1rem;
  padding-bottom: clamp(1rem, 0.1578947368rem + 2.1052631579vw, 2rem);
}
h1 span {
  padding: 1rem;
  padding: clamp(1rem, -2.3684210526rem + 8.4210526316vw, 5rem);
}
h1 span img {
  width: 20px;
}

.flex {
  display: flex;
}
.flex-jc-sb {
  justify-content: space-between;
}
.flex-jc-c {
  justify-content: center;
}
.flex-ai-c {
  align-items: center;
}

.container {
  padding-top: 3rem;
  padding-left: 1.5rem;
  padding-bottom: 3rem;
  padding-right: 1.5rem;
}
@media (min-width: 64em) {
  .container {
    padding-top: 5rem;
    padding-left: 7.5rem;
    padding-bottom: 5rem;
    padding-right: 7.5rem;
  }
}

@media (max-width: 63.9375em) {
  .hide-for-mobile {
    display: none;
  }
}

@media (min-width: 64em) {
  .hide-for-desktop {
    display: none;
  }
}

.button {
  border: hsl(0, 0%, 100%) 1px solid;
  border-radius: 40px;
  padding: 10px 68px;
  color: hsl(0, 0%, 100%);
  transition: all 300ms ease-in-out;
}
.button:hover {
  opacity: 0.8;
}

.fade-in-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-scroll:nth-child(2) {
  transition-delay: 0.2s;
}
.fade-in-scroll:nth-child(3) {
  transition-delay: 0.4s;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: hsl(353, 64%, 21%);
}
.header nav {
  position: relative;
  z-index: 99999;
  background-color: hsl(353, 64%, 21%);
  padding: 0.5rem 1.5rem;
  transition: all 300ms ease-in-out;
}
.header.open {
  transition: all 300ms ease-in-out;
}
.header.open .header__toggle > span {
  transition: all 300ms ease-in-out;
}
.header.open .header__toggle > span:first-child {
  transform: rotate(45deg);
}
.header.open .header__toggle > span:nth-child(2) {
  opacity: 0;
}
.header.open .header__toggle > span:last-child {
  transform: rotate(-45deg);
}
.header.open .header__menu {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}
.header .overlay {
  opacity: 0;
  z-index: 1;
  position: fixed;
  top: 3.75rem;
  right: 0px;
  bottom: 0px;
  left: 0px;
  top: 0px;
  background: hsla(0, 42%, 14%, 0.5);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
.header__toggle > span {
  display: block;
  width: 1.875rem;
  height: 1px;
  background-color: hsl(0, 0%, 100%);
  transform-origin: 5px 0.5px;
  transition: all 300ms ease-in-out;
}
.header__toggle > span:not(:last-child) {
  margin-bottom: 6px;
}
.header__links {
  margin-left: auto;
}
.header__links a {
  color: white;
  margin-right: 7.5rem;
}
.header__links a:hover {
  opacity: 0.8;
  transition: all 300ms ease-in-out;
}
.header__socials svg {
  transition: all 300ms ease-in-out;
}
.header__socials svg:hover {
  opacity: 0.8;
}
.header__socials a:not(:last-child) {
  margin-right: 0.8rem;
}
.header__socials__resize svg {
  height: 1rem;
}
.header__menu {
  position: absolute;
  z-index: 9999;
  width: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  opacity: 0;
  background: hsl(353, 64%, 21%);
  visibility: hidden;
  transition: all 500ms ease;
  padding: 1.625rem;
}
.header__menu a {
  display: block;
  padding: 0.625rem;
  color: hsl(0, 0%, 100%);
  text-align: center;
  transition: all 300ms ease-in-out;
}
.header__menu a:hover {
  opacity: 0.8;
}
.header__menu__socials {
  margin-top: 2rem;
}
.header.static nav {
  background-color: hsl(0, 0%, 100%);
}
.header.static nav a {
  color: hsl(353, 64%, 21%);
}
.header.static .header__toggle > span {
  background-color: hsl(353, 64%, 21%);
}
.header.static svg {
  fill: hsl(353, 64%, 21%);
}

.hero__image {
  position: relative;
  background-image: url("/images/hero img.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 70% center;
  min-height: 31.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 2rem;
}
@media (min-width: 64em) {
  .hero__image {
    min-height: calc(100vh - 60px);
    align-items: flex-start;
    justify-content: center;
    padding-left: 6rem;
    background-position: 80% 20%;
  }
}
.hero__image::before {
  content: "";
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("/images/horizontal logo white.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 4.0625rem;
  height: clamp(4.0625rem, 2.6414473684rem + 3.5526315789vw, 5.75rem);
  width: 15.389375rem;
  width: clamp(15.389375rem, 9.9277960526rem + 13.6539473684vw, 21.875rem);
  margin-bottom: 2rem;
}
@media (min-width: 64em) {
  .hero__image::before {
    height: 5.75rem;
    left: 7.5rem;
    bottom: auto;
    top: 50%;
    transform: translateY(-80%);
  }
}
.hero__text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 2rem;
}
@media (min-width: 64em) {
  .hero__text {
    margin-top: 8em;
    padding-left: 1.5rem;
  }
}

.music {
  background: hsl(0, 42%, 14%);
}
.music h1 {
  text-align: center;
  margin-top: 0;
}
@media (min-width: 64em) {
  .music__grid {
    display: flex;
    gap: 5rem;
  }
}
@media (max-width: 63.9375em) {
  .music__item:not(:last-child) {
    margin-bottom: 3rem;
  }
}
.music__item img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1/1;
}
@media (min-width: 64em) {
  .music__item {
    flex: 1;
    width: 21.875rem;
    -o-object-fit: cover;
       object-fit: cover;
    margin: 0;
  }
}
.music__scroll {
  text-align: center;
  padding: 0;
}
.music__title {
  text-align: center;
  padding: 1rem;
}
.music__button {
  align-items: center;
  text-align: center;
  margin: 1rem;
}

.about {
  background: hsl(353, 64%, 21%);
}
.about h1 {
  text-align: center;
}
@media (min-width: 64em) {
  .about h1 {
    text-align: left;
  }
}
.about__grid {
  display: flex;
  flex-direction: column;
}
@media (min-width: 64em) {
  .about__grid {
    flex-direction: row;
    gap: 15rem;
  }
}
.about__img {
  order: 1;
  text-align: center;
  padding-bottom: 2rem;
}
.about__img img {
  border: 1px white solid;
  border-radius: 40px;
}
@media (max-width: 63.9375em) {
  .about__img img {
    width: calc(100vw - 3rem);
  }
}
@media (min-width: 64em) {
  .about__img {
    order: 2;
    margin-top: -4rem;
  }
}
.about__text {
  order: 2;
  text-align: center;
  font-size: 1rem;
  font-size: clamp(1rem, 0.7894736842rem + 0.5263157895vw, 1.25rem);
}
@media (min-width: 64em) {
  .about__text {
    order: 1;
    text-align: left;
  }
}

.footer {
  background: hsl(0, 0%, 100%);
  color: hsl(353, 64%, 21%);
  text-align: center;
}
@media (min-width: 64em) {
  .footer {
    display: grid;
    grid-template-columns: 3fr 1.5fr;
    grid-template-rows: 1fr auto;
    grid-template-areas: "logo contact" "socials copyright";
    justify-items: start;
  }
}
.footer__logo {
  display: inline-block;
}
@media (max-width: 63.9375em) {
  .footer__logo {
    margin-bottom: 1rem;
  }
}
@media (min-width: 64em) {
  .footer__logo {
    grid-area: logo;
  }
}
.footer__logo img {
  height: 40px;
}
@media (min-width: 64em) {
  .footer__contact {
    justify-self: end;
    text-align: right;
  }
}
.footer__copyright {
  padding-top: 1rem;
}
@media (min-width: 64em) {
  .footer__copyright {
    justify-self: end;
    text-align: right;
  }
}
.footer__socials a {
  display: inline-block;
  padding-right: 0.625rem;
  padding-top: 0.625rem;
}
.footer__socials svg {
  transition: all 300ms ease-in-out;
}
.footer__socials svg:hover {
  opacity: 0.8;
}
@media (max-width: 63.9375em) {
  .footer__socials {
    margin-bottom: 1rem;
  }
}
@media (min-width: 64em) {
  .footer__socials {
    grid-area: socials;
  }
}/*# sourceMappingURL=style.css.map */