/* Import de la police Poppins depuis Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:wght@800&family=Poppins:wght@400;500;600;700&display=swap');


/* Variables globales */
:root {
    --font-main: 'Poppins', sans-serif;
    --font-title: 'Playfair Display', serif;
    --font-display: 'Bebas Neue', cursive;
    
    --color-text: #111123;
    --color-white: #FFFFFF;
    --color-grey: #EFF0F9;
    --color-match: #3333EB;
    --color-cabaret: #781E92;
    --color-catch: #A21C1C;
    --color-gicle: #F8B230;
    --color-transparent: transparent;

    --radius-btn: 24px;
    --radius-media: 10px;
    --radius-circle: 100%;

    --transition: 0.3s ease;
}


/* TYPOGRAPHIE GÉNÉRALE */
body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.75rem;
    font-weight: 400;
    color: var(--color-text);
}

.wrapper {
    width: 1200px;
    margin: 0 auto;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

strong {
    font-weight: 600;
}


/* TITRES : HIERARCHIE */
h1 {
    font-family: var(--font-display);
    font-size: 7.5rem;
    line-height: 7.5rem;
    font-weight: 400;
    margin-top: 15px;
}

h2 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    line-height: 3.125rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

h5 {
    font-size: 0.938rem;
    line-height: 1.625rem;
    font-weight: 600;
}

/* FORMULAIRE && BOUTONS */
a.btn,
input[type="submit"] {
    display:block;
    font-size: 1rem;
    line-height: 1.688rem;
    font-weight: 600;
    text-transform: uppercase;
    background-color: var(--color-gicle);
    color: var(--color-text);
    padding: 10px 30px;
    border-radius: var(--radius-btn);
    width: max-content;
    max-width: 100%;
    height: 47px;
}

a.btn.btn-white {
    background-color: var(--color-white);
    border: 2px solid var(--color-text);
}

input[type="email"],
input[type="text"],
textarea {
    width: 575px;
    max-width: 100%;
    height: 47px;
    background: var(--color-grey);
    padding: 12px 20px;
    font-size: 1rem;
    line-height: 1.688rem;
    border-radius: 10px;
    margin-bottom: 20px;
}

textarea {
    height: unset;
}

.bg-grey input[type="email"],
.bg-grey input[type="text"],
.bg-grey textarea { background: var(--color-white); }


/* Iframe YouTube */
.responsive-video {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    display: block;
    background-color: transparent;
    border-radius: var(--radius-media);
}
  
.responsive-video iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    border-radius: 10px;
}


/* Background */
.bg-grey { background-color: var(--color-grey); }
.bg-match { background-color: var(--color-match); }
.bg-cabaret { background-color: var(--color-cabaret); }
.bg-catch { background-color: var(--color-catch); }
.bg-dark { background-color: var(--color-text); color: var(--color-white); }


/* Flex */
.flex-row { display: flex; flex-direction: row; flex-wrap: nowrap; }
.flex-column { display: flex; flex-direction: column; flex-wrap: nowrap; }
.flex-center { justify-content: center; align-items: center; }


/** Banniere **/
section.banniere { padding: 15px 0 70px; }
section.banniere .top { display: flex; flex-direction: row; justify-content: space-between; align-items: center; height: 54px; }
section.banniere .top nav { display: flex; flex-direction: row; justify-content: left; align-items: center; gap: 15px; }
section.banniere .top nav a { font-size: 0.875rem; line-height: 1.313rem; color: var(--color-txt); text-decoration: none; text-transform: uppercase; padding: 0 15px; }
section.banniere .top nav a.active { position: relative; }
section.banniere .top nav a.active:after { position: absolute; content:''; width: 100%; height: 2px; background: var(--color-match); bottom: -8px; left: 50%; transform: translateX(-50%); }
section.banniere .top nav a.flex-row { gap: 8px; }
section.banniere .top nav a.rounded { border-radius: var(--radius-circle); background: rgba(255,255,255,1); width: 30px; height: 30px; padding: 0; }
section.banniere .top nav a.rounded img { position: relative; top: 7px; left: 7px; width: 15px; height: 15px; }
section.banniere .content { padding: 60px 0 0; width: 800px; text-align: center; margin: 0 auto; }
section.banniere .content .slogan { font-family: var(--font-title); font-size: 1.875rem; line-height: 2.375rem; font-weight: 800; }
section.banniere .content .txt { font-size: 1rem; line-height: 1.75rem; font-weight: 400; }
section.banniere .cta { display:flex; flex-direction: row; gap: 15px; justify-content: center; align-items: center; padding: 40px 0 0; }
section.banniere.accueil { background: url(../img/banniere.jpg); background-size: cover; background-position: center; }
section.banniere.accueil .top nav a { color: var(--color-white); }
section.banniere.accueil .top nav a.rounded { background: rgba(255,255,255,0.2); }
section.banniere.accueil .top nav a.active:after { background: var(--color-gicle); }
section.banniere.accueil .content .slogan { color: var(--color-gicle); }
section.banniere.accueil .content h1 { font-size: 9.375rem; line-height: 11.25rem; }
section.banniere.accueil .content h1,
section.banniere.accueil .content .txt { color: var(--color-white); }


