/*
Theme Name: Sanguine
Theme URI: https://idizbox.com
Author: iDizBox
Author URI: https://idizbox.com
Description: By iDizBox - 2026
Version: 1.00
Text Domain: idbxboostrap1
*/

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
    --white: #FFFFFF;
    --black: #1A1A18;
    --color-bg : #FBFAED;
    --color-1 : #FA7794;
}


html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    min-height: 100vh;
    overflow-x: clip;
    overflow-y: visible !important;
}

body {
    background-color: var(--color-bg);
    color: var(--black);
    font-family: "Space Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    position: relative;
}

.mobile_only {
    display: none;
}

:focus {
    outline: 0!important;
}

a, a:visited, a:focus {
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

.mb_10 { margin-bottom: 10px; }
.mb_15 { margin-bottom: 15px; }
.mb_20 { margin-bottom: 20px; }
.mb_25 { margin-bottom: 25px; }
.mb_30 { margin-bottom: 30px; }
.mb_40 { margin-bottom: 40px; }
.mb_50 { margin-bottom: 50px; }
.mb_60 { margin-bottom: 60px; }
.mt_10 { margin-top: 10px; }
.mt_15 { margin-top: 15px; }
.mt_20 { margin-top: 20px; }
.mt_25 { margin-top: 25px; }
.mt_30 { margin-top: 30px; }
.mt_40 { margin-top: 40px; }
.mt_50 { margin-top: 50px; }
.mt_60 { margin-top: 60px; }

.pb_10 { padding-bottom: 10px; }
.pb_15 { padding-bottom: 15px; }
.pb_20 { padding-bottom: 20px; }
.pb_25 { padding-bottom: 25px; }
.pb_30 { padding-bottom: 30px; }
.pb_40 { padding-bottom: 40px; }
.pb_50 { padding-bottom: 50px; }
.pb_60 { padding-bottom: 60px; }
.pt_10 { padding-top: 10px; }
.pt_15 { padding-top: 15px; }
.pt_20 { padding-top: 20px; }
.pt_25 { padding-top: 25px; }
.pt_30 { padding-top: 30px; }
.pt_40 { padding-top: 40px; }
.pt_50 { padding-top: 50px; }
.pt_60 { padding-top: 60px; }

.pos_rel {
    position: relative;
}

h1, .h1 {
    font-size: 38px;
    font-family: "Space Mono", sans-serif;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0;
}

h2, .h2 {
    font-size: 30px;
    font-weight: bold;
    line-height: normal;
    margin-bottom: 0;
}

.p_div p:last-of-type {
    margin-bottom: 0;
}

.text-justify {
    text-align: justify;
}

.btn, .btn:active, .btn:visited, .btn:focus {
    background-color: var(--black);
    color: var(--white);
    font-size: 16px;
    font-weight: 900;
    padding: 14px 30px;
    border-radius: 100px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    border: none;
    transition: all 0.2s ease;
}

  .btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #f43f5e, #a855f7, #1320BF, #10b981, #f43f5e);
    background-size: 300% 100%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.6s ease;
    animation: aurora 4s linear infinite paused;
  }

    .btn:hover {
        color: var(--white)
    }

  .btn:hover::before {
    opacity: 1;
    animation-play-state: running;
  }

  @keyframes aurora {
    0%   { background-position: 0% 0%; }
    100% { background-position: 300% 0%; }
  }

.btn_white, .btn_white:active, .btn_white:visited, .btn_white:focus {
    background-color: var(--white);
    color: var(--black);
}

.btn_navbar, .btn_navbar:active, .btn_navbar:visited, .btn_navbar:focus {
    text-transform: uppercase;
}

.bg_black {
    background-color: var(--black);
}

.color_white {
    color: var(--white);
}

.page_standard {
    padding-top: 158px;
}

#page_header, #newsletter_header, #instagram_header, .page_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.page_header_left img, .page_header_right img {
    width: 77px;
    height: auto;
}

