@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
    box-sizing: border-box;
  }
  * {
    margin: 0;
  }
  body {
    position: relative;
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    overflow-x: hidden;
  }
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
  }
  input, button, textarea, select {
    font: inherit;
  }
  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
  }
  #root, #__next {
    isolation: isolate;
  }

/* ===================== */


:root {
  --angle: 12deg;
  --gradient: linear-gradient(
    var(--angle),
    hsl(265deg 53% 29%) 0%,
    hsl(289deg 49% 30%) 21%,
    hsl(311deg 47% 35%) 30%,
    hsl(325deg 46% 42%) 39%,
    hsl(337deg 43% 50%) 46%,
    hsl(347deg 50% 57%) 54%,
    hsl(358deg 59% 64%) 61%,
    hsl(8deg 71% 68%) 69%,
    hsl(17deg 82% 70%) 79%,
    hsl(24deg 93% 73%) 100%
  );
  --dark-purple: hsl(265deg 53% 29%);
  --light-orange: hsl(24deg 93% 73%);
  --dark-orange: #d96d71;
  --inbetween: hsl(337deg 43% 50%);
  --diff-inbetween: #d96d71;
  --off-white: #F5F5F5;
  --off-black: #141414;
  --darker-black: #090500;
}

body {
    background-color: #F5F5F5;
    color: #141414;
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 18px;
}

@media (prefers-reduced-motion) {
  body {
    /* background-color: red; */
  }
}

@media screen and (max-width: 734px) {
  body{
    font-size: 16px;
  }
}

a {
  color: #d96d71;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.hidden {
  display: none !important;
}

header {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  font-size: 32px;
}

/* @media screen and (max-width: 1068px) {
  header svg {
    width: 36px;
    height: 36px;
  }  
  header .contact svg {
    width: 30px;
    height: 30px;
  }  
}

@media screen and (max-width: 734px) {
  header svg {
    width: 30px;
    height: 30px;
  }  
  header .contact svg {
    width: 24px;
    height: 24px;
  }  
} */

header ul {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  gap: 8px;
  align-items: center;
}

header ul li {
  transition: transform .2s ease-in-out;
}

header a {
  color:#141414;
}

header a:hover path {
  fill: #d96d71;
}

header .menu {
  display: none;
}

/* mobile menu */
@media screen and (max-width: 734px) {
  header .menu {
    display: unset;
  }

  header .menu a {
    padding: 0 15px;
    content: " ";
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="512" height="512" viewBox="0 0 512 512"%3E%3Cpath fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="32" d="M368 368L144 144m224 0L144 368"%2F%3E%3C%2Fsvg%3E')
  }

  header .menu a:hover {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="512" height="512" viewBox="0 0 512 512"%3E%3Cpath fill="none" stroke="%23d96d71" stroke-linecap="round" stroke-linejoin="round" stroke-width="32" d="M368 368L144 144m224 0L144 368"%2F%3E%3C%2Fsvg%3E');
  }

  header .closed .menu a {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="512" height="512" viewBox="0 0 512 512"%3E%3Cpath fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="32" d="M80 160h352M80 256h352M80 352h352"%2F%3E%3C%2Fsvg%3E')
  }

  header .closed .menu a:hover {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="512" height="512" viewBox="0 0 512 512"%3E%3Cpath fill="none" stroke="%23d96d71" stroke-linecap="round" stroke-miterlimit="10" stroke-width="32" d="M80 160h352M80 256h352M80 352h352"%2F%3E%3C%2Fsvg%3E')
  }

  header ul li {
    transform-origin: right;
    opacity: 1;
  }
  
  header ul.closed li:nth-child(1), 
  header ul.closed li:nth-child(2), 
  header ul.closed li:nth-child(3), 
  header ul.closed li:nth-child(4) {
    /* transform: translateX(400px); */
    transform: translateX(30px) scaleX(0);
  }
}
  
main .section-content {
    max-width: 980px;
    margin: 0 auto 40px;
}

