@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

:root {
  --purple500: #281154;
  --purple300: #270082;
  --purple600: #1b0058;
  --red600: #dc0000;
  --max-width: 1200px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.4;
  font-weight: 300;
  font-optical-sizing: auto;
  scroll-behavior: smooth;
}

section {
  scroll-margin: 50px;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: white;
}

button {
  padding: 10px 15px;
  border: none;
  transition: 0.2s ease-in-out;
  cursor: pointer;
  &:hover {
    opacity: 0.8;
  }
}

header {
  background-color: var(--purple300);
  position: sticky;
  z-index: 100;
  top: 0;
  box-shadow: 5px 5px 5px rbga(0, 0, 0, 0.5);

  nav {
    max-width: var(--max-width);
    margin: 0 auto;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    h1 {
      font-size: 32px;
      font-weight: 600;
    }
    ul {
      display: flex;
      gap: 20px;
      align-items: center;
      li {
        border-bottom: 2px solid transparent;
        transition: 0.2s ease-in;
        &:hover {
          border-bottom: 2px solid white;
        }
      }
    }
  }
}

.hero {
  color: white;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background-image: url(images/hero_image.png);
  align-items: center;
  justify-content: center;
  text-align: center;
  background-position: center;
  background-size: cover;
  background-repeat: none;
  h2 {
    font-size: 96px;
  }
  h3 {
    font-size: 32px;
  }
  p {
    max-width: 840px;
  }
}

.music {
  padding: 50px 20px;
  background-color: var(--purple500);
  display: flex;
  flex-direction: column;

  align-items: center;
  gap: 30px;
  color: white;
  text-align: center;
  h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 36px;
  }
  h3 {
    gap: 10px;
    font-size: 24px;
  }
  p {
    font-size: 18px;
    max-width: 970px;
  }
  .small-text {
    font-size: 14px;
  }
  button {
    background-color: var(--red600);
    color: white;
  }

  figure {
    margin-top: -400px;
    position: relative;
    top: 400px;
    img {
      max-width: 100%;
      height: auto;
    }
  }
}
.about-music {
  padding-top: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  gap: 20px;

  button {
    background-color: var(--purple300);
    color: white;
  }
  figure {
    img {
      max-width: 100%;
      height: auto;
    }
  }
}
.video {
  color: white;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background-image: url(images/video.png);
  align-items: center;
  justify-content: center;
  text-align: center;
  background-position: center;
  background-size: cover;
  background-repeat: none;

  h3 {
    font-size: 24px;
  }
  p {
    margin-top: 40px;
    font-size: 14px;
    max-width: 840px;
  }
}

.gift {
  padding: 100px 0;
  display: flex;
  max-width: 1080px;
  margin: 0 auto;
  align-items: center;
  gap: 36px;
  hr {
    width: 100%;
  }
  div {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 22px;
    p {
      font-size: 14px;
    }
    button {
      background-color: var(--purple300);
      color: white;
    }
  }
}

footer {
  display: flex;
  flex-direction: column;
  background-color: var(--purple600);
  color: white;

  section {
    padding: 50px 0;
    display: flex;
    max-width: 950px;
    margin: 0 auto;
    gap: 23px;
    nav {
      min-width: 220px;
      h4 {
        font-size: 18px;
        font-weight: 600;
        border-bottom: 1px solid white;
        margin-bottom: 20px;
      }
      li {
        font-size: 12px;
        margin-bottom: 8px;
      }
    }
  }
  p {
    background-color: var(--purple300);
    color: white;
    text-align: center;
    padding: 20px;
  }
}
