body {
    background: linear-gradient(10deg, #1D1240 0%, #2D1E5A 43%, #0F0E0F 100%);
    overflow-x: hidden;
}

main {
    background-image: url("images/hero-bg.svg");
    /* background-repeat: no-repeat; */
    background-size: contain;
    width: 90%;
    margin: auto;
    /* overflow-x: hidden; */
    padding-top: 20px;
}

main > section {
    width: 95%;
    margin: auto;
    padding-top: 25px;
    padding-bottom: 25px;
    text-align: center;
    scroll-margin-top: 100px;
}

p { 
    line-height: 24px;
}

h1 {
    display: block;
    position: relative;
    font-family: 'Righteous';
    font-style: normal;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 65px;
    line-height: 50px;
    padding: 20px 0 30px;
    letter-spacing: -0.02em;
    color: var(--ng-white);
    margin: 60px 0 60px 0;
}

h1::after {
    display: block;
    position: absolute;
    width: 100%;
    max-width: 400px;
    height: 4px;
    content: '';
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: url(images/prog/sep.png) center no-repeat;
    background-size: contain;
}

h2 {
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 200;
    font-size: 27px;
    line-height: 30px;
    padding: 10px 0;
    letter-spacing: -0.02em;
    color: var(--ng-white);
    margin: 0;
}

h3 {
    font-family: 'Righteous';
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    line-height: 35px;
    letter-spacing: -0.02em;
    color: var(--ng-white);
    margin: 0;
}

h4 {
    font-family: 'Josefin Slab';
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
    letter-spacing: -0.02em;
    color: #D7CAFF;
    margin: 0;
}

.primary-button-gf-2024 {
    padding: 16px 32px;
    display: inline-block;

    background: white;
    box-shadow: 0px 1px 2px rgba(9, 44, 16, 0.63), inset 0px -3px 4px rgba(0, 0, 0, 0.15);
    border-radius: 93px;
    color: #201F23;

    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    margin: 8px;

    transition: 400ms ease;
}

.primary-button-gf-2024:hover {
    text-decoration: none;
    box-shadow: 0px 1px 2px rgba(9, 44, 16, 0.63), inset 0px -6px 4px rgba(0, 0, 0, 0.5);
}

.primary-button-gf-2024:active {
    text-decoration: none;
    box-shadow: 0px 1px 2px rgba(9, 44, 16, 0.63), inset 0px 6px 4px rgba(0, 0, 0, 0.5);
}

.secondary-button-gf-2024 {
    padding: 16px 32px;
    display: inline-block;

    background: rgba(0, 0, 0, 0.3);
    box-shadow: inset 0px 2px 4px rgba(255, 255, 255, 0.15);
    border-radius: 93px;

    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    color: white;

    transition: 400ms ease;
}

.secondary-button-gf-2024 img {
    height:22px;
    vertical-align: middle;
}

.secondary-button-gf-2024:hover {
    text-decoration: none;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: inset 0px 4px 8px rgba(255, 255, 255, 0.5);
}

.secondary-button-gf-2024:active {
    text-decoration: none;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.3);
}

#hero > * {
    margin-top: 10px;
    margin-bottom: 10px;
}

#hero-image {
    display: inline-block;
    position: relative;
    width: 90%;
    max-width: 592px;
}

#hero-image img {
    width: 100%;
    transition: all 0s ease;
}

#hero-image img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

#gf-logo {
    width: 440px;
    max-width: 70vw;
}

#hero-title {
    font-weight: 400;
    font-size: 71px;
    line-height: 77px;
    letter-spacing: -0.02em;
}

#hero-subtitle {
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
}


#billetterie > hgroup {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    padding-bottom: 24px;
}

#prog {
    max-width: 1400px;
}

.casting {
    max-width: 800px;
    margin: 0 auto;
}

.casting span {
    display: inline-block;
    font-family: "Figtree", sans-serif;
    font-weight: 900;
    /* font-style: italic;   */
    font-size: 32px;
    /* white-space: nowrap; */
    padding: 0 6px;
    text-transform: uppercase;
}

.casting span:not(:first-child)::before {
    content: '\25A0';
    color: #82368c;
    padding-right: 8px;
}