/* Menu Hamburger */
section.banniere .burger { display: none; flex-direction: column; justify-content: space-around; width: 30px; height: 25px; background: none; border: none; cursor: pointer; z-index: 10; }
section.banniere .burger span { height: 3px; background: var(--color-text); border-radius: 2px; width: 100%; display: block; }
section.banniere.accueil .burger span,
section.banniere .burger.open span { background: var(--color-white); }


/** Gauche / Droite **/
section.lr { padding: 70px 0; }
section.lr .wrapper { display: flex; flex-direction: row; gap: 100px; justify-content: space-between; align-items: center; }
section.lr .content { width: calc(100% - 700px); }
section.lr .content h2 { margin-bottom: 1.563rem; }
section.lr .content p { font-size: 1rem; line-height: 1.688rem; }
section.lr .media { width: 600px; }
section.lr .cards { width: 600px; gap: 20px; }
section.lr .cards .card { gap: 0; border-radius: var(--radius-media); padding: 20px; }
section.lr .cards .card.c-match { border: 2px solid var(--color-match); }
section.lr .cards .card.c-cabaret { border: 2px solid var(--color-cabaret); }
section.lr .cards .card.c-catch { border: 2px solid var(--color-catch); }
section.lr .cards .card .date { font-family: var(--font-display); font-size: 1.625rem; line-height: 2.25rem; font-weight: 800; margin-bottom: 8px; align-items: center; gap: 8px; }
section.lr .cards .card.c-match .date { color: var(--color-match); }
section.lr .cards .card.c-cabaret .date { color: var(--color-cabaret); }
section.lr .cards .card.c-catch .date { color: var(--color-catch); }
section.lr .cards .card .place,
section.lr .cards .card .info,
section.lr .cards .card .price { gap: 12px; align-items: center; font-size: 1rem; line-height: 1.688rem; font-weight: 400; }


/** 2 colonnes **/
section.cols2 { padding: 70px 0; text-align: center; }
section.cols2 h2 { margin-bottom: 3.125rem; }
section.cols2 .cards { gap: 20px; flex-wrap: wrap; }
section.cols2 .cards .card { width: calc((100% - 20px) / 2); gap: 0; border-radius: var(--radius-media); padding: 20px; }
section.cols2 .cards .card.c-match { border: 2px solid var(--color-match); }
section.cols2 .cards .card.c-cabaret { border: 2px solid var(--color-cabaret); }
section.cols2 .cards .card.c-catch { border: 2px solid var(--color-catch); }
section.cols2 .cards .card .date { font-family: var(--font-display); font-size: 1.625rem; line-height: 2.25rem; font-weight: 800; margin-bottom: 8px; align-items: center; gap: 8px; }
section.cols2 .cards .card.c-match .date { color: var(--color-match); }
section.cols2 .cards .card.c-cabaret .date { color: var(--color-cabaret); }
section.cols2 .cards .card.c-catch .date { color: var(--color-catch); }
section.cols2 .cards .card .place,
section.cols2 .cards .card .info,
section.cols2 .cards .card .price { gap: 12px; align-items: center; font-size: 1rem; line-height: 1.688rem; font-weight: 400; }
section.cols2 .cards .card div.txt { text-align: left; }