@media screen and (max-width: 1068px) {
  main .section-content {
    max-width: 692px;
    margin-bottom: 32px;
  }  
}

@media screen and (max-width: 734px) {
  main .section-content {
    max-width: 87.5%;
  }  
}

/* 980pz > 692px > 87.5% */

.banner-image img {
  max-height: 750px;
  width: 100vw;
  object-fit: cover;
}

.hero-image {
  margin-bottom: -20px;
}

h1 {
  font-size: 160px;
  text-transform: lowercase;
  text-align: center;
  font-weight: 800;
  white-space: nowrap;
  /* font-stretch: condensed; */
}

@media screen and (max-width: 1068px) {
  .hero-image {
    margin-bottom: -10px;
  }

  h1 {
    font-size: 116px;
  }  

}

@media screen and (max-width: 734px) {
  .hero-image {
    margin-bottom: -5px;
  }

  h1 {
    /* font-size: 102px; */
    font-size: 50px;
    font-size: 14vw;
  }  
}

.section-hero h1 span {
  background-image: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

h2 {
  text-transform: lowercase;
  font-size: 44px;
}

@media screen and (max-width: 734px) {
  h2 {
    font-size: 9vw;
  }
}

p.hero-subtitle {
  text-transform: uppercase;
  font-weight: 600;
  margin-top: -45px;
  text-align: center;
  font-size: 32px;
}

@media screen and (max-width: 1068px) {
  p.hero-subtitle {
    margin-top: -45px;
    font-size: 24px;
  }
}

@media screen and (max-width: 734px) {
  p.hero-subtitle {
    margin-top: -6vw;
    font-size: 4vw;
  }
}

.section-about > div{
  display: grid;
  grid-template-columns: 60% 35%;
  grid-template-rows: 1fr;
  grid-column-gap: 5%;
  grid-row-gap: 0px; 
}

@media screen and (max-width: 1068px) {
  .section-about > div{
    display:block;
  }

}

.section-about img {
  align-self: center;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
  border-radius: 3px;
}

@media screen and (max-width: 1068px) {
  .section-about img {
    width: 100%;
    margin: 1.2em auto 0;
  }

}

.section-about .contact { 
  padding-right: 26px;
  white-space: nowrap;
  background-repeat: no-repeat;
  background-position: right center;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="32" height="32" viewBox="0 0 24 24"%3E%3Cpath fill="%23d96d71" fill-rule="evenodd" d="M9.97 7.47a.75.75 0 0 1 1.06 0l4 4a.75.75 0 0 1 0 1.06l-4 4a.75.75 0 1 1-1.06-1.06L13.44 12L9.97 8.53a.75.75 0 0 1 0-1.06Z" clip-rule="evenodd"%2F%3E%3C%2Fsvg%3E')
}

p + p {
  margin-top: 10px;
}

/* player */

.player-container {
  margin-top: 18px;
  margin-bottom: 18px;
  height: fit-content;
}

.track-list {
  display: flex;
  font-size: 55px;
  font-weight: 600;
  flex-wrap: wrap;
  justify-content: left;
  column-gap: 10px;
  text-transform:uppercase;
  line-height: .9;
  row-gap: 0px;
}

.track-list br {
  display: none;
}


@media screen and (max-width: 1068px) {
  .track-list br.medium {
    display: block
  }

}

@media screen and (max-width: 734px) {
  .track-list br.small {
    display: block
  }
}


.track-item {
  margin-right: 20px;
}

@media screen and (max-width: 734px) {
  .track-list {
    font-size: 7.5vw;
    flex-direction: column;
    /* text-align: center; */
  }
}


/* .now-playing {
  background-image: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
} */

.track-item {
  cursor: pointer;
}

.track-item:hover {
  background-image: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  transition: color .2s linear;
  color: transparent;
}

/* player - modal */

.player-modal {
  position: fixed;
  bottom: 35px;
  color: var(--off-white);
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-out;
  z-index: -5;
}

.modal-container {
  position: relative;
  z-index: -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--darker-black);
  width: fit-content;
  margin: 1em auto;
  padding: 8px 12px 8px 20px;
  border-radius: 48px;
  left: 0;
  gap: 3em;
}