@media (max-width:700px)  {
    
    h1 {
        font-size: 50px;
        line-height: 50px;
        margin: 30px 0 30px 0;
    }

    .casting span {
        width: 100%;
        font-size: 28px;
        padding: 0;
    }
    .casting span:first-child::before {
        content: '\25A0';
        color: #82368c;
        padding-right: 8px;
    }
}

@media (max-width:700px)  {
    .hide {
        display: none;
    }
}

/*///////////////////// BILLETS ///////////////////////*/

#billetterie {
    --transition : all .5s ease;
}

#billetterie .billets {
    display: flex;
    flex-wrap: nowrap;
    gap: 50px;
    justify-content: center;    
    perspective: 1500px;
}

#billetterie .billet {
    position: relative;
    background: #f00;
    width: 40%;
    max-width: 500px;
    aspect-ratio: 2 / 1;
    margin-top: 120px;
    border-radius: 5px;
    transition: var(--transition);

    border: 1px solid #624c9a;
    background-color: rgba(29, 18, 64, 0.8);
    
}

#billetterie .billet:hover {
    box-shadow: 0 0px 40px #624c9a;
    filter: brightness(1.2);
}

#billetterie .billet:nth-child(1):hover {
    transform: rotateX(5deg) rotateY(12deg) rotateZ(-5deg);
}

#billetterie .billet:nth-child(2):hover {
    transform: rotateX(5deg) rotateY(-12deg) rotateZ(5deg);
}

@media (max-width:700px)  {
    #billetterie .billets {
        flex-wrap: wrap;  
    }
    
    #billetterie .billet {
        width: 100%;
        max-width: 800px;
        margin-top: 30px;
    }
    
}

#billetterie .billet > * {
    position: absolute;
}

#billetterie .billet > div{
    pointer-events: none;
}

#billetterie .billet a {
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    position: relative;
    overflow: hidden;
}

#billetterie .billet a::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

#billetterie .billet:nth-child(1) a::before {
    left: 130%;
    background: linear-gradient(65deg,rgba(233, 207, 255, 0) 21%, rgba(255, 255, 255, 0.1) 26%, rgba(255, 255, 255, 0) 76%) no-repeat;
}
#billetterie .billet:nth-child(2) a::before {
    right: 80%;
    background: linear-gradient(125deg,rgba(233, 207, 255, 0) 31%, rgba(255, 255, 255, 0.1) 36%, rgba(255, 255, 255, 0) 86%) no-repeat;
}

#billetterie .billet:nth-child(1) a:hover::before { left: 30%; }
#billetterie .billet:nth-child(2) a:hover::before { right: -20%; }

#billetterie .billet .bb_img {
    width: 100%;
    height: 200%;
    left: 0;
    bottom: 0;
    overflow: hidden;
    border-radius: 5px;
    z-index: 10;
}

#billetterie .billet img {
    width: 100%;
    display: block;
    transition: var(--transition);
}

#billetterie .billet:hover img {
    transform: scale(1.02);
}

#billetterie .billet:nth-child(1) img { transform-origin: 0% 75%; }
#billetterie .billet:nth-child(2) img { transform-origin: 100% 75%; }


/*///////////////////// PROG ///////////////////////*/


.programme_column {
    width: 100%;
    margin-top: 20px;
}