.page_header_center img {
    height: 120px;
    width: auto;
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.page_header_center {
    position: relative;
}

.page_header_h1_cont {
    position: relative;
    z-index: 1;
    text-align: center;
}

.half_page_container {
    padding: 0 5vw;
}

.half_page_header_center {
    text-align: center;
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.half_page_header_center img {
    height: 120px;
    width: auto;
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.half_page_header_h1_cont {
    position: relative;
    z-index: 1;
    text-align: center;
}



/************************************/
/************************************/
/*             NAVBAR               */
/************************************/
/************************************/

.navbar {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: var(--color-bg);
    border-bottom: 2px solid var(--black);
}

.navbar-expand-lg .navbar-nav {
    gap: 50px;
}

.navbar-logo {
    height: 76px;
    width: auto;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
    color: var(--black);
    text-transform: uppercase;
    font-family: "Space Grotesk", sans-serif;
    font-weight: bold;
    font-size: 16px;
}

.navbar-expand-lg .navbar-nav .nav-link.active, .navbar-expand-lg .navbar-nav .nav-link:hover {
    color: #F40824;
}

.navbar-toggler {
    border: 0;
    padding: 0;
    position: absolute;
    right: 15px;
    top: 28px;
}

.navbar-toggler span {
    display: block;
    background-color: var(--black);
    height: 3px;
    width: 30px;
    margin-top: 5px;
    margin-bottom: 6px;
    position: relative;
    left: 0;
    opacity: 1;
    transition: all 0.35sease-out;
    transform-origin: center left;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler span:nth-child(1) {
    transform: translate(0%, 0%) rotate(0deg);
}

.navbar-toggler span:nth-child(2) {
    opacity: 1;
}

.navbar-toggler span:nth-child(3) {
    transform: translate(0%, 0%) rotate(0deg);
}

.navbar-toggler span:nth-child(1) {
    margin-top: 0.3em;
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
    transform: translate(15%, -33%) rotate(45deg);
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
    transform: translate(15%, 33%) rotate(-45deg);
    margin-top: 7px;
}

#navbar-bg {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    pointer-events: none;
    background: #000000;
    z-index: 300;
    -webkit-transition: opacity 1.5s ease-out .1s,visibility 1.5s ease-out .1s;
    transition: opacity 1.5s ease-out .1s,visibility 1.5s ease-out .1s;
    opacity: 0;
    visibility: hidden;
}

body.navbar-on #navbar-bg {
    visibility: visible;
    opacity: .5;
    pointer-events: auto;
    -webkit-transition-timing-function: cubic-bezier(0.19,1,0.22,1);
    transition-timing-function: cubic-bezier(0.19,1,0.22,1);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    cursor: pointer;
    z-index: 1029;
}

/************************************/
/************************************/
/*             ACCUEIL              */
/************************************/
/************************************/

#page_accueil {
    padding-top: 108px;
}

#top_marquee {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    color: var(--white);
    position: relative;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    line-height: 40px;
/*    background-image: linear-gradient(90deg, #F40824 0%, #1320BF 100%);*/
    background: linear-gradient(90deg, #f43f5e, #a855f7, #1320BF, #10b981, #f43f5e);
    background-size: 300% 100%;
    animation: marqueeGradient 12s linear infinite;
}

@keyframes marqueeGradient {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 300% 50%;
    }
}

.top_marquee_item {
    display: inline-flex;
    padding: 0 6px;
    color: var(--white);
    align-items: center;
    justify-content: center;
    gap: 13px;
}

/************************************/
/************************************/
/*             AGENDA               */
/************************************/
/************************************/

#concerts_header {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 50px;
}

.concerts_tabs {
    display: inline-flex;
    gap: 30px;
    border-bottom: 0;
    margin-bottom: 0;
}

.concerts_tabs .nav-link {
    border: 0;
    background: transparent;
    color: var(--black);
    font-weight: bold;
    padding: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    font-size: 16px;
}

.concerts_tabs .nav-link.active {
    border-bottom-color: var(--black);
    background: transparent;
    color: var(--black);
}

.concerts_list {
    border-top: 1px solid var(--black);
}

.concert_row {
    border-bottom: 1px solid var(--black);
    padding-top: 16px;
    padding-bottom: 16px;
    align-items: center;
}

.concert_date {
    text-align: center;
    line-height: 1;
}

.concert_day {
    display: block;
    font-size: 36px;
    font-weight: bold;
    letter-spacing: -1px;
    font-family: "Space Mono", sans-serif;
}

.concert_month {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-top: 8px;
    color: var(--black);
    opacity: 0.6;
}

.concert_artist {
    font-size: 18px;
    font-weight: bold;
    font-family: "Space Mono", sans-serif;
    text-align: center;
}

.concert_place {
    text-align: center;
}