/** 3 colonnes **/
section.cols3 { padding: 70px 0; text-align: center; }
section.cols3 .sub-title { font-size: 1rem; line-height: 1.75rem; font-weight: 400; }
section.cols3 div.content { margin-top: 50px; flex-wrap: wrap; gap: 50px 30px; align-items: flex-start; }
section.cols3 div.content > div { width: calc((100% - 60px) /3); }
section.cols3 .logo { width: 100px; height: 100px; border-radius: var(--radius-circle); }
section.cols3 .logo img { width: 60px; height: auto; }
section.cols3 .title { margin-top: 25px; font-family: var(--font-display); font-size: 2.125rem; line-height: 2.75rem; font-weight: 700; }
section.cols3 .desc { margin-top: 10px; font-size: 1rem; line-height: 1.75rem; font-weight: 400; }


/** Simple **/
section.simple { padding: 70px 0; text-align: center; }
section.simple h2 { color: var(--color-white); }
section.simple.bg-grey h2 { color: var(--color-text); }
section.simple p.content { margin-top: 25px; font-size: 1rem; line-height: 1.75rem; font-weight: 400; color: var(--color-white); }
section.simple.bg-grey p.content { color: var(--color-text); }
section.simple a.btn { margin: 25px auto 0; }
section.simple form { gap: 15px; }
section.simple form input[type="email"] { background: #fff; margin-bottom: 0; }
section.simple .duo-btn { gap: 20px; }
section.simple .duo-btn a.btn { margin: 0; }


/** Contact **/
section.contact { padding: 70px 0; }
section.contact .flex-row { gap: 50px; }
section.contact .form { width: 575px; }
section.contact .form h2 { margin-bottom: 30px; }
section.contact .localisation { width: calc(100% - 625px); }
section.contact .localisation .state { margin-bottom: 20px; }
section.contact .localisation .share { gap: 20px; }
section.contact .localisation .share > div { align-items: center; gap: 8px; }


/** Galery **/
section.galery { padding: 70px 0; }
section.galery h2 { text-align: center; margin-bottom: 50px; }
section.galery h2.mb20 { margin-bottom: 20px; }
section.galery .sub-title { text-align: center; font-size: 1rem; line-height: 1.75rem; font-weight: 400; margin-bottom: 50px; }
section.galery .content-galery { flex-wrap: wrap; gap: 30px; margin-bottom: 70px; }
section.galery .content-galery:last-of-type { margin-bottom: 0; }
section.galery .content-galery img,
section.galery .content-galery .media { width: calc((100% - 60px) / 3); height: auto; }
section.galery a.btn { margin: 50px auto 0; }


/** Goodies **/
section.goodies { padding: 70px 0; }
section.goodies h2 { text-align: center; margin-bottom: 20px; }
section.goodies .sub-title { text-align: center; font-size: 1rem; line-height: 1.75rem; font-weight: 400; margin-bottom: 50px; }
section.goodies .articles { gap: 30px; }
section.goodies .articles .article { width: calc((100% - 60px) / 3); }
section.goodies .articles .article .title { font-family:  var(--font-display); font-size: 1.875rem; line-height: 2.75rem; font-weight: 800; text-transform: uppercase; margin-top: 25px; }
section.goodies .articles .article .desc { font-size: 1rem; line-height: 1.688rem; font-weight: 400; margin-top: 12px; }
section.goodies .articles .article .price { font-size: 1rem; line-height: 1.688rem; font-weight: 600; margin-top: 12px; }


/** Calendrier **/
section.agenda { padding: 0 0 70px; }
section.agenda #calendar .fc-toolbar-title { font-family: var(--font-main); font-size: 1.25rem; line-height: 1.875rem; font-weight: 400; text-transform: capitalize; }
.fc .fc-day-today { background: var(--color-white) !important; }
.fc-toolbar-chunk { display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; justify-content:"flex-start"; align-items: center; }
.fc-toolbar-chunk .fc-button-primary { background: var(--color-white); border-radius: var(--radius-circle) !important; width: 40px; height: 40px; padding: 0; border: 1px solid var(--color-text); box-shadow: none !important; }
.fc-toolbar-chunk .fc-button-primary:first-of-type { margin-right: 10px; }
.fc-toolbar-chunk .fc-button-primary:hover,
.fc-toolbar-chunk .fc-button-primary:active { background: var(--color-grey) !important; }
.fc-toolbar-chunk .fc-button-primary span { color: var(--color-text); }
.fc-daygrid-day { background-color: var(--color-white); }
.fc-daygrid-day-events,
.fc-daygrid-event-harness { margin: 0 auto !important; }
[class*="fc-mode-"] { display: block; max-width: 160px; margin: 0 auto !important; padding: 0 !important; }
[class*="fc-mode-"] .fc-custom-event { display: flex; flex-direction: column; color: white !important; border-radius: var(--radius-media); padding: 10px 12px; }
.fc-mode-match .fc-custom-event { background-color: var(--color-match) !important; }
.fc-mode-cabaret .fc-custom-event { background-color: var(--color-cabaret) !important; }
.fc-mode-catch .fc-custom-event { background-color: var(--color-catch) !important; }
[class*="fc-mode-"] .title-agenda { font-size: 1rem; line-height: 1.75rem; font-weight: 600; color: var(--color-white); text-align: center; }
[class*="fc-mode-"] .time-agenda,
[class*="fc-mode-"] .place-agenda { display: flex; flex-direction: row; gap: 8px; justify-content: flex-start; align-items: center; margin-top: 4px; }
[class*="fc-mode-"] .time-agenda div.icone,
[class*="fc-mode-"] .place-agenda div.icone { width: 12px; }
[class*="fc-mode-"] .time-agenda div.icone img,
[class*="fc-mode-"] .place-agenda div.icone img { width: 12px; height: 12px; }
[class*="fc-mode-"] .time-agenda div.txt,
[class*="fc-mode-"] .place-agenda div.txt { font-size: 0.875rem; line-height: 1.125rem; font-weight: 400; color: var(--color-white); white-space: break-spaces; width: calc(100% - 20px); word-break: break-all; }
[class*="fc-mode-"] .time-agenda div.txt { font-weight: 500; }
[class*="fc-mode-"] .place-agenda div.txt { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; }
.fc-daygrid-day .fc-daygrid-day-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    margin: 10px auto;
    font-size: 0.938rem;
    line-height: 1.375rem;
}
.fc-daygrid-day.fc-day-today .fc-daygrid-day-number {
    background-color: var(--color-text);
    color: var(--color-white);
    border-radius: var(--radius-circle);
    width: 28px;
    height: 28px;
}
.fc .fc-scrollgrid {
    border-radius: var(--radius-media);
    overflow: hidden;
}