.programme_column .prog_date {
    display: inline-block;
    background: #fff;
    color: #2c2e71;
    white-space: nowrap;
    font-size: 26px;
    font-family: "Figtree";
    text-transform: uppercase;
    font-weight: 600;
    padding: 0px 30px;
    vertical-align: middle;
    border-radius: 10px;
    box-shadow: 0 5px 10px #121032;
    border-left: 5px solid #604fb5;
    border-right: 5px solid #604fb5;
    background: linear-gradient(to right, #bebac7, #fff, #bebac7);
    margin-bottom: 15px;
}

.programme_column .prog_date span {
    display: inline-block;
    transform: translateY(-4px);
}

.programme_column .prog_date strong {
    display: inline-block;
    font-size: 40px;
    font-weight: 900;
}

.programme_column .prog_hour {
    display: block;
    position: absolute;
    top: 0px;
    left: 50%;
    color: #fff;
    padding: 0px 30px;
    z-index: 20;
    white-space: nowrap;

    font-family: 'Righteous';
    font-style: normal;
    font-weight: 400;  
    font-size: 28px;
    line-height: 32px;
    color: var(--ng-white);
    padding: 3px 18px 5px 18px;

    transform: translateX(-50%) translateY(-50%);

    text-shadow: 0 3px 0px #3b2b73;

    border-radius: 10px;
    box-shadow: 0 5px 0px #3b2b73;
    background: linear-gradient(to right, #685ca8, #9181bc, #685ca8);
}

.programme_column .prog_hour_bloc {
    position: relative;
    display: inline-block;
    transform: none;
    left: inherit;
    top: inherit;
}

#programme-wrapper {
    margin: auto;
    display: grid;
    flex-wrap: wrap;
    column-gap: 70px;
    grid-template-columns: 1fr;
    padding-top: 0px;
    justify-items: center;
    max-width: 1800px;
}

@media (min-width:700px)  {
    #programme-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width:1400px)  {
    #programme-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}

#jdr,
#programme {
    width: 100%;  
    --prog_main_color: #fff;
    --prog_event_color: #82368c;
    --prog_event_gradient: linear-gradient(90deg, #CB332B 16.9%, #E46E56 17%, #E46E56 33.9%, #F6D791 34%, #F6D791 49.9%, #4BAD49 50%, #4BAD49 66.5%, #476BA7 66.9%, #476BA7 83.9%, #693983 84%);
    --prog_table_color: #a792e6;
    --prog_jdr_color: #4BAD49;
}

.programme_content {
    position: relative;
    margin: 0 auto;
    width: 100%;
    background-color: rgba(29, 18, 64, 0.8);  
    border-radius: 30px;
    /* padding: 20px; */
    padding-top: 0px;
    padding-bottom: 4px;
    max-width: 400px;
    box-shadow: 0 0 15px #624c9a;
    /* border: 1px solid #624c9a; */
    margin-bottom: 20px;
}

.programme_content.prg_event,
.programme_content.prg_ouverture,
.programme_content.prg_table,
.programme_content.prg_atelier,
.programme_content.prg_jdr {
    margin-top: 40px;
    padding-top: 15px;
}

.programme_content .prog_border {
    position: absolute;
    z-index: 0;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    background: #fff;
    width: 100%;
    height: 32px;
    bottom: 0;
}

.programme_content.prg_event .prog_border {
    background: var(--prog_event_gradient);
}

.programme_content.prg_atelier .prog_border,
.programme_content.prg_table .prog_border {
    background: var(--prog_table_color);
}
.programme_content.prg_jdr .prog_border {
    background: var(--prog_jdr_color);
}
    
.programme_content .prog_wrapper {
    z-index: 5;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    /* margin-bottom: 4px; */
    background-color: rgba(29, 18, 64, 1);
}

.programme_content.prg_atelier .prog_wrapper,
.programme_content.prg_ouverture .prog_wrapper,
.programme_content.prg_jdr .prog_wrapper,
.programme_content.prg_table .prog_wrapper {
    padding-bottom: 10px;
}

.programme_content .prog_title {
    display: block;
    width: 100%;
    margin: 20px 0 10px 0;
    font-family: 'Righteous';
    font-style: normal;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 30px;
    line-height: 30px;
    position: relative;
    padding: 0 10px;
    box-sizing: border-box;
    padding-bottom: 15px;
}

.programme_content.prg_table .prog_title::before,
.programme_content .prog_title.table::before {
    content:'Table ronde';
    display: block;
    width: 100%;
    font-family: 'Josefin Slab';
    font-style: normal;
    font-weight: 700;
    font-size: 19px;
    line-height: 23px;
    letter-spacing: -0.02em;
    color: #D7CAFF;
    margin: 0;
}

.programme_content .prog_title::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    content: '';
    bottom: 0;
    left: 0;
    background: url('images/prog/sep.png') center no-repeat;
    background-size: contain;
}

.programme_content.prg_ouverture .prog_title,
.programme_content.prg_atelier .prog_title,
.programme_content.prg_table .prog_title,
.programme_content.prg_jdr .prog_title,
.programme_content.prg_activities .prog_title {
    font-size: 22px;
    line-height: 24px;
    padding-bottom: 0px;
}

.programme_content.prg_table .prog_title {
    padding-bottom: 0px;
}

.programme_content.prg_ouverture .prog_title::after,
.programme_content.prg_table .prog_title::after,
.programme_content.prg_atelier .prog_title::after,
.programme_content.prg_jdr .prog_title::after,
.programme_content.prg_activities .prog_title::after {
    display: none;
}

.programme_content.prg_ouverture .prog_title {
    background: url('images/prog/icons.png') center no-repeat;
    background-size: contain;
}

.programme_content .prog_desc {
    font-size: 15px;
    line-height: 21px;
    margin: 10px 0;
    padding: 0 10px;
}

.programme_content .prog_cast {
    font-size: 14px;
    line-height: 20px;
    margin: 10px 0;
}

.programme_content span.cast,
.programme_content .prog_cast span {
    font-family: "Figtree", sans-serif;
    font-weight: 900;
    display: inline-block;
    white-space: nowrap;
    text-transform: uppercase;
    margin: 0 2px;
}

/* .programme_content span.cast::before, */
.programme_content .prog_cast span::before {
    content: '\25A0';
    color: var(--prog_event_color);
    padding-right: 4px; 
}

.programme_content img {
    width: 100%;
    display: block;
    border-radius: 30px;
}

#prog_sort {
    margin: 20px 0 20px 0;
}

