/* ==========================================================
   SECTION 3 / REPERTORIO
========================================================== */

.repertoire-section {
  position: relative;
  width: 100%;

  background-color: #f5f0ea;
  color: #171716;

  overflow: hidden;
}


/* ----------------------------------------------------------
   CONTAINER
---------------------------------------------------------- */

.repertoire-container {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr);

  column-gap: 90px;

  min-height: 660px;

  padding-top: 55px;
  padding-bottom: 70px;
}


/* ==========================================================
   LEFT / INTRO
========================================================== */

.repertoire-intro {
  padding-right: 30px;
}


/* EYEBROW */

.repertoire-eyebrow {
  display: block;

  margin-bottom: 28px;

  font-family: var(--font-primary);

  font-size: 12px;
  font-weight: 600;

  line-height: 1;

  letter-spacing: 0.25em;

  text-transform: uppercase;

  color: #4a5750;
}


/* TITLE */

.repertoire-title {
  max-width: 720px;

  margin: 0 0 35px;

  font-family: var(--font-serif);

  font-size: clamp(58px, 4.3vw, 82px);

  font-weight: 400;

  line-height: 1.02;

  letter-spacing: -0.025em;

  color: #171716;
}


/* DESCRIPTION */

.repertoire-description {
  max-width: 530px;

  margin: 0;

  font-family: var(--font-primary);

  font-size: 15px;
  font-weight: 400;

  line-height: 1.8;

  color: #827d77;
}


/* ==========================================================
   RIGHT / REPERTOIRE LIST
========================================================== */

.repertoire-list {
  width: 100%;

  border-top: 1px solid rgba(23, 23, 22, 0.16);
}


/* ----------------------------------------------------------
   ITEM
---------------------------------------------------------- */

.repertoire-item {
  position: relative;

  display: grid;

  grid-template-columns: 65px 1fr;

  align-items: center;

  min-height: 76px;

  border-bottom: 1px solid rgba(23, 23, 22, 0.16);

  transition:
    padding-left 0.35s ease,
    background-color 0.35s ease;
}


/* NUMBER */

.repertoire-number {
  font-family: var(--font-primary);

  font-size: 10px;
  font-weight: 400;

  line-height: 1;

  letter-spacing: 0.08em;

  color: #4a5750;
}


/* NAME */

.repertoire-item h3 {
  margin: 0;

  font-family: var(--font-serif);

  font-size: clamp(23px, 1.55vw, 30px);

  font-weight: 400;

  line-height: 1.1;

  color: #171716;

  transition:
    transform 0.35s ease,
    color 0.35s ease;
}


/* ==========================================================
   HOVER
========================================================== */

@media (hover: hover) {

  .repertoire-item:hover {
    padding-left: 12px;

    background-color: rgba(151, 111, 107, 0.035);
  }

  .repertoire-item:hover h3 {
    transform: translateX(5px);

    color: #4a5750;
  }

}


/* ==========================================================
   RESPONSIVE
========================================================== */


/* ----------------------------------------------------------
   SMALL DESKTOP
---------------------------------------------------------- */

@media (max-width: 1440px) {

  .repertoire-container {
    min-height: 620px;

    column-gap: 70px;

    padding-top: 55px;
    padding-bottom: 60px;
  }

  .repertoire-title {
    font-size: clamp(54px, 4.5vw, 72px);
  }

  .repertoire-item {
    min-height: 70px;
  }

}


/* ----------------------------------------------------------
   TABLET
---------------------------------------------------------- */

@media (max-width: 1024px) {

  .repertoire-container {
    grid-template-columns: 42% 58%;

    column-gap: 50px;

    min-height: auto;

    padding-top: 75px;
    padding-bottom: 75px;
  }

  .repertoire-title {
    font-size: clamp(46px, 6vw, 62px);
  }

  .repertoire-description {
    max-width: 400px;

    font-size: 14px;
  }

  .repertoire-item {
    grid-template-columns: 50px 1fr;

    min-height: 68px;
  }

  .repertoire-item h3 {
    font-size: 24px;
  }

}


/* ----------------------------------------------------------
   MOBILE
---------------------------------------------------------- */

@media (max-width: 768px) {

  .repertoire-container {
    display: block;

    padding-top: 65px;
    padding-bottom: 65px;
  }

  .repertoire-intro {
    padding-right: 0;

    margin-bottom: 55px;
  }

  .repertoire-eyebrow {
    margin-bottom: 20px;

    font-size: 10px;
  }

  .repertoire-title {
    max-width: 600px;

    margin-bottom: 25px;

    font-size: clamp(43px, 11vw, 58px);

    line-height: 1;
  }

  .repertoire-description {
    max-width: 500px;
  }

  .repertoire-item {
    grid-template-columns: 48px 1fr;

    min-height: 68px;
  }

  .repertoire-item h3 {
    font-size: 25px;
  }

}


/* ----------------------------------------------------------
   SMALL MOBILE
---------------------------------------------------------- */

@media (max-width: 480px) {

  .repertoire-container {
    padding-top: 55px;
    padding-bottom: 55px;
    padding: 2em 2em;
  }

  .repertoire-intro {
    margin-bottom: 45px;
  }

  .repertoire-title {
    font-size: 42px;
  }

  .repertoire-description {
    font-size: 13px;

    line-height: 1.7;
  }

  .repertoire-item {
    grid-template-columns: 42px 1fr;

    min-height: 64px;
  }

  .repertoire-item h3 {
    font-size: 22px;
  }

  .repertoire-experience-content {
    padding: 0 2em;
  }

}

