@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500&family=Playfair+Display:wght@400;700&display=swap');

body, html { -webkit-font-smoothing: antialiased; -webkit-animation: fix 1s 1; overflow-x: hidden; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 { margin-bottom: 15px; }
img { max-width: 100%; }
p { margin: 0 0 10px 0; }
p:last-child { margin: 0; }

body { color: rgba(17,32,77,0.7); background-color: var(--col-bg-light); }
h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { color: #11204d; }
a { color: rgba(17,32,77,1); }
a:hover, a:hover > h4 { color: #6138bd; }
a.audio-jump-link {
  display: inline-block;
  border: 1px dashed #003;
  padding: 0px 7px;
  border-radius: 5px;
  text-decoration: none;
}

blockquote {
  border-left: 7px double #dde;
  margin-left: 5px;
  padding-left: 20px;
}

button {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  text-decoration: none;
  background: #001273;
  color: white;
  font-size: 17px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.1s;
}
button:hover {
  box-shadow: 0 0 10px #4ec4ff;
  transition: box-shadow 0.5s;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

@media screen and (prefers-reduced-motion: reduce) {
  * {
    /* Very short durations means JavaScript that relies on events still works */
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body { font-family: 'Jost', sans-serif; font-size: 17px; font-weight: 400; line-height: 1.8em; letter-spacing: 0.2px; }
h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-family: 'Jost', sans-serif; font-weight: 500; }
.font-family-main { font-family: 'Jost', sans-serif; }
.font-family-alt, .dtr-styled-heading h2, .dtr-styled-heading p { font-family: 'Playfair Display', serif; }
.dtr-styled-heading h2 { font-weight: 700; }
.dtr-styled-heading p { font-weight: 700; }
h1, h1 a { font-size: 4.000em; line-height: 1.3em; }
h2, h2 a { font-size: 2.824em; line-height: 1.2em; }
h3, h3 a { font-size: 2.118em; line-height: 1.3em; }
h4, h4 a { font-size: 1.412em; line-height: 1.3em; }
h5, h5 a { font-size: 1.118em; line-height: 1.3em; }
h6, h6 a { font-size: 1.000em; line-height: 1.8em; }
strong { font-size: 1.000em; line-height: 25px; font-weight: 600; }
.small { font-size: 0.750em; line-height: 1.8em; }
/* text sizes */
.text-size-xxl { font-size: 56px; line-height: 60px; }
.text-size-xl { font-size: 36px; line-height: 40px; }
.text-size-lg { font-size: 30px; line-height: 38px; }
.text-size-md { font-size: 24px; line-height: 36px; }
.text-size-sm { font-size: 12px; line-height: 16px; }
.text-size-xs { font-size: 0.750em; line-height: 1.4em; }
/* line height */
.line-height-null { line-height: 1em; }
/* font weights */
.font-weight-200 { font-weight: 200; }
.font-weight-300 { font-weight: 300; }
.font-weight-400 { font-weight: 400; }
.font-weight-500 { font-weight: 500; }
.font-weight-600 { font-weight: 600; }
.font-weight-700 { font-weight: 700; }
/* vertical aligns */
.vert-bottom { vertical-align: bottom; }
.vert-middle { vertical-align: middle; }

.container { width: 100%; padding: 0 15px; margin: 0 auto; box-sizing: border-box; }
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
  .text-size-xxl { font-size: 63px; line-height: 68px; }
  .text-size-xl { font-size: 40px; line-height: 52px; }
  }
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .text-size-xxl { font-size: 68px; line-height: 68px; }
  .text-size-xl { font-size: 48px; line-height: 52px; }
  .container {
    max-width: 1140px;
  }
}
section {
  padding: 70px 0;
}

.image-carousel {
  overflow: hidden;
}
.image-carousel .slider {
  display: flex;
  column-gap: 20px;
  animation: carouselloop 20s linear infinite;
}
.carousel-2 .image-carousel .slider { animation-delay: 3s; }

.image-carousel img {
  border-radius: 15px;
  overflow: hidden;
  width: 160px;
  height: 160px;
  flex: 0 0 auto;
}

@keyframes carouselloop {
  0% { transform: translateX(0); }
  2% { transform: translateX(-180px); }
  25% { transform: translateX(-180px); }
  27% { transform: translateX(-360px); }
  50% { transform: translateX(-360px); }
  52% { transform: translateX(-540px); }
  75% { transform: translateX(-540px); }
  77% { transform: translateX(-720px); }
  to { transform: translateX(-720px); }
}



.dtr-styled-heading::before { background-color: rgba(51, 231, 175, .1); }
.dtr-styled-heading p { color: rgba(17,32,77,0.35); }
.dtr-styled-heading h2, .dtr-styled-heading p { font-family: 'Playfair Display', serif; }
.dtr-styled-heading h2 { font-weight: 700; margin-top: 0; }
.dtr-styled-heading p { font-weight: 700; }
.dtr-styled-heading { position: relative; margin-bottom: 40px; z-index: 9; }
.dtr-styled-heading h2 { font-size: 36px; line-height: 46px; margin-bottom: 5px; }
.dtr-styled-heading p { font-size: 14px; line-height: 24px; }
.dtr-styled-heading::before { content: ''; display: inline-block; position: absolute; left: 0; top: -15px; width: 60px; height: 60px; border-radius: 50%; z-index: -1; }
.dtr-styled-heading.heading-center { text-align: center; }
.dtr-styled-heading.heading-center::before { left: 50%; margin-left: -30px; }

.title-icon-link {
  float: right;
  text-decoration: none;
  font-size: 40px;
}
.title-icon-link.spotify {
  color: var(--col-spotify) !important;
}

.tab-headings ul {
  padding: 0;
  margin: 0;
}
.tab-headings li {
  list-style-type: none;
  padding: 0;
  margin: 0 0 0.5em 0;
}
.tab-headings a {
  display: block;
  padding: 3px 10px;
  text-decoration: none;
}
.tab-headings a.active {
 background-color: var(--col-selected);
}
.tab-headings h4 {
  margin: 0;
}

.tab-pane {
  display: none;
  gap: 30px;
}
.tab-pane.active {
  display: flex;
  flex-direction: column;
}
.tab-pane img {
  width: 250px;
  height: 250px;
  border-radius: 10px;
}

@media (min-width: 992px) {
  .tab-pane.active {
    flex-direction: row;
  }
}
.tab-pane h6 {
  margin-top: 0;
}

.pipe-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.pipe-list li {
  display: inline-block;
  margin-left: 3px;
}
.pipe-list li:not(:last-of-type):after {
  content: "|";
  margin-left: 10px;
  color: #666688;
}



header {
  padding: 40px 0;
  background: var(--col-white);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 20px;
}
header .container .logo {
  margin-right: 20px;
  display: block;
}
header .container .logo img {
  display: block;
}

header .container audio {
  flex: 1 0 auto;
  max-width: 700px;
  height: 30px;
}

section#hero {
  padding-top: 200px;
}
section#hero .container {
  display: flex;
  grid-gap: 20px;
  flex-direction: column;
}
@media (min-width: 1100px) {
  section#hero .container {
    display: grid;
    grid-template-columns: 1fr 160px 160px 160px;
    grid-template-rows: 160px;
    grid-gap: 20px;
    grid-template-areas:
      "hello carousel-1 carousel-1 carousel-1"
      "strap gap carousel-2 carousel-2";
  }
}
section#hero .hello { grid-area: hello; overflow: hidden; white-space: nowrap; }
section#hero .strap { grid-area: strap; overflow: hidden; }
section#hero .carousel-1 { grid-area: carousel-1; }
section#hero .carousel-2 { grid-area: carousel-2; }
section#hero .strap p:first-of-type { margin-bottom: 20px; }