@media (max-width: 961px) {
    .programme_column .prog_date {
        position: sticky;
        top: 10px;
        z-index: 200;
    }
    #prog_sort {
        display: none;
        position: sticky;
        top: 0px;
        z-index: 150;
        background: #181326;
        padding: 5px 0;
        border-radius: 10px;
        border: 1px solid #624c9a;
        box-shadow: 0 10px 10px #00000080;
    }
}

#prog_sort button {
    display: inline-block;
    padding: 6px 12px;
    margin: 4px;
    background: transparent;
    box-shadow: 0px 1px 2px rgba(9, 44, 16, 0.63), inset 0px -3px 4px rgba(0, 0, 0, 0.15);
    border-radius: 93px;
    border: 1px solid #ffffff44;
    color: #fff;

    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    transition: .2s ease;
    cursor: pointer;
}

#prog_sort button.btn_all:hover {background: #ffffff66;}
#prog_sort button.btn_event:hover {background: var(--prog_event_color);}
#prog_sort button.btn_tables:hover {background: var(--prog_table_color)}
#prog_sort button.btn_jdr:hover {background: var(--prog_jdr_color) }


#prog_sort button.btn_all.selected {background: #ffffffff; color:rgba(29, 18, 64, 1); box-shadow: 0 0 10px #fff;}
#prog_sort button.btn_event.selected {background: var(--prog_event_color); box-shadow: 0 0 10px var(--prog_event_color) ;}
#prog_sort button.btn_tables.selected {background: var(--prog_table_color); box-shadow: 0 0 10px var(--prog_table_color);}
#prog_sort button.btn_jdr.selected {background: var(--prog_jdr_color); box-shadow: 0 0 10px var(--prog_jdr_color);}

#prog_plus {
    margin: 0 auto;
    position: relative;
    display: inline-block;
    margin-bottom: 0px;
    background-color: rgba(29, 18, 64, 0.8);
    border-radius: 100px;
    font-size: 18px;
    padding: 20px 30px;
    font-weight: 600;
    padding-left: 70px;
    text-align: left;
    overflow: hidden;
    max-width: 100%;
    box-shadow: 0 0 15px #624c9a;
    border: 3px solid #624c9a;
    position: relative;
    margin-bottom: 20px;
}

#prog_plus::before {
    position: absolute;  
    display: block;
    content: '+';
    top: 50%;
    left: 10px;
    font-size: 76px;
    font-family: "Figtree";
    font-style: normal;
    font-weight: 800;
    transform: translateY(-54%);
}

#programme-wrapper h2 {
    font-weight: 700;
    font-size: 39.06px;
    line-height: 46px;
}

#programme-wrapper h3 {
    font-weight: 600;
    font-size: 20px;
}

