<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* SUMMARY */
/* ================== */
/* ================== */
/* VARIABLES */
/* GENERIC */
/* LAYOUT */
/* --- grid */
/* --- flex */
/* TEXT */
/* MENU */
/* --- logo */
/* FOOTER */
/* BUTTONS */
/* CARDS */
/* --- ratios */
/* --- card film */
/* --- card programme */
/* SECTIONS */
/* --- hero */
/* --- carousel */
/* --- about */
/* --- partenaires */
/* --- programme */
/* --- details */
/* --- contact */
/* --- modal bande-annonce */
/* --- details evenement */

/* VARIABLES */
/* ================== */
/* ================== */
:root {
    --color-dark: #111519;
    --color-light: #ffffff;
    --color-primary: #febe29;
    --color-secondary: #f48394;
    --color-dark-rgb: 17, 21, 25;
    --color-primary-rgb: 254, 190, 41;

    --font: 'Source Sans Pro', Arial, sans-serif;

    --space: 8px;
    --space-2: calc(var(--space) * 2);
    --space-3: calc(var(--space) * 3);
    --space-4: calc(var(--space) * 4);
    --space-5: calc(var(--space) * 5);
    --vh100: calc(var(--vh, 1vh) * 100);

    --container-width: 1400px;
    --container-padding: var(--space-3);
}

@media (min-width: 768px) {
    :root {
        --container-padding: calc((var(--space)) * 8);
    }
}

/* GENERIC */
/* ================== */
/* ================== */
html,
body {
    width: 100%;
    min-height: 100%;
}
body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-light);
    background-color: var(--color-dark);
    overflow-x: hidden;
    position: relative;
}

@media (min-width: 768px) {
    body {
        padding-top: 80px;
        padding-bottom: 0;
    }
}

/* LAYOUT */
/* ================== */
/* ================== */
.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    width: 100%;
    max-width: var(--container-width);
}
.vh100 {
    min-height: 100vh;
    min-height: calc(var(--vh100) - 52px);
}
.hidden-xs {
    display: none;
}
.img-cover {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.bg-pattern {
    color: var(--color-dark);
    background: url(./assets/tile.png);
    background-size: 200px;
}

.mb-1 {
    margin-bottom: var(--space);
}
.mb-4 {
    margin-bottom: var(--space-4);
}

/* --- grid */
.grid {
    width: 100%;
    display: grid;
    gap: var(--space-2);
}

.grid.grid--big {
    gap: var(--space-5);
}

/* --- flex */
.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .visible-xs {
        display: none !important;
    }
    .hidden-xs {
        display: block !important;
    }
    .vh100 {
        min-height: calc(var(--vh100) - 80px);
        max-height: 900px;
    }
}

/* TEXT */
/* ================== */
/* ================== */
.text-xl {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
}

.text-lg {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
}
.text-md {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.1;
}
.text-18 {
    font-size: 1.125rem;
}

.text-center {
    text-align: center;
}
.text-uppercase {
    text-transform: uppercase;
}
.text-light {
    font-weight: 300;
}
.text-bold {
    font-weight: 600;
}
.text-black {
    font-weight: 900;
}
.text-primary {
    color: var(--color-primary);
}
.text-ellipsis {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.clamp-1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.clamp-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
@media (min-width: 768px) {
    .text-xl {
        font-size: 6rem;
    }

    .text-lg {
        font-size: 2.25rem;
    }
}

/* MENU */
/* ================== */
/* ================== */
/* --- logo */
.logo {
    height: 100%;
    max-height: 48px;
    position: fixed;
    top: var(--container-padding);
    left: var(--container-padding);
    z-index: 1000;
    filter: drop-shadow(0 0 1px var(--color-light));
}

.nav {
    background-color: var(--color-light);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0 20px 0 0;
    z-index: 999;
    box-shadow: 0px -5px 20px rgba(var(--color-dark-rgb), 0.1);
    line-height: 1;
    overflow: hidden;
}
.nav-container {
    display: flex;
}
.nav ul {
    display: flex;
    flex: 1;
    padding: var(--space) var(--space-3);
    justify-content: space-around;
}
.nav ul li {
    flex: 1;
}
.nav ul a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--color-dark);
}
.nav ul a::after {
    display: none;
}

.nav svg {
    height: 20px;
    fill: var(--color-dark);
    margin-bottom: 4px;
}

nav li a.active svg {
    fill: var(--color-primary);
}

/* Button billeterie */
nav .button {
    padding: var(--space) var(--space-2);
    background-color: var(--color-primary);
    min-width: 25%;
    border-radius: var(--border) var(--border) 0 0;
}
nav .button svg {
    fill: var(--color-dark);
}

