@import url("https://fonts.googleapis.com/css2?family=Faculty+Glyphic&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("header.css");
@import url("footer.css");
@import url("hero.css");
@import url("cards.css");
@import url("quote.css");
@import url("price-list.css");
@import url("contact.css");
@import url("form.css");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
  box-sizing: border-box;
}

html {
  --clr-primary-300: #f2d45d;
  --clr-primary-400: #F3C50D;
  --clr-primary-500: #D49B08;
  --clr-primary-600: #B87404;
  --clr-primary-700: #603D02;
  --clr-primary-800: #463821;
  --clr-primary-900: #332309;
  --header-height: 3.5rem;
  --content-width: calc(100vw - 4rem);
  --section-padding: 4rem;
  --text-shadow: drop-shadow(0px 0px 10px #332309);
  --card-shadow: 2px 4px 6px #00000040;

  @media screen and (min-width: 600px) {
    --content-width: calc(100vw - 8rem);
    --section-padding: 6rem
  }

  @media screen and (min-width: 1000px) {
    --content-width: min((100vw - 12rem), 53rem);
  }
}

:focus-visible {
  outline-color: var(--clr-primary-700);
}

p {
  line-height: 1.6;
}

.button {
  display: block;
  width: 33%;
  padding: .5rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  min-width: fit-content;
  max-width: 15rem;
  align-self: center;
  background-color: var(--clr-primary-400);
  border: 0;
  border-radius: 5rem;
  cursor: pointer;
  color: black;
  text-decoration: none;
  text-align: center;
  transition: background-color 100ms linear;
}

.button:hover {
  background-color: var(--clr-primary-300);
}

.section .button {
  width: fit-content;
  margin: calc(var(--section-padding) - 1rem) auto 0;
}

.section h2 {
  margin-bottom: 2rem;
}

.section p {
  margin-bottom: 1rem;
}

.section__content {
  margin: auto;
  width: var(--content-width);
  padding: var(--section-padding) 0;
}

.with-bg-img {
  position: relative;
}

.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  object-fit: cover;
}

h1 {
  font-family: "Faculty Glyphic", sans-serif;
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 1.2;

  @media screen and (max-width: 800px) {
    font-size: 2rem;
  }
}

h2 {
  font-family: "Faculty Glyphic", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--clr-primary-600);
}

.piano-border-bottom {
  position: relative;
}

.piano-border-bottom::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 4rem;
  background-image: url(../borders/piano-keys-border.svg);
  background-size: contain;
  background-repeat: repeat-x;
  background-position: center;
  bottom: 0;
}

.divider {
  height: calc(4rem + 4px);
}

.divider--gradient {
  background: linear-gradient(145deg, var(--clr-primary-800), var(--clr-primary-400));
  background-attachment: fixed;
}

.video {
  display: block;
  margin: 4rem auto;
  width: 100%;
  min-height: 16rem;
  aspect-ratio: 1.77 / 1;
}

.video:first-child {
  margin-top: 0;
}

.with-side-image {
  display: flex;
  gap: 3rem;
  align-items: center;

  @media screen and (max-width: 700px) {
    flex-direction: column-reverse;
    gap: 1rem;
  }
}

.with-side-image .text {
  width: 100%;
}

.with-side-image img {
  width: 40%;
  flex-shrink: 1;
  object-fit: contain;
  border-radius: 1rem;
  height: 100%;

  @media screen and (max-width: 700px) {
    width: 100%;
    max-width: 16rem;
    margin: 2rem 0;
  }
}

.with-side-image .crop-height {
  height: 16rem;
  object-fit: cover;
}

.with-side-image--image-centered {
  align-items: center;
}

.subsection + .subsection {
  margin-top: var(--section-padding);
}

.section--privacy h2 {
  margin: 2rem 0 0.5rem;
}

.section--privacy ul {
  padding-left: 1.5rem;
}

.section--privacy ol {
  padding-left: 1rem;
}

.section--privacy li {
  margin: 0.5rem 0;
}