@charset "UTF-8";
:root {
  --primary-color: rgb(3, 45, 175);
  --secondary-color: rgb(100, 120, 245);
  --third-color: rgb(184, 131, 250);
  --accent-color: rgb(254, 173, 56);
  --accent-light: rgb(230, 153, 149);
  --vss-primary: rgb(100, 120, 245);
  --vss-secondary: rgb(136, 124, 248);
  --vss-third: rgb(184, 131, 250);
  --vsv-primary: rgb(184, 131, 250);
  --vsv-secondary: rgb(230, 153, 149);
  --vsv-third: rgb(254, 173, 56);
  --light: #fbf2de;
  --light-alt: #FFFAFA;
  --light-third: #f9f2e0;
  --white: #fff;
  --primary-color-dark: rgb(2.1404494382, 32.106741573, 124.8595505618);
  --link-color: #032DAF;
  --text-color: #252525;
  --black: #252525;
  --grey: #eaeaea;
  --gradientvss: linear-gradient(var(--gradient-angle), rgb(100, 120, 245), rgb(136, 124, 248), rgb(184, 131, 250));
  --gradientvsv: linear-gradient(var(--gradient-angle), rgb(184, 131, 250), rgb(230, 153, 149), rgb(254, 173, 56));
  --gradient-angle: 135deg;
}

.text-primary {
  color: rgb(3, 45, 175) !important;
}

.bg-primary {
  background-color: rgb(3, 45, 175) !important;
}

.btn-primary {
  background-color: rgb(3, 45, 175) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}
.btn-primary:hover {
  background-color: rgb(1.2808988764, 19.2134831461, 74.7191011236) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}

.btn-outline-primary {
  border-color: rgb(3, 45, 175) !important;
  color: rgb(3, 45, 175) !important;
  transition: all 0.5s ease;
}
.btn-outline-primary:hover {
  background-color: rgb(3, 45, 175) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}

.text-secondary {
  color: rgb(100, 120, 245) !important;
}

.bg-secondary {
  background-color: rgb(100, 120, 245) !important;
}

.btn-secondary {
  background-color: rgb(100, 120, 245) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}
.btn-secondary:hover {
  background-color: #fff !important;
  color: #fff !important;
  transition: all 0.5s ease;
}

.btn-outline-secondary {
  border-color: rgb(100, 120, 245) !important;
  color: rgb(100, 120, 245) !important;
  transition: all 0.5s ease;
}
.btn-outline-secondary:hover {
  background-color: rgb(100, 120, 245) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}

.text-third {
  color: rgb(184, 131, 250) !important;
}

.bg-third {
  background-color: rgb(184, 131, 250) !important;
}

.btn-third {
  background-color: rgb(184, 131, 250) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}
.btn-third:hover {
  background-color: #fff !important;
  color: #fff !important;
  transition: all 0.5s ease;
}

.btn-outline-third {
  border-color: rgb(184, 131, 250) !important;
  color: rgb(184, 131, 250) !important;
  transition: all 0.5s ease;
}
.btn-outline-third:hover {
  background-color: rgb(184, 131, 250) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}

.text-accent {
  color: rgb(254, 173, 56) !important;
}

.bg-accent {
  background-color: rgb(254, 173, 56) !important;
}

.btn-accent {
  background-color: rgb(254, 173, 56) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}
.btn-accent:hover {
  background-color: rgb(230, 153, 149) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}

.btn-outline-accent {
  border-color: rgb(254, 173, 56) !important;
  color: rgb(254, 173, 56) !important;
  transition: all 0.5s ease;
}
.btn-outline-accent:hover {
  background-color: rgb(254, 173, 56) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}

.text-accent-light {
  color: rgb(230, 153, 149) !important;
}

.bg-accent-light {
  background-color: rgb(230, 153, 149) !important;
}

.btn-accent-light {
  background-color: rgb(230, 153, 149) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}