@media (min-width: 768px) {
    .logo {
        position: relative;
        top: 0;
        left: 0;
        filter: none;
    }

    .nav {
        top: 0;
        bottom: auto;
        border-radius: 0;
        background-color: var(--color-light);
    }
    .nav-container {
        margin: auto;
        justify-content: space-between;
        padding: var(--space-2) var(--container-padding);
        max-width: var(--container-width);
    }
    .nav ul {
        flex: initial;
        align-items: center;
    }
    .nav ul li {
        flex: auto;
    }
    .nav ul a {
        padding: var(--space) 0;
        margin-left: var(--space-4);
        flex-direction: row;
        font-size: 1rem;
        font-weight: 600;
    }
    .nav ul a svg {
        display: none;
    }
    .nav ul a::after {
        display: block;
    }
    .nav .button {
        min-width: auto;
        margin: var(--space-2) 0;
        margin-left: var(--space-4);
        padding: var(--space-2) var(--space-3);
        border-radius: 100px;
        text-transform: uppercase;
    }
}

/* FOOTER */
/* ================== */
/* ================== */
.footer {
    padding-top: var(--space-3);
    padding-bottom: calc(var(--space-3) + 52px);
    border-top-right-radius: 50px;
    position: relative;
    z-index: 1;
}

.footer .content {
    display: grid;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.footer .content .item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer .content .social {
    display: flex;
}
.footer .content .social img {
    margin-right: var(--space-3);
    max-width: 40px;
}

.footer .copyright {
    text-align: center;
}

.footer .icon {
    width: 12px;
    display: inline-block;
    margin-right: var(--space-2);
}

@media (min-width: 768px) {
    .footer {
        padding-top: calc(var(--space) * 10);
        padding-bottom: calc(var(--space) * 10);
        border-top-right-radius: 100px;
    }
    .footer .content {
        grid-template-columns: repeat(3, 1fr);
        margin-bottom: var(--space-5);
    }
}
/* BUTTONS */
/* ================== */
/* ================== */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    background-color: var(--color-primary);
    color: var(--color-dark);
    padding: var(--space) var(--space-3);
    border-radius: 50px;
    font-weight: 600;
    position: relative;
}

.btn.btn-secondary {
    border: 2px solid var(--color-primary);
    background-color: rgba(var(--color-dark-rgb), 0.5);
    color: var(--color-primary);
}
.link-hover {
    position: relative;
}
.link-hover:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--color-dark);
    transform: scaleX(1);
    transform-origin: bottom right;
    transition: transform 0.3s;
}

@media (min-width: 768px) {
    .btn {
        width: auto;
        overflow: hidden;
    }

    .btn-hover {
        position: relative;
        transition: all 0.4s ease;
    }
    .btn-hover::after {
        content: attr(data-hover);
        position: absolute;
        top: 150%;
        left: 0;
    }
    .btn:hover .btn-hover {
        transform: translateY(-150%);
    }

    .btn.arrow {
        padding-left: 56px;
    }
    .btn.arrow::before {
        content: url('./assets/play.svg');
        position: absolute;
        left: 24px;
        top: 50%;
        transform: translateY(-50%);
        width: 12px;
        height: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .link-hover:after {
        transform: scaleX(0);
    }
    .link-hover:hover:after {
        transform-origin: bottom left;
        transform: scaleX(1);
    }
}

/* CARDS */
/* ================== */
/* ================== */
/* --- ratios */
.ratio {
    position: relative;
}

.ratio::after {
    content: '';
    display: block;
    padding-bottom: 141.43%; /* Format 21x29,7 */
}
.ratio.ratio16x9::after {
    padding-bottom: 56.25%; /* Format 16x9 */
}

.ratio &gt; * {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/* --- card film */
.card-film .img-wrapper {
    margin-bottom: var(--space-2);
}
.card-film .img-wrapper img {
    -o-object-fit: cover;
    object-fit: cover;
}

/* --- card programme */
.card-programme {
    display: flex;
    position: relative;
}

.card-programme .number {
    background-color: var(--color-primary);
    color: var(--color-dark);
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2);
}

.card-programme .infos {
    padding: var(--space-2);
    background-color: rgba(var(--color-dark-rgb), 0.9);
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
}
.card-programme .infos h3 {
    font-weight: 900;
    text-transform: uppercase;
}

.card-programme .img-wrapper {
    max-width: 160px;
    height: 100%;
    display: none;
    position: relative;
}

@media (min-width: 768px) {
    .card-film .overlay {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(var(--color-dark-rgb), 0.8);
        border: 2px solid var(--color-primary);
        z-index: 1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .card-film:hover .overlay {
        opacity: 1;
    }

    .card-programme .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 2px solid var(--color-primary);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .card-programme .img-wrapper .img-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex !important;
        align-items: center;
        justify-content: center;
        background-color: rgba(var(--color-dark-rgb), 0.8);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .card-programme:hover .overlay {
        opacity: 1;
    }
    .card-programme:hover .img-wrapper .img-overlay {
        opacity: 1;
    }
}
@media (min-width: 992px) {
    .card-programme .img-wrapper {
        display: block;
    }
}

/* SECTION */
/* ================== */
/* ================== */
/* --- hero */
.hero {
    position: relative;
    display: flex;
    align-items: flex-end;
}
.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 75%;
}
.hero__background img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.hero__background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(var(--color-dark-rgb), 0) 48.61%, var(--color-dark) 100%);
}

