@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Allura&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
  transition: all 0.2s;
  list-style: none;
  text-decoration: none;
  outline: none;
}

.important-text {
  color: #8ad4ff;
}

.bold {
  font-weight: 600;
}

.underline {
  text-decoration: underline;
}

.italic {
  font-style: italic;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  max-width: 400px;
  background-color: #8ad4ff;
  color: #2d2d2d;
}
.btn:hover {
  box-shadow: 0 0 10px 1px #8ad4ff;
}
.btn:active {
  transform: scale(0.9);
}

.styled-text-1 {
  font-family: "Spectral";
}

.styled-text-2 {
  font-family: "Allura";
}

.body-container {
  padding: 1.5rem;
  max-width: 1000px;
  margin: auto;
}

.section {
  transform: translateY(100px);
  opacity: 0;
  transition: 0.5s;
  margin-bottom: 2rem;
}
.section.show {
  transform: translateY(0);
  opacity: 1;
}

body {
  background-color: #2d2d2d;
  color: #f2e7eb;
  font-family: "Poppins";
}

h1 {
  font-family: "Spectral";
}

p {
  margin-bottom: 1rem;
}

.bg-image {
  width: 100%;
  position: relative;
  top: 0px;
}

.desktop-bg-image {
  display: none;
  width: 100%;
  position: relative;
  top: 0px;
}

.artist-name {
  text-align: center;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.artist-name h1 {
  font-size: 2.5rem;
  text-shadow: 5px 5px 30px black;
}

.bio-nav-section {
  display: flex;
  flex-direction: column;
}

.bio-section h1 {
  font-family: "Spectral";
  margin-bottom: 1rem;
}

.nav-section {
  display: block;
}
.nav-section h1 {
  margin-bottom: 1rem;
}
.nav-section .btn {
  margin-bottom: 1rem;
}

.sign {
  font-size: 1.5rem;
}

@media screen and (min-width: 700px) {
  .bg-image {
    display: none;
  }
  .desktop-bg-image {
    display: block;
  }
  .artist-name h1 {
    font-size: 3.5rem;
  }
  .bio-nav-section {
    flex-direction: row;
    gap: 20px;
  }
  .bio-section {
    width: 50%;
  }
  .nav-section {
    width: 50%;
  }
}
.footer {
  margin-top: 2rem;
  background: #2d2d2d;
  color: #f2e7eb;
  padding: 20px;
  text-align: center;
  padding-block: 20vh;
}

.repertoire-songs h1 {
  margin-bottom: 2rem;
}
.repertoire-songs .repertoire-lists-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
.repertoire-songs .btn {
  margin: auto;
}

@media screen and (min-width: 700px) {
  .repertoire-songs .repertoire-lists-container {
    flex-direction: row;
  }
}
.contact-page h1 {
  text-align: center;
  margin-bottom: 2rem;
}
.contact-page .cards-container {
  display: block;
  max-width: 300px;
  margin: auto;
}
.contact-page .contact-card {
  background-color: rgb(34.8, 34.8, 34.8);
  border-radius: 15px;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  border: solid 2px #8ad4ff;
}
.contact-page .contact-card:hover {
  transform: scale(1.1);
  border: dotted 2px #8ad4ff;
}
.contact-page .contact-card img {
  width: 4rem;
}
.contact-page .contact-card .title {
  font-size: 1.5rem;
  font-family: "Spectral";
  color: #8ad4ff;
}

.events-schedule {
  border: solid 2px #8ad4ff;
  border-radius: 8px;
  text-align: center;
  margin-block: 2rem;
  padding: 1rem;
}

.event {
  text-align: left;
}

.add-event-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-block: 2rem;
  border: solid 1px #8ad4ff;
  padding: 2rem;
  border-radius: 8px;
}
.add-event-section input {
  width: 100%;
  font-size: 1.2rem;
  border-radius: 4px;
  padding: 0.5rem;
}
.add-event-section input:focus {
  box-shadow: 0 0 10px 1px #8ad4ff;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/*# sourceMappingURL=style.css.map */