.btn-accent-light:hover {
  background-color: rgb(254, 173, 56) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}

.btn-outline-accent-light {
  border-color: rgb(230, 153, 149) !important;
  color: rgb(230, 153, 149) !important;
  transition: all 0.5s ease;
}
.btn-outline-accent-light:hover {
  background-color: rgb(230, 153, 149) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}

.text-white {
  color: #fff !important;
}

.bg-white {
  background-color: #fff !important;
}

.btn-white {
  background-color: #fff !important;
  color: #252525 !important;
  transition: all 0.5s ease;
}
.btn-white:hover {
  background-color: #252525 !important;
  color: #252525 !important;
  transition: all 0.5s ease;
}

.btn-outline-white {
  border-color: #fff !important;
  color: #fff !important;
  transition: all 0.5s ease;
}
.btn-outline-white:hover {
  background-color: #fff !important;
  color: #252525 !important;
  transition: all 0.5s ease;
}

.text-light {
  color: #fbf2de !important;
}

.bg-light {
  background-color: #fbf2de !important;
}

.btn-light {
  background-color: #fbf2de !important;
  color: #252525 !important;
  transition: all 0.5s ease;
}
.btn-light:hover {
  background-color: #252525 !important;
  color: #252525 !important;
  transition: all 0.5s ease;
}

.btn-outline-light {
  border-color: #fbf2de !important;
  color: #fbf2de !important;
  transition: all 0.5s ease;
}
.btn-outline-light:hover {
  background-color: #fbf2de !important;
  color: #252525 !important;
  transition: all 0.5s ease;
}

.text-light-alt {
  color: #FFFAFA !important;
}

.bg-light-alt {
  background-color: #FFFAFA !important;
}

.btn-light-alt {
  background-color: #FFFAFA !important;
  color: #252525 !important;
  transition: all 0.5s ease;
}
.btn-light-alt:hover {
  background-color: #252525 !important;
  color: #252525 !important;
  transition: all 0.5s ease;
}

.btn-outline-light-alt {
  border-color: #FFFAFA !important;
  color: #FFFAFA !important;
  transition: all 0.5s ease;
}
.btn-outline-light-alt:hover {
  background-color: #FFFAFA !important;
  color: #252525 !important;
  transition: all 0.5s ease;
}

.text-light-third {
  color: #f9f2e0 !important;
}

.bg-light-third {
  background-color: #f9f2e0 !important;
}

.btn-light-third {
  background-color: #f9f2e0 !important;
  color: #252525 !important;
  transition: all 0.5s ease;
}
.btn-light-third:hover {
  background-color: #252525 !important;
  color: #252525 !important;
  transition: all 0.5s ease;
}

.btn-outline-light-third {
  border-color: #f9f2e0 !important;
  color: #f9f2e0 !important;
  transition: all 0.5s ease;
}
.btn-outline-light-third:hover {
  background-color: #f9f2e0 !important;
  color: #252525 !important;
  transition: all 0.5s ease;
}

.text-vss {
  color: rgb(100, 120, 245) !important;
}

.bg-vss {
  background-color: rgb(100, 120, 245) !important;
}

.btn-vss {
  background-color: rgb(100, 120, 245) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}
.btn-vss:hover {
  background-color: rgb(136, 124, 248) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}

.btn-outline-vss {
  border-color: rgb(100, 120, 245) !important;
  color: rgb(100, 120, 245) !important;
  transition: all 0.5s ease;
}
.btn-outline-vss:hover {
  background-color: rgb(100, 120, 245) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}

.text-vsv {
  color: rgb(184, 131, 250) !important;
}

.bg-vsv {
  background-color: rgb(184, 131, 250) !important;
}

.btn-vsv {
  background-color: rgb(184, 131, 250) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}
.btn-vsv:hover {
  background-color: rgb(230, 153, 149) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}