.programme-bubble {
    width: 190px;
    height: 190px;
    border-radius: 100%;
    object-fit: cover;
    filter: drop-shadow(0px 0px 10px rgba(230, 194, 253, 0.3));
    transition: opacity 0.5s ease-in-out;
}


#jdr-wrapper {
    margin: auto;
    display: grid;
    flex-wrap: wrap;
    column-gap: 70px;
    grid-template-columns: 1fr;
    padding-top: 0px;
    justify-items: center;
    max-width: 1800px;
}

.programme_content.prg_jdr {
    max-width: 300px;
}

@media (min-width:700px)  {
    #jdr-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width:1400px)  {
    #jdr-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

.profil-wrapper {
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    padding-top: 0px;
    max-width: 1800px;
    margin: 30px auto;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}

.profil-wrapper .profil {
    width: 100%;
    max-width: 30%;
    position: relative;
    background-color: rgba(29, 18, 64, 0.8);
    border-radius: 30px;
    max-width: 400px;
    box-shadow: 0 0 15px #624c9a;
    border: 1px solid #624c9a;
    margin: 20px;
    text-align: left;
    padding: 100px 20px 20px 20px;
    box-sizing: border-box;
    overflow: hidden;
    cursor: pointer;
    transition: all .2s ease;
}

.profil-wrapper .profil:hover {
    box-shadow: 0 0 15px #fff;
}


.profil-wrapper .profil.marche {
    background-color: transparent;
    box-shadow: none;
    border: none;
    padding: 100px 20px 20px 20px;
    cursor: initial;
    border-radius: 0px;
    height: 100px;
}

.profil-wrapper .profil.marche:hover {
    box-shadow: none
}

.profil-wrapper .profil_more {
    display: block;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
    color: #000;
    background: #fff;
    padding: 4px 14px;
    margin-top: 10px;
    border-radius: 30px;
    
    color: #201F23;
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 500;
}

.profil-wrapper .open .profil_more {
    display: none;
}

.profil-wrapper .profil img {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 75px;
    border-radius: 5px;
    z-index: 5;
}

.profil-wrapper .profil.marche img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100px;
}

.profil-wrapper .profil span {
    position: absolute;    
    top: 57px;
    left: 0;
    transform: translateY(-50%);
    font-family: 'Josefin Slab';
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
    letter-spacing: -0.02em;
    color: #fff;
    text-transform: uppercase;
    background: url(images/name.png) right no-repeat;
    background-size: cover;
    padding: 10px 40px 12px 115px;
}
.profil-wrapper .profil.marche span {
    top: 50px
}
.profil-wrapper .profil a {
    font-size: .6em;
    display: block;
    text-transform: lowercase;
    line-height: 0.7em;
    text-decoration: underline;
    /* padding-bottom: 7px; */
}

.profil-wrapper .profil p {
    /* font-size: .8em; */
    /* line-height: 1.3em; */
    display: none;
}
.profil-wrapper .profil.open p {
    display: block;
}

#tournoi-grid,
#informations-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 50px;
    padding-top: 30px;
    justify-content: center;
    align-items: flex-start;
}

@media (max-width:700px)  {
    #tournoi-grid,
    #informations-grid {
        flex-wrap: wrap;
    }
}
.informations-card {  
    /* width: 100%; */
    max-width: 600px;
}

#informations-grid .bloc_title {
    display: inline-block;
    margin: 10px auto;
    color: #fff;
    padding: 0px 30px;
    z-index: 20;

    font-family: 'Righteous';
    font-style: normal;
    font-weight: 400;  
    font-size: 28px;
    line-height: 32px;
    color: var(--ng-white);
    padding: 3px 18px 5px 18px;
    text-transform: uppercase;

    text-shadow: 0 3px 0px #3b2b73;

    border-radius: 10px;
    box-shadow: 0 5px 0px #3b2b73;
    background: linear-gradient(to right, #685ca8, #9181bc, #685ca8);
}

.gradient-border-box {
    --b:3px;
    --r:30px;
  
    padding: calc(var(--b) + 13px) calc(var(--b) + 29px);
    display: inline-block;
    position:relative;
    z-index:0;
    filter: drop-shadow(0px 0px 30px rgba(58, 30, 148, 0.3));
    font-weight: 700;
    transition: color 400ms ease;
    backdrop-filter: blur(10px);
}