.concert_city {
    display: block;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

.concert_venue {
    display: block;
    font-size: 16px;
    color: var(--black);
    font-weight: bold;
    opacity: 0.6;
    margin-top: 1px;
}

.concert_link {
    text-align: right;
}

.concert_link a, .concert_link span {
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    color: var(--black);
    white-space: nowrap;
}

.concert_link a:hover {
    text-decoration: underline;
}

.concert_link_soon, .concert_link_soldout, .concert_link_cancelled {
    opacity: 0.5;
}

/************************************/
/************************************/
/*           ARTISTES               */
/************************************/
/************************************/

.artiste_card {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    text-decoration: none;
    color: var(--white);
    transform: translateZ(0);
    background: transparent;
}

.artiste_card_imgcont {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.artiste_card_bgfront {
    position: absolute;
    inset: 10px;
    z-index: 3;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    mix-blend-mode: screen;
    opacity: 0.7;
    border-radius: 10px;
    pointer-events: none;
    transition: opacity 0.22s ease-in-out;
    will-change: opacity;
}

.artiste_card_bgback {
    position: absolute;
    inset: 10px;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    transform-origin: center;
    transition: inset 0.22s ease-in-out;
    will-change: inset;
    pointer-events: none;
}

.artiste_card.bg_green .artiste_card_bgfront,
.artiste_card.bg_green .artiste_card_bgback {
    background-image: url('img/bg_green.jpg');
}

.artiste_card.bg_orange .artiste_card_bgfront,
.artiste_card.bg_orange .artiste_card_bgback {
    background-image: url('img/bg_orange.jpg');
}

.artiste_card.bg_red .artiste_card_bgfront,
.artiste_card.bg_red .artiste_card_bgback {
    background-image: url('img/bg_red.jpg');
}

.artiste_card:hover .artiste_card_bgback {
    inset: -10px;
}

.artiste_card:hover .artiste_card_bgfront {
    opacity: 0;
}

.artiste_card img {
    position: absolute;
    inset: 10px;
    z-index: 2;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    object-fit: cover;
    border-radius: 10px;
}

.artiste_card_content {
    position: absolute;
    inset: 0;
    z-index: 5;
    padding: 20px 10px;
    text-align: center;
    bottom: 10px;
    top: auto;
    left: 10px;
    right: 10px;
    background-image: linear-gradient(180deg, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.50) 100%);
    border-radius: 0 0 10px 10px;
}

.artiste_card_title {
    margin: 0;
    color: var(--white);
    font-size: 20px;
    line-height: 1;
    font-weight: bold;
    font-family: "Space Mono", sans-serif;
}

/************************************/
/************************************/
/*           A PROPOS               */
/************************************/
/************************************/

#page_apropos {
    position: relative;
    padding-top: 108px;
}

.apropos_sticky_col {
    position: relative;
    height: 100%;
}

.apropos_sticky_inner {
    position: sticky;
    top: 108px;
    height: calc(100vh - 108px);
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: var(--black);
    color: var(--white);
    padding: 8vh 0;
}

/* desktop */
@media (min-width: 1200px) {
    #page_apropos .row {
        align-items: stretch;
    }

    #page_apropos .col-xl-6 {
        min-height: 100vh;
    }
}

/* mobile : on désactive le sticky */
@media (max-width: 1199.98px) {
    .apropos_sticky_inner {
        position: relative;
        height: 50vh;
        top: 0;
        padding: 5vh 0;
    }
}

/************************************/
/************************************/
/*             ARTISTE              */
/************************************/
/************************************/

#page_artiste {
    position: relative;
    padding-top: 108px;
}

.artiste_section.bg_black {
    color: var(--white);
}

/*
#page_artiste .row {
    align-items: stretch;
}
*/

#artiste_top {
    height: calc(100vh - 108px);
    min-height: 600px;
}

.artiste_top_inner {
    height: calc(100vh - 108px);
    min-height: 600px;
    padding-top: 60px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
}

.artiste_goback {
    margin-bottom: 30px;
    flex-shrink: 0;
}

.artiste_goback a {
    font-size: 14px;
    color: var(--black);
    text-decoration: none;
    font-weight: bold;
    opacity: 0.6;
}

.artiste_title_wrap {
    margin-bottom: 40px;
    flex-shrink: 0;
}

.artiste_h1 {
    margin: 0;
    font-size: 56px;
    line-height: 1;
    font-weight: bold;
}

.artiste_social {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-shrink: 0;
}