.hero .hero__content {
    position: relative;
    z-index: 1;
    padding-bottom: var(--space-3);
    width: 100%;
    margin-top: calc(var(--space) * 12);
}

.hero .hero__buttons {
    display: grid;
    gap: var(--space-2);
}

@media (min-width: 768px) {
    .hero__background {
        height: 100%;
    }
    .hero__background .overlay {
        background: linear-gradient(90deg, rgba(var(--color-dark-rgb), 0.8) 0%, rgba(var(--color-dark-rgb), 0) 50%);
    }
    .hero .hero__content {
        padding-bottom: calc((var(--space)) * 10);
    }
    .hero .hero__content .text-xl {
        max-width: 60%;
    }
    .hero .hero__buttons {
        display: flex;
        gap: 0;
    }
    .hero .hero__buttons &gt; * {
        margin-right: var(--space-3);
    }
}

/* --- carousel */
.carousel {
    display: flex;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    padding: var(--space-5) 0;
}
.carousel .flex {
    margin-bottom: var(--space-3);
}

.swiper-container {
    max-height: 100%;
    max-width: 220px;
    overflow: visible;
    margin-left: 0;
}

.carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.2;
}

.carousel-bg.swiper-container {
    max-width: 100%;
}
.carousel-bg .swiper-slide {
    width: 100%;
    height: 100%;
}
.carousel-bg .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (min-width: 524px) {
    .swiper-container {
        max-width: 100%;
    }
    .carousel .flex {
        margin-bottom: var(--space-5);
    }
}
@media (min-width: 768px) {
    .swiper-navigation {
        display: flex !important;
    }
    .swiper-navigation .swiper-arrow-next {
        margin-left: var(--space-2);
    }
    .swiper-navigation .swiper-arrow-next,
    .swiper-navigation .swiper-arrow-prev {
        height: 100%;
        cursor: pointer;
        padding: var(--space-2) var(--space);
    }
    .swiper-navigation .swiper-arrow-next img,
    .swiper-navigation .swiper-arrow-prev img {
        width: 24px;
        height: 100%;
    }
    .swiper-navigation .swiper-arrow-prev {
        transform: rotate(-180deg);
    }
}

@media (min-width: 1200px) {
    .swiper-container {
        overflow: hidden;
    }
}

/* --- about */
.about .img-wrapper {
    display: none;
}
.about .content {
    padding: calc(var(--space) * 8) var(--container-padding);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about .content h1 {
    margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
    .about {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .about .img-wrapper {
        display: block;
        max-height: 700px;
    }
}

@media (min-width: 1200px) {
    .about .content {
        padding: calc(var(--space) * 10) calc(var(--space) * 12);
    }
}

/* --- partenaires */
.partenaires {
    padding: var(--space-5) 0;
    overflow: hidden;
}
.partenaires h2 {
    margin-bottom: var(--space-3);
}
.partenaires .swiper-container {
    height: 200px;
}
.partenaires .swiper-slide {
    width: auto;
}
.partenaires .swiper-slide img {
    height: 100%;
}

@media (min-width: 768px) {
    .partenaires {
        padding: calc(var(--space) * 12);
    }
    .partenaires h2 {
        margin-bottom: var(--space-5);
    }
    .partenaires .swiper-container {
        height: 250px;
    }
}

/* --- programme */
.programme {
    padding: calc(var(--space) * 12) 0;
}

.programme .programme__bg {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(var(--color-dark-rgb), 0.3) 0%, rgba(var(--color-dark-rgb), 1) 60%), url('./assets/tile.png');
    background-size: cover, 200px;
}

.programme .programme__list {
    display: grid;
    gap: var(--space-2);
    max-width: 100%;
    overflow: hidden;
}

@media (min-width: 768px) {
    .programme .grid--big {
        gap: calc(var(--space) * 10) 0;
    }
    .programme .programme__list {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-5);
    }
}

/* --- details */
.details {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    min-height: calc(var(--vh100) - 52px);
    padding-bottom: var(--space-5);
}
.details__background {
    position: absolute;
    top: -100px;
    left: -100px;
    right: -100px;
    bottom: -100px;
    -webkit-filter: blur(10px);
    filter: blur(10px);
    opacity: 0.1;
    z-index: -1;
}