section#about {
  background: var(--col-bg-dark);
}
section#about .container {
  display: flex;
  grid-gap: 50px;
  flex-direction: column;
}
@media (min-width: 768px) {
  section#about .container {
    flex-direction: row;
  }
  section#about .media {
    max-width: 50%;
  }
  section#about .content {
    max-width: 50%;
  }
}
section#about .media {
  padding-right: 50px;
}
section#about .content {
}
section#about .media img {
  border-radius: 10px;
  margin-left: 50px;
  margin-top: 40px;
  box-shadow: -50px -40px var(--col-shadow);
  box-sizing: border-box;
  display: block;
}

section#music .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 20px;
  grid-template-areas:
    "heading heading"
    "nav content";
}
section#music .container .dtr-styled-heading { grid-area: heading; }
section#music .container .tab-headings { grid-area: nav; }
section#music .container .tab-pane { grid-area: content; }

section#book {  background: var(--col-bg-dark); }
section#book .container {
  display: flex;
  grid-gap: 50px;
  align-items: flex-start;
  flex-direction: column;
}
@media (min-width: 576px) {
  section#book .container {
    flex-direction: row;
  }
}
section#book .container > img { box-shadow: 0 0 20px rgb(0 0 0 / 50%); width: 200px; }
section#book .container > .content { grid-area: content; }

#luxury-wrap {
  background: url(../images/fray-bentos.jpeg) 50% 50% no-repeat;
  background-size: cover;
}
section#luxury {
  backdrop-filter: brightness(0.5);
}
section#luxury .dtr-styled-heading::before {
  background-color: rgb(255 140 58 / 30%);
}
section#luxury * {
  color: white;
}

footer {
  background: var(--col-bg-invert);
  color: var(--col-white);
  overflow: hidden;
}
footer .container {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9em;
  line-height: 1.7;
}
footer a { color: var(--col-white); }
footer a:hover { color: #666688; }
footer p { margin: 0.2em 0; }