.modal-agenda {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
  }
  .modal-agenda.show {
    display: flex;
  }
  .modal-content {
    background: #1e1e1e;
    padding: 2rem;
    border-radius: 1rem;
    color: white;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: left;
    position: relative;
  }
  .modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  .modal-content .flex-row {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    gap: 0.5rem;
  }



/** Footer **/
footer .flex-menu { padding: 50px 0 ; gap: 30px; justify-content: space-between; }
footer .flex-menu .adresse p,
footer .flex-menu a { display: block; margin: 12px 0 0; font-size: 0.875rem; line-height: 1.5rem; font-weight: 400; }
footer .flex-menu .share { gap: 10px; margin: 12px 0 0; }
footer .flex-menu .share a { margin: 0; }
footer .flex-menu .share img { width: 15px; height: auto; }
footer .copyright { padding: 30px 0; }


/** Responsive **/
@media (max-width: 1230px) {
    .wrapper { max-width: 950px; }
    section.lr .media { width: 400px; }
    section.lr .content { width: calc(100% - 500px); }
    section.banniere .top { position: absolute; left: 30px; width: calc(100% - 60px); }
    section.banniere .top nav a:first-of-type { display: none; }
    [class*="fc-mode-"] { max-width: 130px; }
    section.contact .form { width: 500px; }
    section.contact .localisation { width: calc(100% - 550px); }
}