.btn-outline-vsv {
  border-color: rgb(184, 131, 250) !important;
  color: rgb(184, 131, 250) !important;
  transition: all 0.5s ease;
}
.btn-outline-vsv:hover {
  background-color: rgb(184, 131, 250) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}

:root {
  --primary-font: futura-pt, sans-serif;
  --title-font: auster, sans-serif;
}

body {
  font-family: futura-pt, sans-serif;
  font-size: 18px;
  line-height: 1.875em;
  font-weight: 400;
  font-style: normal;
  color: var(--text-color);
}

h1, .h1 {
  font-size: clamp(1.8rem, 6vw + 1rem, 3rem);
}

h2, .h2 {
  font-size: clamp(1.6rem, 5vw + 1rem, 2.5rem);
}

h3, .h3 {
  font-size: clamp(1.6rem, 4vw + 1rem, 2rem);
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: auster, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
}

.text-wrapper p,
.text-wrapper div,
p {
  font-size: 1.25rem;
  line-height: 2rem;
}

a {
  text-decoration: none;
}

.text-wrapper p {
  margin-bottom: 1rem;
}
.text-wrapper h1 {
  margin: 1.5rem 0;
}
.text-wrapper h2 {
  margin: 1.4rem 0;
}
.text-wrapper h3 {
  margin: 1.3rem 0;
}
.text-wrapper h4 {
  margin: 1.2rem 0;
}
.text-wrapper h5 {
  margin: 1.1rem 0;
}
.text-wrapper h6 {
  margin: 1.1rem 0;
}
.text-wrapper a {
  color: var(--accent-light);
  text-decoration: underline;
}
.text-wrapper ul {
  list-style: inside;
}
.text-wrapper ol {
  list-style-type: decimal;
  list-style-position: inside;
}

.uppercase {
  text-transform: uppercase;
}

.text-center, .align-center {
  text-align: center;
}

.text-right, .align-right {
  text-align: right;
}

.text-left, .align-left {
  text-align: left;
}

.wrapper__text h1, .wrapper__text h2, .wrapper__text h3, .wrapper__text h4, .wrapper__text h5, .wrapper__text h6 {
  margin: 1rem 0;
}
.wrapper__text.--txt-white {
  color: var(--white);
}
.wrapper__text.--bg-secondary h1, .wrapper__text.--bg-secondary h2, .wrapper__text.--bg-secondary h3, .wrapper__text.--bg-secondary h4, .wrapper__text.--bg-secondary h5, .wrapper__text.--bg-secondary h6 {
  color: var(--primary-color);
}

:root {
  --text-font: futura-pt, sans-serif;
  --title-font: auster, sans-serif;
}

#landing {
  height: clamp(600px, 75vh, 800px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  #landing {
    height: max-content;
    padding-bottom: 3rem;
  }
}

.landing__logo {
  margin-top: 3rem;
  width: clamp(100px, 70vw, 400px);
}
.landing__logo .logo__ville {
  font-family: var(--title-font);
  font-size: 2.5rem;
  color: var(--white);
  text-align: center;
  margin: 1rem 0;
}

.landing__dates {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  width: clamp(1200px, 70%, 1600px);
}
@media screen and (max-width: 768px) {
  .landing__dates {
    width: 90%;
    flex-direction: column;
  }
}
.landing__dates > div {
  width: clamp(200px, 45%, 600px);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  padding: 0.5rem 0.5rem;
}
@media screen and (max-width: 768px) {
  .landing__dates > div {
    width: 100%;
  }
}
.landing__dates > div > p {
  font-size: 1.5rem;
  font-weight: 700;
}
.landing__dates .date__vss {
  background: var(--gradientvss);
}
.landing__dates .date__vsv {
  background: var(--gradientvsv);
}
.landing__dates .title {
  text-align: center;
  color: var(--white);
  margin: 1rem 0;
  font-size: 2rem;
}

#landingVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -2;
}

#bg-violonist {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(20vw, 50vw, 600px);
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center right;
  z-index: -1;
}