.music-playing .player-modal {
  z-index: 1;
}

.music-playing .modal-container {
  z-index: 2;
}

@media screen and (max-width: 734px) {
  .modal-container {
    gap: 1.5em;
  }
}

.control {
  border: 2px solid var(--off-white);
  border-radius: 99px;
  box-sizing: content-box;
  width: 48px;
  height: 48px;
}

.control svg {
  margin: 8px;
}

.music-playing .player-modal {
  opacity: 1;
}

.section-listen .social {

  padding-left: 24px;
  white-space: nowrap;
  background-repeat: no-repeat;
  background-position: left center;
}

.now-playing-title {
  color: var(--light-orange)
}

.now-playing-title span {
  color: var(--off-white)
}

.play-pause-btn-container {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.gradient-border {
  grid-area: 1 / 1 / 2 / 2;
  
  
  width: 65px;
  height: 65px;
  border-radius: 100px;

  background: var(--off-white);

}

.music-playing .gradient-border {

  background: var(--light-orange);
  background: linear-gradient(90deg, hsl(311deg 47% 35%) 0%, var(--light-orange) 100%);
  animation: rotate 5s linear infinite;
  transition: background 1s ease-out;
}

.music-playing.paused .gradient-border {

  background: var(--off-white)

}

@keyframes rotate {
  0% {
    transform: rotate(0deg)
  }
  100% {
    transform: rotate(359deg)
  }
}

.btn-bg{
  z-index: 2;
  width: 59px;
  height: 59px;
  border-radius:100px;
  background-color: var(--darker-black);
  display: flex;
  justify-content: center;
  align-items: center;
  grid-area: 1 / 1 / 2 / 2;
  margin-left: 3px;
  cursor: pointer;
}

.social.instagram {
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="%23d96d71" d="M12 7.9a4.1 4.1 0 1 0 4.1 4.1A4.09 4.09 0 0 0 12 7.9Zm0 6.77A2.67 2.67 0 1 1 14.67 12A2.67 2.67 0 0 1 12 14.67Zm5.23-6.94a1 1 0 1 1-1-1a1 1 0 0 1 1 1Zm2.71 1a4.71 4.71 0 0 0-1.29-3.35a4.71 4.71 0 0 0-3.35-1.32C14 4 10 4 8.7 4.06a4.73 4.73 0 0 0-3.35 1.29A4.71 4.71 0 0 0 4.06 8.7C4 10 4 14 4.06 15.3a4.71 4.71 0 0 0 1.29 3.35a4.73 4.73 0 0 0 3.35 1.29c1.32.08 5.28.08 6.6 0a4.71 4.71 0 0 0 3.35-1.29a4.71 4.71 0 0 0 1.29-3.35c.06-1.3.06-5.3 0-6.6Zm-1.7 8a2.7 2.7 0 0 1-1.52 1.52a18 18 0 0 1-4.72.32a17.91 17.91 0 0 1-4.71-.32a2.7 2.7 0 0 1-1.52-1.52c-.42-1.06-.33-3.56-.33-4.72s-.09-3.67.33-4.72a2.65 2.65 0 0 1 1.52-1.53A17.91 17.91 0 0 1 12 5.44a18 18 0 0 1 4.72.32a2.7 2.7 0 0 1 1.52 1.52c.42 1.06.32 3.56.32 4.72s.1 3.67-.32 4.72Z"%2F%3E%3C%2Fsvg%3E')
}

.social.youtube {
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="%23d96d71" d="M19.67 8.14a2 2 0 0 0-1.42-1.43A48.44 48.44 0 0 0 12 6.38a48.44 48.44 0 0 0-6.25.33a2 2 0 0 0-1.42 1.43A21.27 21.27 0 0 0 4 12a21.42 21.42 0 0 0 .33 3.88a2 2 0 0 0 1.42 1.4a48.44 48.44 0 0 0 6.25.33a48.44 48.44 0 0 0 6.25-.33a2 2 0 0 0 1.42-1.4A21.42 21.42 0 0 0 20 12a21.27 21.27 0 0 0-.33-3.86Zm-9.31 6.25V9.63L14.55 12l-4.19 2.38Z"%2F%3E%3C%2Fsvg%3E');
}

/* testimonies */

.testimony-container {
  margin-top: 18px;
  overflow: visible;
  margin-left: -10px;
  --t-width: 310px;
  --t-gap: 40px;
}

.testimony-wrapper {
  box-sizing: content-box;
  display: flex;
  margin: 0 auto;
  padding: 10px;
  gap: var(--t-gap);
  /* adjust testimonial by using transform: translateX() */
  transition: transform .2s ease-out;
}

.testimony-wrapper .testimony {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
  border-radius: 3px;
  background-color: #fcfcfc;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 var(--t-width);
  font-size: 16px;
  overflow-wrap: break-word;
  hyphens: auto;
}

.testimony-container .reviewer{
  font-weight: 600;
  font-size: smaller;
  text-align: right;
}

.testimony-container nav {
  width: fit-content;
  height:1.56em;
  margin: 16px auto 0;
  background-color: #d96d71;
  border: 0.2em solid #d96d71;
  border-radius: 20px;
}

.testimony-container nav input[type="radio"] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    appearance: none;
    /* For iOS < 15 to remove gradient background */
    background-color: #d96d71;
    /* Not removed via appearance */
    margin: 0;
    color: currentColor;
    width: 1.15em; 
    height: 1.15em;
    border: 0.15em solid #d96d71;
    border-radius: 50%;
}