.artiste_social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    border: 1px solid rgb(26 26 24 / 10%);
}

.artiste_bio_wrap {
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
    position: relative;
}

.artiste_bio {
    line-height: 1.6;
    text-align: justify;
}

.artiste_bio p:last-child {
    margin-bottom: 0px;
}

.artiste_bio_wrap.is-loading {
    visibility: hidden;
}

.artiste_readmore {
    padding-top: 20px;
    flex-shrink: 0;
    margin-bottom: 0;
    display: none;
}

.artiste_readmore button {
    background: none;
    border: none;
    padding: 0;
    font-size: 14px;
    font-weight: bold;
    color: var(--black);
    cursor: pointer;
}

.artiste_readmore button:hover {
    opacity: .7;
}

#artiste_top.bio-open {
    height: auto;
}

.artiste_top_inner.bio-open {
    height: auto;
}

.artiste_top_inner.bio-open .artiste_bio_wrap {
    overflow: visible;
    flex: 0 0 auto;
}

.artiste_booking_title {
    font-family: "Space Mono", sans-serif;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.artiste_booking {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--black);
    flex-shrink: 0;
}

.artiste_booking p:last-child {
    margin-bottom: 0;
}

.artiste_sticky_col {
    position: relative;
    height: 100%;
}

.artiste_sticky_inner {
    position: sticky;
    top: 108px;
    height: calc(100vh - 108px);
}

.artiste_photo_frame {
    position: relative;
    width: 100%;
    height: calc(100vh - 108px);
    overflow: hidden;
}

.artiste_photo {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    padding: 10px;
}

.artiste_photo_back {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0;
    transform-origin: center;
    transition: inset 0.22s ease-in-out;
    will-change: inset;
    pointer-events: none;
    background-image: url('img/bg_green.jpg');
}

.artiste_photo_back_1 {
    background-image: url('img/bg_green.jpg');
}

.artiste_photo_back_2 {
    background-image: url('img/bg_orange.jpg');
}

.artiste_photo_back_3 {
    background-image: url('img/bg_red.jpg');
}

.artiste_photo_swiper {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.artiste_photo_swiper .swiper-wrapper,
.artiste_photo_swiper .swiper-slide {
    height: 100%;
}

.artiste_photo_swiper .swiper-slide {
    overflow: hidden;
}

.artiste_photo_swiper .artiste_photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    padding: 10px;
}

.artiste_photo_nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.artiste_photo_nav:hover {
    opacity: 1;
}

.artiste_photo_prev {
    left: 20px;
}

.artiste_photo_next {
    right: 20px;
}

.artiste_photo_nav span {
    line-height: 1;
}

.artiste_photo_pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px !important;
    z-index: 20;
}

.artiste_photo_pagination .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.artiste_photo_pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

/* ACTUALITES */

.artiste_card_post {
    position: relative;
    display: block;
    width: 100%;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: var(--black);
    padding: 10px;
}

.artiste_card_postin {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 0;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: var(--black);
    border: 2px solid var(--white);
    z-index: 1;
    transition: border 0.22s ease-in-out;
    will-change: border;
}