.details__cover {
    height: calc(var(--vh, 1vh) * 50);
    position: relative;
    z-index: -1;
}
.details__cover img {
    box-sizing: border-box;
    border-radius: 0 0 20% 20%;
}

.details__content {
    margin-top: -150px;
}

.details__content .affiche {
    height: 300px;
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
    justify-content: center;
}
.details__content img {
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    border-radius: 20px;
    border: 2px solid var(--color-light);
}

.details__content .details__infos {
    display: grid;
    gap: var(--space-3);
}
.details__content .details__infos .title {
    text-align: center;
}

.details__content .details__buttons {
    display: grid;
    gap: var(--space-2);
}

@media (min-width: 768px) {
    .details {
        min-height: calc(var(--vh100) - 80px);
    }
    .details__content .details__buttons {
        display: flex;
        gap: 0;
    }
    .details__content .details__buttons &gt; * {
        margin-right: var(--space-3);
    }
}

@media (min-width: 1200px) {
    .details {
        display: flex;
        align-items: center;
        max-height: 900px;
        min-height: 100vh;
        min-height: calc(var(--vh100) - 52px);
        padding: calc(var(--space) * 12) 0;
    }
    .details__cover {
        display: none;
    }

    .details__content {
        margin-top: 0;
        display: flex;
        align-items: center;
    }

    .details__content .affiche {
        margin-bottom: 0;
        height: 100%;
        max-height: 500px;
        width: 100%;
        margin-right: calc(var(--space) * 10);
    }

    .details__content .details__infos {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 0;
        max-width: 60%;
    }
    .details__content .details__infos .title {
        text-align: left;
        margin-bottom: var(--space-5);
    }
}

/* --- contact */
.contact {
    background-size: cover;
    background-position: center;
    padding: calc(var(--space) * 12) 0;

    position: relative;
    color: var(--color-dark);
}

.contact h1 {
    margin-bottom: var(--space-5);
}

.contact .overlay {
    background-color: var(--color-primary);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0.9;
    z-index: 0;
}

.contact .content {
    position: relative;
    z-index: 1;
}

.contact .infos {
    display: grid;
    gap: var(--space-3);
}

.contact .tarifs {
    max-width: 300px;
}

.contact .flex {
    display: flex;
    justify-content: space-between;
}

.contact .icon {
    display: inline-block;
    width: 16px;
    margin-right: var(--space-2);
}

@media (min-width: 768px) {
    .contact .infos {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- carte */
.carte iframe {
    width: 100%;
    height: var(--vh100);
    max-height: 750px;
    margin-bottom: -200px;
}

/* --- modal bande-annonce */
.modal-film {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 var(--container-padding);
    align-items: center;
    justify-content: center;
    display: none;
}

.modal-film.visible {
    display: flex;
}

.modal-film .modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(var(--color-dark-rgb), 0.9);
    z-index: -1;
}

.modal-film .modal__ba {
    width: 100%;
    max-width: 1400px;
    max-height: 75vh;
}

/* --- details evenement */
.banner {
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: 50% 50%;
}

.banner .banner-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.banner .banner-overlay {
    padding: calc(var(--space) * 12) 0;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(var(--color-primary-rgb), 0.5);
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.banner .banner-overlay h1 {
    text-shadow: 1px 1px 3px rgba(var(--color-dark-rgb), 0.6);
}

.page-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.news-content img {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    margin: var(--space-5) 0;
}

@media (min-width: 768px) {
    .banner {
        height: calc(var(--vh, 1vh) * 80);
        max-height: 550px;
        background-attachment: fixed;
    }
    .banner .banner-overlay {
        position: absolute;
    }
    .page-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .inner-section {
        position: relative;
        padding-left: 80px;
        padding-right: 80px;
        background-color: var(--color-dark);
        margin-top: -100px;
    }

    .inner-section::before,
    .inner-section::after {
        content: '';
        position: absolute;
        top: 100px;
        left: -10px;
        height: 100px;
        width: 10px;
        background-image: url(/assets/shadow-yellow.png);
    }
    .inner-section::after {
        left: auto;
        right: -10px;
        transform: scaleX(-1);
    }
}

@media (min-width: 992px) {
    .two-column aside {
        display: block;
        grid-column: 6 / 8;
    }
    .two-column {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 50px;
    }
    .two-column aside .aside-content {
        position: sticky;
        top: 120px;
        margin-bottom: var(--space-5);
    }
    .two-column aside .text-lg {
        margin-bottom: 20px;
    }
    .news-content {
        grid-column: 1 / 6;
    }
    aside .news .text-content .text-wrapper {
        transform: translateY(0);
    }
    aside .aside-content {
        grid-template-columns: repeat(1, 1fr);
    }
}
</pre></body></html>