/* ==========================================================
   REPERTORIO / BLOQUE EXPERIENCIA MUSICAL
========================================================== */

.repertoire-experience {
  position: relative;

  width: 100%;
  min-height: 770px;

  background-color: #171716;

  color: #ffffff;

  overflow: hidden;
}


/* ----------------------------------------------------------
   BACKGROUND
---------------------------------------------------------- */

.repertoire-experience-bg {
  position: absolute;
  inset: 0;

  background-image: url("../images/section4.jpg");

  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  z-index: 0;
  opacity: 50%;
}


/* Overlay general */

.repertoire-experience-bg::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(15, 15, 15, 0.10) 0%,
      rgba(15, 15, 15, 0.18) 42%,
      rgba(15, 15, 15, 0.48) 68%,
      rgba(15, 15, 15, 0.62) 100%
    );
}


/* ----------------------------------------------------------
   CONTAINER
---------------------------------------------------------- */

.repertoire-experience-container {
  position: relative;

  min-height: 770px;

  display: flex;

  align-items: center;
  justify-content: flex-end;

  z-index: 2;
}


/* ----------------------------------------------------------
   CONTENT
---------------------------------------------------------- */

.repertoire-experience-content {
  width: 48%;
  max-width: 720px;

  padding-right: 15px;
}


/* ----------------------------------------------------------
   EYEBROW
---------------------------------------------------------- */

.experience-eyebrow {
  display: block;

  margin-bottom: 28px;

  font-family: var(--font-primary);

  font-size: 12px;
  font-weight: 600;

  line-height: 1;

  letter-spacing: 0.24em;

  text-transform: uppercase;

  color: #d59b95;
}


/* ----------------------------------------------------------
   QUOTE
---------------------------------------------------------- */

.experience-quote {
  margin: 0 0 42px;

  padding: 0;

  border: 0;

  font-family: var(--font-serif);

  font-size: clamp(48px, 3.9vw, 72px);

  font-weight: 400;

  line-height: 1.02;

  letter-spacing: -0.025em;

  color: #ffffff;
}


/* ----------------------------------------------------------
   BUTTON
---------------------------------------------------------- */

.experience-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 58px;

  padding: 0 28px;

  border: 1px solid rgba(255, 255, 255, 0.55);

  font-family: var(--font-primary);

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.11em;

  text-transform: uppercase;

  color: #ffffff;

  background-color: rgba(255, 255, 255, 0.03);

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}


/* HOVER */

.experience-btn:hover {
  background-color: #ffffff;

  color: #171716;

  border-color: #ffffff;

  transform: translateY(-2px);
}


/* ==========================================================
   RESPONSIVE
========================================================== */


/* ----------------------------------------------------------
   SMALL DESKTOP
---------------------------------------------------------- */

@media (max-width: 1440px) {

  .repertoire-experience,
  .repertoire-experience-container {
    min-height: 680px;
  }

  .repertoire-experience-content {
    width: 49%;
  }

  .experience-quote {
    font-size: clamp(44px, 4vw, 62px);
  }

}


/* ----------------------------------------------------------
   TABLET
---------------------------------------------------------- */

@media (max-width: 1024px) {

  .repertoire-experience,
  .repertoire-experience-container {
    min-height: 650px;
  }

  .repertoire-experience-container {
    justify-content: flex-end;
  }

  .repertoire-experience-content {
    width: 55%;
  }

  .experience-quote {
    font-size: clamp(40px, 5vw, 56px);
  }

  .repertoire-experience-bg {
    background-position: 42% center;
  }

}


/* ----------------------------------------------------------
   MOBILE
---------------------------------------------------------- */

@media (max-width: 768px) {

  .repertoire-experience {
    min-height: 700px;
  }

  .repertoire-experience-container {
    min-height: 700px;

    display: flex;

    align-items: flex-end;
    justify-content: flex-start;

    padding-bottom: 65px;
  }

  .repertoire-experience-content {
    width: 100%;
    max-width: 560px;
  }

  .repertoire-experience-bg {
    background-position: 35% center;
  }

  .repertoire-experience-bg::after {
    background:
      linear-gradient(
        to bottom,
        rgba(15, 15, 15, 0.10) 0%,
        rgba(15, 15, 15, 0.28) 40%,
        rgba(15, 15, 15, 0.78) 100%
      );
  }

  .experience-eyebrow {
    margin-bottom: 20px;

    font-size: 10px;
  }

  .experience-quote {
    margin-bottom: 30px;

    font-size: clamp(38px, 9vw, 54px);

    line-height: 1;
  }

}


/* ----------------------------------------------------------
   SMALL MOBILE
---------------------------------------------------------- */

@media (max-width: 480px) {

  .repertoire-experience {
    min-height: 650px;
  }

  .repertoire-experience-container {
    min-height: 650px;

    padding-bottom: 50px;
  }

  .experience-quote {
    font-size: 38px;
  }

  .experience-btn {
    width: 95%;

    min-height: 54px;

    padding-inline: 18px;

    font-size: 10px;
  }

}