.artiste_card_post_img {
    position: relative;
    flex: 0 0 170px;
    width: 170px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.artiste_card_post_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.artiste_card_post_content {
    flex: 1 1 auto;
    min-width: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: var(--white);
}

.artiste_card_post_date {
    font-size: 10px;
    line-height: 1;
    font-weight: bold;
    text-transform: uppercase;
    opacity: .6;
    margin-bottom: 8px;
}

.artiste_card_post_title {
    font-size: 17px;
    line-height: 1;
    font-weight: bold;
    font-family: "Space Mono", sans-serif;
    color: var(--black);
    margin-bottom: 10px;
}

.artiste_card_post_resume {
    font-size: 14px;
    color: var(--black);
    opacity: 0.6;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.artiste_card_readmore {
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    color: var(--black);
}

.bg_black .half_page_header_h1_cont {
    color: var(--white);
}

.artiste_card_post_bg {
    position: absolute;
    inset: 10px;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    transform-origin: center;
    transition: inset 0.22s ease-in-out;
    will-change: inset;
    pointer-events: none;
}

.artiste_card_post_bg1, .artiste_card_post_bg4, .artiste_card_post_bg7 {
    background-image: url('img/bg_green.jpg');
}

.artiste_card_post_bg2, .artiste_card_post_bg5, .artiste_card_post_bg8 {
    background-image: url('img/bg_orange.jpg');
}

.artiste_card_post_bg3, .artiste_card_post_bg6 {
    background-image: url('img/bg_red.jpg');
}

.artiste_card_post:hover .artiste_card_post_bg {
    inset: -10px;
}

.artiste_card_post:hover .artiste_card_postin {
    border: 2px solid transparent;
}

/* VIDEOS */

.artiste_videos_slider_wrap {
    position: relative;
    overflow: hidden;
    padding: 0 0 10px;
}

.artiste_videos_swiper .swiper-wrapper,
.artiste_videos_swiper .swiper-slide,
.artiste_video_card,
.artiste_video_player {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.artiste_video_card {
    display: block;
    width: 100%;
}

.artiste_video_player {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.artiste_video_thumb {
    position: relative;
    cursor: pointer;
}

.artiste_video_thumb img,
.artiste_video_iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.artiste_video_iframe {
    border: 0;
    background: transparent;
}

.artiste_video_play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.artiste_video_play svg {
    width: 68px;
    height: 48px;
    display: block;
}

.artiste_videos_pagination {
    position: relative !important;
    bottom: auto !important;
    margin-top: 5px;
    text-align: center;
}

.artiste_videos_pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 7px !important;
    background: var(--black);
    opacity: 0.4;
}

.bg_black .artiste_videos_pagination .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.4;
}

.artiste_videos_pagination .swiper-pagination-bullet-active {
    background: var(--black);
    opacity: 1;
}

.bg_black .artiste_videos_pagination .swiper-pagination-bullet-active {
    background: var(--white);
    opacity: 1;
}

.artiste_videos_nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: var(--white);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.5;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.artiste_videos_nav:hover {
    opacity: 1;
}

.artiste_videos_prev {
    left: 15px;
}

.artiste_videos_next {
    right: 15px;
}

@media (min-width: 768px) {
    .artiste_videos_swiper .swiper-slide {
        width: 58%;
    }
}

@media (min-width: 1200px) {

    .artiste_videos_swiper .swiper-slide {
        width: 64%;
    }
}

/* =====================
   DESKTOP
===================== */

/*
@media (min-width: 1200px) {
    #page_artiste .col-xl-6 {
        min-height: 100vh;
    }
}
*/

/* =====================
   MOBILE
===================== */

@media (max-width: 1199.98px) {
    #artiste_top,
    .artiste_top_inner {
        height: auto !important;
        min-height: auto;
    }

    .artiste_bio_wrap {
        overflow: visible !important;
        flex: 0 0 auto !important;
    }

    .artiste_readmore {
        display: none !important;
    }

    .artiste_booking {
        margin-top: 30px;
        max-width: 100%;
    }

    .artiste_sticky_inner {
        position: relative;
        height: auto;
        top: auto;
    }

    .artiste_photo_frame {
        height: auto;
        min-height: auto;
    }

    .artiste_photo {
        aspect-ratio: 4 / 3;
        height: auto;
    }
}

/* CONCERTS */

.bg_black .concert_month, .bg_black .concert_venue, .bg_black .concert_link a, .bg_black .concert_link span {
    color: var(--white);
}

.bg_black .concert_row {
    border-bottom: 1px solid var(--white);
}

.bg_black .concerts_list {
    border-top: 1px solid var(--white);
}

.bg_black .concerts_tabs .nav-link {
    color: var(--white);
}

.bg_black .concerts_tabs .nav-link.active {
    border-bottom-color: var(--white);
    background: transparent;
    color: var(--white);
}

/* ALBUMS */

.artiste_album_item {
    text-align: center;
    position: relative;
}

.artiste_album_cover_link,
.artiste_album_title a {
    text-decoration: none;
    color: inherit;
    position: relative;
}

.artiste_album_cover_wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.artiste_album_cover_link:hover .artiste_album_cover_wrap {
    transform: translateY(-4px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.18);
}

.artiste_album_cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.artiste_album_cover_link svg {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
    transition: transform 0.25s ease;
}

.artiste_album_cover_link:hover svg {
    transform: translateY(-4px);
}

.artiste_album_meta {
    margin-top: 10px;
}

.artiste_album_date {
    margin-bottom: 4px;
    font-size: 10px;
    font-weight: bold;
    line-height: 1.2;
    text-transform: uppercase;
    opacity: 0.8;
}

.artiste_album_title {
    font-size: 18px;
    line-height: 1;
    font-weight: bold;
    font-family: "Space Mono", sans-serif;
}

/************************************/
/************************************/
/*           ACTUALITES             */
/************************************/
/************************************/

.artiste_card_post_actupage .artiste_card_postin {
    border: 2px solid var(--black);
}

.pagination_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pagination_wrap .page-numbers {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    text-decoration: none;
    color: var(--black);
    background: transparent;
    border: 2px solid var(--black);
    font-weight: bold;
    font-size: 16px;
    transition: all 0.2s ease;
}

.pagination_wrap .page-numbers:hover, .pagination_wrap .page-numbers.current {
    background: var(--black);
    color: var(--white);
}

#sb_instagram .sbi_photo_wrap {
    border-radius: 20px;
    overflow: hidden;
}

/************************************/
/************************************/
/*             ACTU SOLO            */
/************************************/
/************************************/

#page_actualite {
    position: relative;
    padding-top: 108px;
}