.gradient-border-box:before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    padding: var(--b);
    border-radius: var(--r);
    background: var(--c,linear-gradient(to right, #E6569C, #FA82BD)); 
    -webkit-mask: 
       linear-gradient(rgba(0,0,0,1) 0 0) content-box, 
       linear-gradient(rgba(0,0,0,0.9) 0 0);
    -webkit-mask-composite: xor;
    mask: 
       linear-gradient(rgba(0,0,0,1) 0 0) content-box, 
       linear-gradient(rgba(0,0,0,0.9) 0 0);
    mask-composite: exclude;
}

#location-card:before {
    background: var(--c,linear-gradient(297deg, #2DB3FF, #56E5BA)); 
}

#housing-card:before {
    background: var(--c,linear-gradient(297deg, #E0A4FC, #FA82BD)); 
}

#catering-card:before {
    background: var(--c,linear-gradient(297deg, #FFFFFF, #E5CF56)); 
}

#map-wrapper {
    text-align: center;
}

#map-bubble {
    width: 250px;
    border-radius: 100%;
    object-fit: cover;
    filter: drop-shadow(0px 0px 10px rgba(230, 194, 253, 0.3));

    transition: 400ms ease;
}

#map-bubble:hover, #map-bubble:active {
    filter: drop-shadow(0px 0px 15px rgba(230, 194, 253, 0.8));
}

#partners-boxes {
    /* padding-top: 30px; */
}

.partners-box-logos {
    margin: auto;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.partners-box-logos > * {
    margin: 15px;
}

#partners-boxes img {
    filter: drop-shadow(0px 0px 10px rgba(230, 194, 253, 0.3));
    transition: 400ms ease;
    transform: scale(.8);
}

#partners-boxes img:hover, #partners-boxes img:active {
    filter: drop-shadow(0px 0px 15px rgba(230, 194, 253, 0.8));
}

@media (min-width:961px)  {
    main {
        padding-top: 110px;
    }

    #hero-main {
        display: flex;
    }

    #hero-button {
        align-self: center;
        margin-left: auto;
    }
}

#details > section > section:nth-child(odd) {
    text-align: left;
}

#details > section > section:nth-child(even) {
    text-align: right;
}

#details > section {
    padding-top: 30px;
    padding-bottom: 30px;
}

#details > section > section {
    padding-top: 15px;
    padding-bottom: 15px;
    max-width: 80%;
    margin: auto;
}

#details > section > section > h1 {
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 32px;
    text-transform: uppercase;
    color: #E2E2EA;
}

#details > section > section > h2 {
    font-weight: 200;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: -0.02em;
}

#details a {
    color: #E5569C;
}

#details a.primary-button-gf-2024 {
    color: #201F23;
}

#details a.secondary-button-gf-2024 {
    color: white;
}

.details-bubble {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    object-fit: cover;
}

.details-bubbles {
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

#comedy-artists {
    display: none;
}

.details-buttons {
    text-align: center;
}

#nos-reseaux div {
    padding-top: 20px;
    display: grid;
    gap: 20px;
    grid-template-columns: 310px;
    justify-content: center;
}

@media (min-width:650px)  {
    #nos-reseaux div {
        grid-template-columns: repeat(2, 310px);
    }
}

@media (min-width:980px)  {
    #nos-reseaux div {
        grid-template-columns: repeat(3, 310px);
    }
}

.reseau {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 140px;
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 200;
    font-size: 40px;
    line-height: 50px;
    text-transform: uppercase;
    background-color: rgba(29, 18, 64, 0.5);
    color: #E2E2EA;
    cursor: pointer;
    transition: 400ms ease;
}

#nos-reseaux a:hover {
    text-decoration: none;
}

.reseau:hover {
    background-color: rgba(73, 44, 159, 0.8);
}

.warning {
    color: #E5569C;
}

.warning-other {
    color: orange;
}