/** NEWS SECTION **/
#section_news .section__title {
  overflow-x: hidden;
}

.news__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
}

.news__item {
  max-width: 400px;
  width: clamp(200px, 23%, 400px);
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: var(--black);
}
@media screen and (max-width: 768px) {
  .news__item {
    max-width: 100%;
    width: 100%;
  }
}
.news__item .title {
  font-size: 1.5rem;
  line-height: normal;
  margin: 2rem 0;
}

.news__img img {
  width: 100%;
  border-radius: 50%;
}

.news__content {
  flex: 1 1 auto;
}
.news__content .title {
  text-align: center;
}

.news__link {
  display: inline-block;
  margin: 2rem auto 0 auto;
  background: var(--accent-color);
  color: var(--white);
  padding: 0;
  width: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
}

/** PROGRAMME SECTION **/
#section_programme .section__title {
  overflow-x: hidden;
}

.program__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: clamp(300px, 70%, 1000px);
  text-align: center;
  margin: 0 auto;
}

.program__item {
  width: 100%;
  padding: 1rem;
  text-align: center;
  margin: 1rem 0;
}

.program_day {
  display: inline-block;
  padding: 1.5rem;
  border-radius: 25px;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0 1.5rem 0;
}
.program_day + .program__list {
  margin-bottom: 3rem;
}

.program__list .artist {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-family: var(--title-font);
  font-weight: 700;
}
.program__list .artist + .artist {
  margin-left: 1rem;
}
.program__list .artist + .artist:before {
  content: "•";
  margin-right: 1rem;
  font-size: 2.5rem;
}

#section_festival .section__title {
  overflow-x: hidden;
}

.festival__container {
  text-align: center;
}

.festival__img {
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
}

.message__container {
  margin-bottom: 3rem;
}

.section.bg-primary .program_day {
  background: var(--secondary-color);
  color: var(--white);
}
.section.bg-primary .program__list .artist {
  color: var(--white);
}
.section.bg-primary .program__list .artist + .artist:before {
  color: var(--third-color);
}

.section.bg-secondary .program_day {
  background: var(--third-color);
  color: var(--white);
}
.section.bg-secondary .program__list .artist {
  color: var(--primary-color);
}
.section.bg-secondary .program__list .artist + .artist:before {
  color: var(--white);
}

.section.bg-third .program_day {
  background: var(--secondary-color);
  color: var(--white);
}
.section.bg-third .program__list .artist {
  color: var(--primary-color);
}
.section.bg-third .program__list .artist + .artist:before {
  color: var(--white);
}

.section.bg-accent .program_day {
  background: var(--third-color);
  color: var(--white);
}
.section.bg-accent .program__list .artist {
  color: var(--secondary-color);
}
.section.bg-accent .program__list .artist + .artist:before {
  color: var(--white);
}

.section.bg-accent-light .program_day {
  background: var(--third-color);
  color: var(--white);
}
.section.bg-accent-light .program__list .artist {
  color: var(--secondary-color);
}
.section.bg-accent-light .program__list .artist + .artist:before {
  color: var(--white);
}

.section.bg-light .program_day {
  background: var(--primary-color);
  color: var(--white);
}
.section.bg-light .program__list .artist {
  color: var(--secondary-color);
}
.section.bg-light .program__list .artist + .artist:before {
  color: var(--white);
}

.section.bg-light-alt .program_day {
  background: var(--third-color);
  color: var(--light-alt);
}
.section.bg-light-alt .program__list .artist {
  color: var(--secondary-color);
}
.section.bg-light-alt .program__list .artist + .artist:before {
  color: var(--light-alt);
}

.section.bg-light-third .program_day {
  background: var(--third-color);
  color: var(--light-third);
}
.section.bg-light-third .program__list .artist {
  color: var(--secondary-color);
}
.section.bg-light-third .program__list .artist + .artist:before {
  color: var(--light-third);
}

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