.actu_top {
    padding: 120px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('img/bg_green.jpg');
    color: var(--white);
}

.actu_top2 {
    background-image: url('img/bg_orange.jpg');
}

.actu_top3 {
    background-image: url('img/bg_red.jpg');
}

.actu_top_top a {
    color: var(--white);
    font-weight: bold;
}

.actu_top_titre {
    margin-top: 30px;
}

.actu_top_date {
    font-size: 12px;
    line-height: 1;
    font-weight: bold;
    text-transform: uppercase;
    opacity: .6;
}

.border_r20 {
    border-radius: 20px;
}

/************************************/
/************************************/
/*           PRESTATIONS            */
/************************************/
/************************************/

.prestation_card_a {
    color: var(--black);
    text-decoration: none;
    position: relative;
}

.prestation_card {
    padding: 10px;
    border-radius: 20px;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('img/bg_green.jpg');
    background-image: none!important;
}

.prestation_card_inner {
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: 10px;
    padding: 20px 30px;
    height: 100%;
}

.prestation_card_title {
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 1;
    font-weight: bold;
    font-family: 'Space Mono', sans-serif;
}

.prestation_card_desc {
    font-size: 14px;
    line-height: 1.55;
}

.prestation_card_desc p:last-child {
    margin-bottom: 0;
}

.prestation_card_refs {
    margin-top: 20px;
}

.prestation_card_refs_title {
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: bold;
}

.prestation_card_refs_list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.prestation_ref_badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border: 1px solid var(--black);
    border-radius: 999px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    font-family: 'Space Mono', sans-serif;
    opacity: 0.5;
}

.card_style_1 {
    background-image: url('img/bg_green.jpg');
}

.card_style_2 {
    background-image: url('img/bg_orange.jpg');
}

.card_style_3 {
    background-image: url('img/bg_red.jpg');
}

.card_style_4 {
    background-image: url('img/bg_green.jpg');
}

.prestation_card_bg {
    position: absolute;
    inset: 10px;
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    transform-origin: center;
    transition: inset 0.22s ease-in-out;
    will-change: inset;
    pointer-events: none;
}

.prestation_card_bg_card_style_1, .prestation_card_bg_card_style_4 {
    background-image: url('img/bg_green.jpg');
}

.prestation_card_bg_card_style_2 {
    background-image: url('img/bg_orange.jpg');
}

.prestation_card_bg_card_style_3 {
    background-image: url('img/bg_red.jpg');
}

.prestation_card_a:hover .prestation_card_bg {
    inset: 0px;
}

/************************************/
/************************************/
/*             CONTACT              */
/************************************/
/************************************/

#page_contact {
    position: relative;
    padding-top: 108px;
}

h2.contact_h2 {
    font-size: 38px;
    font-family: "Space Mono", sans-serif;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0;
}

.contact_card_a {
    position: relative;
    display: block;
    width: 100%;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: var(--black);
    padding: 10px;
}

.contact_card {
    position: relative;
    width: 100%;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: var(--black);
    border: 2px solid var(--black);
    z-index: 1;
    transition: border 0.22s ease-in-out;
    will-change: border;
}

.contact_card_post_bg {
    position: absolute;
    inset: 10px;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    transform-origin: center;
    transition: inset 0.22s ease-in-out;
    will-change: inset;
    pointer-events: none;
}

.contact_cardin {
    background-color: var(--white);
    padding: 15px;
}