/* ADD SPARKLES */
.particle {
    animation: var(--duration) linear var(--delay) var(--iteration) sparkle;
    background-color: GhostWhite;
    border-radius: 50%;
    box-shadow: 0 0 var(--blur) var(--spread) rgba(255, 255, 224, 0.5);
    height: var(--size);
    left: var(--left);
    opacity: 0;
    position: absolute;
    top: var(--top);
    width: var(--size);
    z-index: -1;
}

@keyframes sparkle {
    0% { opacity: 0; }
    25% { opacity: var (--opacity); }
    75% { opacity: 0.9; }
    100% { opacity: 0; }
}

#moving {
    position: fixed;
    bottom: 30px;
    left: 0;
    height: 80px;
    width: 100%;
    z-index: 90;
    display: flex;
    justify-content: center;
    align-items: center;
    /* overflow: hidden; */
    background : linear-gradient(90deg, #0F0E0F 0%, #cc332a 50%, #0F0E0F 100%);
    box-shadow: 0 0 20px #000;
    transition: bottom 500ms cubic-bezier(0.555, 1.605, 0.655, 1.000) .5s;
}

#moving.hidden {
    bottom: -200px;
}

#moving::before {
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: calc(100% - 20px);
    top: 10px;
    left: 0;
    box-sizing: border-box;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    opacity: .5;
    pointer-events: none;
}

#moving p {
    font-family: 'Work Sans';
    font-style: normal;
    font-size: 27px;
    line-height: 30px;
    margin-left: 150px;
}

#moving a {
    padding: 10px 20px;
    font-size: 20px;
    margin: 0 20px;
}

#moving img {
    display: block;
    position: absolute;
    bottom: 0;
    right: calc(50% + 190px);
    height: 130px;
}


@media (max-width: 961px) {
    #moving {
        z-index: 300;
    }
    #moving p {
        font-size: 20px;
        line-height: 20px;
        margin-left: 20px;
    }
    #moving a {
        font-size: 16px;
        white-space: nowrap;
    }
    #moving img {
        bottom: 88%;
        right: calc(50% + 50px);
        height: 90px;
    }
}


/*/////////////////////////////*/


.replays {
    display: grid;
    align-items: start;
    gap: 20px;
    justify-content: center;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin: 50px auto;
}

@media (max-width: 1100px) {
    .replays {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .replays {
        grid-template-columns: 1fr 1fr;
    }
}

.replays a {
    display: block;
    aspect-ratio: 16/9;
    transition: all 0.2s;
    border-radius: 20px;
    overflow: hidden;
}

.replays img {
    width: 100%;
    height: 100%;
    cursor: pointer;
    object-fit: cover;
    cursor: pointer;
}

.gallery {  
    display:flex; 
    flex-wrap:wrap; 
    justify-content:center;
    gap: 20px;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery img {
    max-width: 18%;
    min-width: 200px;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.2s;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    cursor: pointer;
}

.gallery img:hover,
.replays a:hover {
    box-shadow: 0 0 50px rgba(230, 194, 253, 0.3);
    transform: rotate(-2deg);
}

.lightbox-content {
    position: relative;
}

.lightbox {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    flex-direction: column;
  
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
  }
  
.lightbox.show {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 8px;
    pointer-events: none;
}

.controls {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.controls button {
    position: absolute;
    width: 100px;
    height: 60px;
    font-size: 1.4rem;
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 400;
    padding: 0;
    display: block;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    transition: transform 0.2s;
}
  
.controls button:hover {
    transform: scale(1.2);
    color: #ccc;
}

.controls #prev {
    top: calc(50% - 30px);
    left: -80px;
}

.controls #close {    
    bottom: -48px;
    left: calc(50% - 50px);
}

.controls #next {
    top: calc(50% - 30px);
    right: -80px;
}

.arrow {
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
}
  
.arrow::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: transform 0.2s;
}

.arrow.left::before {
    transform: translate(-50%, -50%) rotate(-135deg);
}


@media (max-width: 961px) {
    .lightbox img {
        max-width: 100vw;
    }
    .gallery img {
        min-width: 110px;
    }
    .controls #prev {
        top: 100%;
        left: 0;
    }
    .controls #next {
        top: 100%;
        right: 0;
    }
    .controls #close {
        bottom: -60px;   
    }
}