.testimony-container nav input[type="radio"]:hover {
  cursor: pointer;
  border-color:#fcfcfc;
}

.testimony-container nav input[type="radio"]:checked {
  background-color:#fcfcfc;
  border-color: #fcfcfc;
}

/* CONTACT */
form {
  font-size: 36px;
  margin-top: 18px;
}

@media screen and (max-width: 734px) {
  form {
    font-size: 24px
  }
}

form input,
form select,
form textarea,
form fieldset,
form optgroup,
form label {
  color: var(--off-white);
  font-family: inherit;
  font-size: 100%;
  /* background-color: rgba(255, 255, 255, 0.5); */
  color: inherit;
  border: none;
  border-radius: 0;
  /* display: block; */
  width: auto;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
}

fieldset input {
    width: 0;
    padding: 0;
    border: 0;
    opacity: 0;
    height: 0;
  }
  
form label {
  white-space: nowrap;
  cursor: pointer;
  font-style: italic;
  color: var(--off-white);
  text-decoration: underline;
  text-underline-offset: 12px;
}

form input:focus + label,
form label:hover {
  background-color:var(--inbetween);
}

#date + label img {
  position: relative;
  top: 14px;
  width: 52px;
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--off-white);
  margin-top: -20px;
}

.section-contact {
  background-color: var(--dark-orange);
  padding: 40px 0 80px;
}

.section-contact .section-content, .submit-btn {
  margin-bottom: 0;
}

.submit-btn {
  margin-top: 24px;
  margin-right: 0;
  padding: 8px 40px;
  border-radius: 6px;
  cursor: pointer;
  background-color: var(--inbetween);
  color: var(--off-white);
  text-transform: lowercase;
  font-size: smaller;
  box-shadow: 0;
  transition: transform .2s ease-out, box-shadow .2s ease-out;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0px 5px 0px -3px rgba(0,0,0,0.1);
}

footer .dev-attribution{
  font-size: smaller;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: var(--darker-black);
  color: var(--off-white);
  font-weight: 300;
}