.contact_card_post_bg1, .contact_card_post_bg4, .contact_card_post_bg7 {
    background-image: url('img/bg_green.jpg');
}

.contact_card_post_bg2, .contact_card_post_bg5, .contact_card_post_bg8 {
    background-image: url('img/bg_orange.jpg');
}

.contact_card_post_bg3, .contact_card_post_bg6, .contact_card_post_bg9 {
    background-image: url('img/bg_red.jpg');
}

.contact_card_a:hover .contact_card_post_bg {
    inset: -10px;
}

.contact_card_a:hover .contact_card {
    border: 2px solid transparent;
}

h3.contact_card_name {
    font-family: "Space Mono", sans-serif;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}

.contact_card_poste {
    font-family: "Space Mono", sans-serif;
    font-size: 14px;
    margin-bottom: 15px;
}

.contact_card_adresse, .contact_card_tel, .contact_card_email {
    opacity: 0.6;
}

.contact_infos_comp {
    margin-top: 30px;
    text-align: center;
}

.contact_sticky_col {
    position: relative;
    min-height: 100%;
}

.contact_sticky_inner {
    position: sticky;
    top: 108px;
    min-height: calc(100vh - 108px);
    width: 100%;
    background: var(--black);
    color: var(--white);
    padding: 60px 5vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.inputbb {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid #979797;
    color: var(--white);
    border-radius: 10px;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 9px 20px;
    margin-bottom: 15px;
}

textarea#contact_message {
    border-radius: 10px;
    resize: none;
}

select.inputbb {
    background-repeat:no-repeat;
    background-position:97% 50%;
    background-size:13px;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23FFFFFF' d='M481.4,137.3c-6.4-6.4-16.7-6.4-23,0L256,340.1L53.2,137.3c-6.4-6.4-16.7-6.4-23,0c-6.4,6.4-6.4,16.7,0,23 l213.9,213.9c3.2,3.2,7.1,4.8,11.5,4.8c4,0,8.3-1.6,11.5-4.8L481,160.3C487.8,154,487.8,143.7,481.4,137.3L481.4,137.3z'/%3E%3C/svg%3E");
    -webkit-appearance:none;
    -moz-appearance:none;
    -ms-appearance:none;
    -o-appearance:none;
    appearance:none;
    padding-right:25px
}

.label_block {
    display: block;
    color: var(--white);
    font-family: "Space Mono", sans-serif;
    font-weight: bold;
    font-size: 14px;
}

input.pretty_checkbox[type="checkbox"] {
    opacity: 0;
    position: absolute;
}

input.pretty_checkbox[type="checkbox"] + label {
    display: block;
    position: relative;
    padding-left: 25px;
    color: inherit;
    font-weight: 400;
    line-height: inherit;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    text-align: left;
    margin-bottom: 15px;
    font-size: 14px;
}

input.pretty_checkbox[type="checkbox"] + label:before {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    border: 1px solid var(--white);
    position: absolute;
    left: 0;
    top: 4px;
    opacity: 1;
    border-radius: 0px;
    -webkit-transition: all .12s, border-color .08s;
    transition: all .12s, border-color .08s;
}

input.pretty_checkbox[type="checkbox"]:checked + label:before {
    width: 10px;
    top: -5px;
    left: 5px;
    border-radius: 0;
    opacity: 1;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.humans_sanguine {
    display: none;
}

.contact_merci {
    display: none; 
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}

.contact_merci_flower {
    width: 100%;
    height: auto;
    max-width: 200px;
    margin: auto;
    margin-bottom: 20px;
}

.artiste_booking a {
    color: var(--black);
}

/************************************/
/************************************/
/*             FOOTER               */
/************************************/
/************************************/

footer {
    background-color: var(--black);
    color: var(--white);
    padding: 50px 0;
    border-top: 1px solid #979797;
    font-size: 12px;
}

footer a {
    color: var(--white);
}

#newsletter {
    border-top: 1px solid #979797;
}

#newsletter_merci {
    color: var(--white);
    font-size: 16px;
    display: none;
}

.newsletter_intro {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 50px;
    font-size: 16px;
}

.footer_social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 50px;
    padding-bottom: 60px;
}

.footer_social a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(180deg, #FF65B7 0%, #6566FF 100%);
    border-radius: 100px;
}

.newsletter_form_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.newsletter_input_wrap {
    flex: 1 1 auto;
    max-width: 520px;
}