@media (max-width: 979px) {
    .wrapper { max-width: 700px; }
    section.lr .media,
    section.lr .cards,
    section.lr .content { width: 100%; }
    section.lr .wrapper { flex-direction: column; gap: 40px; }
    section.lr .media,
    section.lr .cards { order: 1; }
    section.lr .content { order: 2; }
    section.lr .content * { text-align: center; }
    section.lr .content a.btn { margin: 0 auto; }
    section.lr .cards .card { align-items: center; }
    section.cols2 .cards .card { width: 100%; align-items:center; }
    section.galery .content-galery img,
    section.galery .content-galery .media,
    section.cols3 div.content > div,
    section.goodies .articles .article { width: calc((100% - 30px) / 2); }
    section.goodies .articles { flex-wrap: wrap; justify-content: center; gap: 50px 30px; }
    section.contact h2,
    section.contact .state { text-align: center; }
    section.contact img { margin: auto; }
    section.contact > .flex-row { flex-wrap: wrap; justify-content: center; gap: 70px; }
    section.contact > .flex-row > div { width: 100%; }
    section.contact form { align-items: center; }
    section.contact .localisation .share { justify-content: center; }
    section.banniere .content h1 { font-size: 7.5rem !important; }
    section.banniere .content { width: calc(100% - 60px); padding: 80px 0px 0px; }
    section.banniere .top nav a:first-of-type { display: block; }
    section.banniere .top nav { position: fixed; top: 0; right: 0; height: 100vh; width: 100vw; background-color: var(--color-text); flex-direction: column; justify-content: center; align-items: center;  color: var(--color-white); transform: translateX(100%); transition: transform 0.3s ease-in-out; z-index: 999; gap: 60px; }
    section.banniere .top nav.show { transform: translateX(0); }
    section.banniere .top nav a { font-size: 1.5rem; }
    section.banniere .burger { display: flex; flex-direction: column; justify-content: space-around; width: 30px; height: 25px; background: none; border: none; cursor: pointer; z-index: 1000; }
    section.banniere .burger span { height: 3px; border-radius: 2px; width: 100%; display: block; transition: all 0.3s ease; }
    section.banniere .burger.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
    section.banniere .burger.open span:nth-child(2) { opacity: 0; }
    section.banniere .burger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
    section.agenda .wrapper { max-width: calc(100% - 60px); }
    section.agenda [class*="fc-mode-"] { width: 100%; max-width: calc(100% - 10px); }
    section.agenda [class*="fc-mode-"] .title-agenda { font-size: 0.875rem; }
    section.agenda [class*="fc-mode-"] .time-agenda div.txt,
    section.agenda [class*="fc-mode-"] .place-agenda div.txt { font-size: 0.75rem; }
}

@media (max-width: 979px) AND (max-height: 629px) {
    section.banniere .top nav { gap: 40px; }
}

@media (max-width: 979px) AND (max-height: 450px) {
    section.banniere .top nav { gap: 20px; }
    section.banniere .top nav a { font-size: 1.25rem; }
}

@media (max-width: 767px) {
    .wrapper { max-width: calc(100% - 30px); }
    section.galery .content-galery img,
    section.galery .content-galery .media,
    section.cols3 div.content > div,
    section.goodies .articles .article { width: 100%; }
    section.goodies .articles .article { align-items: center; }
    section.goodies .articles .article img { margin: auto; }
    section.simple form.flex-row { flex-direction: column; gap: 20px; align-items: center; }
    section.banniere { padding: 15px 0 50px; }
    section.banniere .content { width: calc(100% - 30px); }
    section.banniere .content h1 { font-size: 5rem !important; line-height: 6rem !important; }
    section.banniere .cta { flex-wrap: wrap; gap: 20px 15px; }

    footer .flex-menu { justify-content: center; flex-wrap: wrap; }
    footer .flex-menu .elem { width: calc((100% - 30px) / 2); }
    footer .flex-menu .elem *,
    footer .copyright { text-align: center; }
    footer .flex-menu .share { justify-content: center; }

    section.agenda .wrapper { max-width: calc(100% - 30px); }
    section.agenda .fc table { font-size: 0.825rem; }
    section.agenda [class*="fc-mode-"] .place-agenda,
    section.agenda [class*="fc-mode-"] .time-agenda { display: none; }
    section.agenda [class*="fc-mode-"] .title-agenda { font-size: 0.563rem; }
    section.agenda .fc-daygrid-day { height: 110px !important; }
}

@media (max-width: 599px) {
    section.banniere .content h1 { font-size: 3rem !important; line-height: 4rem !important; }
    footer .flex-menu .elem { width: 100%; }

    section.agenda [class*="fc-mode-"] .fc-custom-event { padding: 5px; }
    section.agenda [class*="fc-mode-"] .title-agenda { font-size: 0.5rem; line-height: 1rem; font-weight: 400 !important; }
    section.agenda .fc-daygrid-day { height: 85px !important; }
    section.agenda .fc-daygrid-day .fc-daygrid-day-number { font-size: 0.75rem; }
}

@media (max-width: 445px) {
    section.agenda [class*="fc-mode-"] .title-agenda { display: none; }
    section.agenda [class*="fc-mode-"] { text-align: center; }
    section.agenda [class*="fc-mode-"] .fc-custom-event { display: block; border-radius: 100%; width: 20px; height: 20px; margin: auto; }
}