.newsletter_input {
    height: 54px;
    border-radius: 999px;
    background: rgba(255,255,255,0.07);
    border: 1px solid #979797;
    color: var(--white);
    padding: 0 26px;
    font-size: 16px;
    box-shadow: none !important;
}

.newsletter_input::placeholder {
    color: rgba(255,255,255,0.55);
}

.newsletter_input:focus {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.65);
    color: var(--white);
}

.newsletter_btn {
    min-width: 160px;
}

.newsletter_h2 {
    font-size: 38px;
}

/************************************/
/************************************/
/*             PRE-HOME             */
/************************************/
/************************************/

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

html.intro-loader-active,
body.intro-loader-active,
html.has-prehome,
body.has-prehome {
    overflow: hidden;
    height: 100%;
}

html {
    scrollbar-gutter: stable;
}

#site_intro_loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
}

.intro_loader_panel {
    position: relative;
    flex: 0 0 50%;
    width: 50%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.5s ease;
    will-change: transform;
}

.intro_loader_left {
    background: var(--black);
}

.intro_loader_right {
    background: var(--color-bg);
}

.intro_loader_inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.intro_loader_inner_left {
    justify-content: center;
    padding: 40px;
}

.intro_loader_inner_right {
    justify-content: flex-start;
    padding: 6vw;
}

.intro_loader_visual {
    max-width: min(38vw, 520px);
    max-height: 72vh;
    width: auto;
    height: auto;
    display: block;
    animation: float 3.5s ease-in-out infinite;
}

.intro_loader_text {
    font-family: 'Space Mono', sans-serif;
    color: var(--black);
    line-height: 1;
    font-weight: bold;
    font-size: 56px;
}

@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.intro_loader_text_bottom {
/*
    background: linear-gradient(90deg, #ff1a2d 0%, #a3168a 45%, #2437d6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
*/
    background: linear-gradient(90deg, #ff1a2d 0%, #a3168a 25%, #2437d6 50%, #a3168a 75%, #ff1a2d 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
}

#site_intro_loader.is-opening .intro_loader_left {
    transform: translateX(-100%);
}

#site_intro_loader.is-opening .intro_loader_right {
    transform: translateX(100%);
}

#site_intro_loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

@media (max-width: 991.98px) {
    #site_intro_loader {
        flex-direction: column;
    }

    .intro_loader_panel {
        flex: 0 0 50%;
        width: 100%;
        height: 50%;
    }

    .intro_loader_inner_left,
    .intro_loader_inner_right {
        justify-content: center;
        padding: 32px 24px;
        text-align: center;
    }

    .intro_loader_visual {
        max-width: min(68vw, 340px);
        max-height: 34vh;
    }

    .intro_loader_text {
        font-size: clamp(34px, 8vw, 58px);
    }

    #site_intro_loader.is-opening .intro_loader_left {
        transform: translateY(-100%);
    }

    #site_intro_loader.is-opening .intro_loader_right {
        transform: translateY(100%);
    }
}

/************************************/
/************************************/
/*          MEDIA QUERIES           */
/************************************/
/************************************/

@media (min-width: 1270px) and (max-width: 1350px) {

    
    
}

@media (min-width: 993px) and (max-width: 1269px) {
    
    .navbar-expand-lg .navbar-nav {
        gap: 20px;
    }
    
}

@media (max-width: 992px) {
    
    .navbar>.container {
        position: relative;
    }
    
    .navbar-expand-lg .navbar-nav {
        gap: 30px;
        padding-top: 30px;
    }
    
    .page_header_left, .page_header_right {
        display: none;
    }
    
    #page_header, #newsletter_header, #instagram_header, .page_header {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        min-height: 120px;
    }
    
    .concert_link {
        text-align: center;
    }
    
    .concert_artist {
        margin-bottom: 10px;
        margin-top: 10px;
    }
    
    h1, .h1, .newsletter_h2, h2.contact_h2 {
        font-size: 26px;
    }

    .newsletter_form_inner {
        flex-direction: column;
    }
    
    .newsletter_input_wrap {
        flex: 1 1 auto;
        width: 100%;
    }
    
    .artiste_h1 {
        font-size: 28px;
    }
    
    .artiste_card_postin {
        flex-direction: column;
    }
    
    .artiste_card_post_img {
        flex: 0;
        width: auto;
    }
    
    .artiste_videos_swiper .swiper-slide {
        width: 90%;
    }
    
}