/* -------------------- Fonts -------------------- */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.cdnfonts.com/css/progress-personal-use');
@import url('https://fonts.cdnfonts.com/css/fraga-script');

@font-face {
    font-family: 'CourageRoad';
    src: url('../fonts/COURAGEROAD.TTF') format('truetype');
}

@font-face {
    font-family: 'KrinkesDecorPersonal';
    src: url('../fonts/KRINKESDECORPERSONAL.TTF') format('truetype');
}

/* -------------------- Variables -------------------- */

:root {
    --main-bg-light: #F6F6F6;
    --main-bg-dark: #0a0a0a;
    --text-light: #2D2D2D;
    --text-dark: #fff;
    --primary-safari: #8BCC51;
    --border-safari: #1F332A;
    --primary-storm: #a6e7f1;
    --border-storm: #5a8f97;
}

.card-artist .color-storm {
    color: #a6e7f1;
}

.infos-utile li {
    margin-top: 1rem;
}

/* -------------------- Base -------------------- */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    background-color: var(--main-bg-light);
    color: var(--text-light);
    min-height: 100vh;
}

body.admin {
    flex-direction: row;
}

.storm-body {
    background-color: var(--main-bg-dark);
    color: var(--text-dark);
}

/* -------------------- Utility -------------------- */

.text-uppercase {
    text-transform: uppercase;
}
.text-center {
    text-align: center;
}
.flex {
    display: flex;
}
.flex-column {
    flex-direction: column;
}
.flex-center { 
    justify-content: center; align-items: center;
}
.mt-3 {
    margin-top: 3rem;
}

/* -------------------- Navigation -------------------- */

header {
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 6rem;
    z-index: 100;
}

header nav {
    background-color: #fff;
    border-radius: 1rem;
    padding: 1rem 3rem;
    margin: 1rem auto;
}

.storm-nav {
    background-color: #0a0a0a;
}

.storm-text-nav {
    color: #fff;
}

header nav ul {
    display: flex;
    padding: 0;
    align-items: center;
}

header nav ul li {
    list-style: none;
    padding: 0 1rem;
}

header nav ul li a {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.125rem;
    font-weight: bold;
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.2s ease-in-out;
}

header nav ul li a:hover {
    color: #3498DB;
}

header nav ul li a.active {
    font-weight: 600;
    color: #3498DB;
    border-bottom: 2px solid #3498DB;
}

header nav ul li h1 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5rem;
    color: #3498DB;
    border: 2px solid #3498DB;
    padding: 1rem;
    text-transform: uppercase;
}

.nav-container h1 {
    display: none;
}

/* Index */

.index-party {
    display: flex;
}

.content-party.index-size {
    height: 100vh;
    width: 100%;
}

.button-index {
    display: flex;
    margin-top: 3rem;
    gap: 2rem;
}

.buy-tickets.storm {
    background-color: #a6e7f1;
    color: #1f2833;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    border: 3px solid #5a8f97;
    border-radius: .7rem;
    cursor: pointer;
    margin: 0 1rem 0 0;
    padding: .6rem 2.5rem;
    transition: 0.2s ease-in-out;
}

.buy-tickets.storm:hover {
    scale: 0.95;
    background-color: #58d5e9;
    color: #fff;
    border: 3px solid #258796;
}

.about-info {
    background-color: transparent;
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    border: 1px solid #fff;
    border-radius: .7rem;
    cursor: pointer;
    margin: 0 1rem 0 0;
    padding: 1.2rem 2.5rem;
    transition: 0.2s ease-in-out;
}

.about-info:hover {
    scale: .9;
    background-color: rgba(255, 255, 255, 0.2);
}

.buy-tickets.storm.button-index-size,
.buy-tickets.safari.button-index-size {
    padding: 1.2rem 2.5rem;
}

.buy-tickets.storm.index,
.buy-tickets.index,
.non-disponible.index {
    padding: 1.2rem 2.5rem;
}

/* Page principal */

.content-party{
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.content-party::after,
.content-party-index::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}


.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.content-overlay {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 2rem;
    margin-top: 3rem;
}

.content-party h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-size: 1.125rem;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}

.storm-color {
    color: #a6e7f1;
}

.titre {
    font-family: 'KrinkesDecorPersonal', cursive;
    font-size: 5rem;
    color: #eda724;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.safari-title {
    font-size: 10rem;
    color: #f4a300;
    -webkit-text-stroke: 3px #3e0f15;
    font-weight: 500;
}

.night-container {
    font-family: 'CourageRoad';
    background-color: #6a1b1a;
    border-radius: 10px;
    padding: 5px 15px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: -5.5rem 0 2rem auto;
    transform: rotate(10deg);
}

.night {
    font-size: 40px;
    font-weight: bold;
    color: #e8c1a2;
}

.edition {
    font-size: 14px;
    color: #e8c1a2;
    margin-top: -4px;
}

.storm-title {
    font-family: 'PROGRESS PERSONAL USE', sans-serif;
    font-weight: 500;
    font-size: 8.5rem;
}

.subtitle-party {
    display: flex;
    flex-direction: row;
    gap: 5rem;
    margin: 0 0 6.5rem;
}

.subtitle-party h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 200;
    margin: 0;
}

/* Décompte */

.countdown {
    display: flex;
    gap: 1rem;
}
        
.box {
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 1rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}
        
.box h2 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 600;
}

.box span {
    font-size: 1rem;
    opacity: 0.8;
}

/* About party */

.content-about {
    display: flex;
    gap: 5rem;
    padding: 4rem 35rem;
}

.affiche {
    width: clamp(250px, 40vw, 600px);
}

.affiche.safari {
    width: unset;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    object-fit: contain;
    position: relative;
    width: clamp(250px, 40vw, 600px);
    max-height: 530px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: .75rem;
}

.affiche.safari.mobile-image-block {
    display: none;
}

.affiche img {
    width: 100%;
    height: auto;
    border-radius: .75rem;
}

.img-media-block {
    display: none;
}

.about-party {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-party h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.2rem;
    text-transform: uppercase;
}

.about-party p {
    font-family: 'Poppins', sans-serif;
    text-align: justify;
    margin-bottom: 1rem;
}

.infos-utile,
.infos-utile li {
    font-family: 'Poppins', sans-serif;
    list-style: inherit;
}

.about-party a {
    color: #ffffff;
    text-decoration: none;
}

.about-party a:hover {
    color: #3b82f6;
    text-decoration: underline;
}

.checkout-ticket {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.none-refund {
    font-size: 1rem;
    margin-top: .2rem;
    text-align: left;
}

.buy-tickets.safari {
    background-color: #8BCC51;
    color: #1F332A;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    border: 3px solid #1F332A;
    border-radius: .7rem;
    cursor: pointer;
    margin: 0 1rem 0 0;
    padding: .6rem 2.5rem;
    transition: 0.2s ease-in-out;
}

.buy-tickets:hover {
    scale: 0.95;
    background-color: #ECA720;
    color: #fff;
    border: 3px solid #885e0a;
}

/* Contact */



.content-cart.contact {
    padding: 10rem 2rem;
}

.content-cart label {
    margin-bottom: .4rem;
}

.content-cart button[type="submit"].contact {
    margin: 3rem 0 0 0;
}

/* Contact */

.contact-page {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin: 10rem auto 5rem auto;
    width: 60vw;
}

@media (max-width: 1020px) {
    .contact-page {
        flex-direction: column;
    }
}

@media (max-width: 800px) {
    .contact-page {
        margin-top: 8rem;
        padding: 1rem;
        width: 100%;
    }

    .contact-section h2,
    .faq-section h2 {
        font-size: 1.5rem !important;
    }
}

.contact-section {
    display: block;
    max-width: 25rem;
}

.contact-section h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.2rem;
    color: #3498DB;
    text-transform: uppercase;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-top: 2rem;
}

.contact-content p {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    line-height: 1.65;
}

.contact-content p strong {
    font-size: 16px;
    font-weight: 700;
}

.link-contact {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a73e8;
    text-decoration: underline;
}

.link-contact:hover {
    text-decoration: none;
}

/* End */

/* FAQ */

.faq-section h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.2rem;
    color: #3498DB;
    text-transform: uppercase;
}

.faq-content {
    display: grid;
    gap: 0.75rem;
    margin-top: 2rem;
}

.faq-content details {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: white;
    border-radius: .75rem;
    padding: .75rem 1rem;
    min-width: 600px;
    max-width: 600px;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    max-height: 3rem;
}

@media (max-width: 800px) {
    .faq-content details {
        min-width: unset;
    }
}

.faq-content details[open] {
    max-height: 500px;
    padding-bottom: 1rem;
}

.faq-content summary {
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-content summary::-webkit-details-marker {
    display: none;
}

.faq-content .chev::before {
    content: '+';
    transition: transform .2s ease;
}

details[open] .chev::before {
    content: '-';
}

.faq-content .answer {
    margin-top: .5rem;
    color: #374151;
    line-height: 1.5;
    text-align: justify;
}

#event-map {
    width: 100%;
    height: 380px;
    border-radius: .75rem;
}

/* End */

.content-cart textarea {
    font-weight: 600;
    color: #2a2a2a;
    border: 2px solid #ccc;
    border-radius: 0.5rem;
    font-size: 1rem;
    height: 10rem;
    padding: .5rem;
}

.form-check p {
    margin-top: .2rem;
    text-align: left;
}

.content-cart button[type="submit"].storm,
.content-cart button[type="button"].storm{
    background-color: #a6e7f1;
    color: #1f2833;
    border: 3px solid #5a8f97;
    width: 100%;
}

.content-cart button[type="submit"].storm {
    margin-top: 3rem;
}

.content-cart button[type="submit"].storm:hover,
.content-cart button[type="button"].storm:hover {
    background-color: #58d5e9;
    color: #fff;
    border: 3px solid #258796;
}

.quantity-selector input.storm,
.quantity-selector button.storm {
    background-color: #a6e7f1;
    color: #1f2833;
    border: 3px solid #5a8f97;
    text-align: center;
}

.infos-utile {

}

.comite-exclus {
    font-size: .8rem;
}

/* Line-Up */

.content-lineup {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background-color: #070707;
    color: #fff;
    text-align: center;
    min-height: 35rem;
}

.content-lineup h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.2rem;
    text-transform: uppercase;
}

.card-artist {
    font-family: 'Poppins', sans-serif;
}

.card-artist img {
    width: 18.75rem;
    height: 18.75rem;
    object-fit: cover;
    display: block;
}

.card-artist h2 {
    font-weight: bold;
    font-size: 1.5rem;
    color: #ECA720;
    text-transform: uppercase;
    margin: 1.5rem 0 0 0;
}

.lineup-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-artist {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.scroll-inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    scroll-behavior: smooth;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
    display: flex;
    align-items: center;
}

.swiper-slide {
    text-align: center;
      font-size: 18px;
      display: flex;
      justify-items: center;
      align-items: center;
      margin-right: 0;
}

@media (max-width: 767px) {
    .swiper-slide {
        width: 50% !important;
        flex: 0 0 50% !important;
        margin: 0 auto; /* pour centrer */
    }
    .card-artist img {
        width: 100%;
        height: auto;
    }
}

.lineup-controls {
    margin-top: 2rem;
}

.scroll-left,
.scroll-right {
    background-color: transparent;
    border: 0;
    padding: .5rem;
}

.scroll-left svg,
.scroll-right svg {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background-color: #a6e7f1;
    fill: #1f2833;
    border: 1px solid #5a8f97;
}

.card-artist p {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 200px;
}

/* Footer */

footer {
    font-family: 'Poppins', sans-serif;
    background-color: #070707;
    color: #fff;
    padding: 4rem 25rem 1rem 25rem;
    margin-top: auto;
}

footer img {
    max-width: 20%;
    height: auto;
}

.footer-bloc {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
}

.navigation h3,
.socials h3 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 800;
    color: #a6e7f1;
    text-transform: uppercase;
}

.footer-bloc ul li {
    list-style: none;
    margin: .5rem 0;
}

.footer-bloc ul li a {
    font-family: 'Ubuntu', sans-serif;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease-in-out;
}

.footer-bloc ul li a:hover {
    color: #3498DB;
}

footer hr {
    margin-bottom: .5rem;
}

.navigation h3.safari-footer-title,
.socials h3.safari-footer-title {
    color: #ECA720;
}

.footer-bloc ul li a.safari-footer-link:hover {
    color: #8BCC51;
}

.display-none-for-connexion {
    color: #fff;
    text-decoration: none;
    cursor: none;
}

/* Cart Page */

.cart-main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 1rem;
}

.content-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    font-family: 'Ubuntu', sans-serif;
    text-align: center;
}

.content-cart form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
}

.content-cart form label {
    text-align: left;
}

.quantity-selector,
.content-cart form label {
    margin-top: 2rem;
}

.content-cart input[type="email"],
.content-cart input[type="password"] {
    padding: 0.8rem;
    border: 2px solid #ccc;
    border-radius: 0.5rem;
    font-size: 1rem;
}

input[type="text"] {
    font-weight: 600;
    color: #2a2a2a;
    padding: 0.8rem;
    border: 2px solid #ccc;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.quantity-selector input {
    font-size: .9rem;
    font-weight: bold;
    border: 2px solid #a06a00;
    border-radius: 0.5rem;
    background-color: #eca720;
    color: white;
    margin: 0 0.5rem;
    padding: .6rem 2.5rem;
    text-align: center;
}

.quantity-selector button {
    font-size: 1.2rem;
    font-weight: bold;
    background-color: #eca720;
    color: white;
    border: 2px solid #a06a00;
    padding: 0.3rem 0.8rem;
    border-radius: 0.5rem;
    cursor: pointer;
}

.quantity-selector button:hover {
    background-color: #c18500;
}

.content-cart button[type="submit"],
.content-cart input[type="submit"],
.button-back,
.non-disponible {
    background-color: #8BCC51;
    color: #1F332A;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    border: 3px solid #1F332A;
    border-radius: .7rem;
    cursor: pointer;
    padding: .6rem 2.5rem;
    transition: 0.2s ease-in-out;
    margin-top: 3rem;
}

.button-back,
.non-disponible {
    background-color: #ececec;
    border: 3px solid #979797;
    margin: 1rem 0 0 0;
    width: 100%;
}

.button-back:hover,
.non-disponible:hover {
    scale: 0.95;
    background-color: #eaeaea;
}

.content-cart button[type="submit"]:hover,
.content-cart input[type="submit"]:hover {
    scale: 0.95;
    background-color: #ECA720;
    color: #fff;
    border: 3px solid #885e0a;
}

/* Contact */

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 25rem;
    gap: 2rem;
}

.contact-form h2 {
    text-align: center;
}

.contact-form article {
    font-weight: 600;
    color: #2a2a2a;
    border: 2px solid #ccc;
    background-color: #ffffff;
    border-radius: 0.5rem;
    font-size: 1rem;
    height: auto;
    width: 100%;
    margin: .5rem;
    padding: 1rem 0;
}

.contact-form article h1 {
    margin: 0 0 1rem .5rem
}

.contact-form article p {
    margin: 0 0 0 .5rem;
}

.contact-form article p {
    margin-top: .5rem;
}

@media (max-width: 1920px) {
    .content-about {
        padding: 4rem 8rem;
    }

    footer {
        padding: 4rem 15rem 1rem 15rem;
    }
}

@media (max-width: 768px) and (orientation: portrait) {
    body {
        max-width: 100%;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
    }

    .nav-container h1 {
        display: block;
        font-family: 'Ubuntu', sans-serif;
        font-size: 1rem;
        color: #3498DB;
        border: 2px solid #3498DB;
        padding: 1rem;
        text-transform: uppercase;
    }

    .burger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
        z-index: 100;
    }

    .burger.storm span {
        background-color: #fff;
    }

    .burger span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #000;
        border-radius: 2px;
        transition: 0.3s;
    }

    .burger.open span:nth-child(1) {
        position: absolute;
        top: 40px;
        transform: rotate(45deg);
    }

    .burger.open span:nth-child(2) {
        opacity: 0;
    }

    .burger.open span:nth-child(3) {
        position: absolute;
        top: 40px;
        transform: rotate(-45deg);
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .burger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        margin-top: 5rem;
        gap: 1rem;
        height: 100vh;
        max-height: 0;
        transition: max-height 0.4s ease;
    }

    .nav-links.active {
        display: flex;
        max-height: 100vh;
    }

    #header-nav {
        transition: border-radius 0.3s ease, margin 0.3s ease;
    }

    #header-nav.active {
        align-items: flex-start;
        border-radius: 0;
        margin: 0;
        width: 100%;
    }

    header nav {
        flex-direction: column;
        align-items: flex-start;
    }

    header nav ul li {
        padding: 0.5rem 0;
        text-align: left;
    }

    header nav ul li h1 {
        display: none;
    }

    .button-index {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .buy-tickets.storm,
    .about-info {
        margin: 0;
    }

    .countdown {
        flex-wrap: wrap;
        gap: unset;
        justify-content: center;
    }

    .countdown .box {
        align-content: center;
        width: 130px;
        height: 110px;
        margin: .5rem;
    }

    .countdown .box h2 {
        font-size: 2.5rem;
    }

    .countdown .box span {
        font-size: .8rem;
    }

    .content-party {
        height: 100vh;
    }

    .content-party h1 {
        font-size: 4.5rem;
        margin: 0 0 .5rem 0;
    }

    .index-party {
        flex-direction: column;
    }

    .safari-title {
        font-size: 7rem;
    }

    .night-container {
        margin: -3.5rem 0 2rem auto;
        gap: .5rem;
    }

    .night {
        font-size: 20px;
    }

    .edition {
        font-size: 12px;
    }

    .content-party h2,
    .subtitle-party h3 {
        font-size: 1rem;
    }

    #margin-top {
        margin: 2rem 0 .5rem 0;
    }

    .subtitle-party {
        gap: 1.5rem;
        margin: 0 0 3rem 0;
    }

    .subtitle-party h3 {
        font-size: .9rem;
        font-weight: 400;
    }

    .content-about {
        flex-direction: column;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .content-lineup {
        min-height: 30rem;
    }

    .content-lineup h2,
    .content-about h2 {
        font-size: 1.5rem;
    }

    .card-artist img {
        width: 10rem;
        height: 10rem;
    }

    .card-artist h2 {
        font-size: 1rem;
    }

    .card-artist p,
    .content-about p {
        font-size: .9rem;
    }

    .affiche {
        width: 100%;
        margin: 0;
    }

    .affiche img {
        width: 100%;
        height: auto;
    }

    .img-media-block {
        display: block;
    }

    .img-media-none {
        display: none;
    }

    footer {
        padding: 2rem 1rem;
    }

    footer img {
        max-width: 10rem;
        height: 10rem;
    }

    .footer-bloc {
        flex-direction: column;
        align-items: flex-start;
        justify-content: unset;
        gap: 2rem;
    }

    .video-container,
    .image-container {
        width: 100% !important;
    }

    .affiche.safari.mobile-image-block {
        display: flex;
    }

    .affiche.safari.mobile-image-none {
        display: none;
    }

    .quantity-selector input {
        padding: .6rem;
    }

    .content-cart button[type="submit"] {
        margin: 0;
    }

    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 800px) and (orientation: landscape) {
    header nav {
        padding: 1rem 8rem;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
    }

    .nav-container h1 {
        display: block;
        font-family: 'Ubuntu', sans-serif;
        font-size: 1rem;
        color: #3498DB;
        border: 2px solid #3498DB;
        padding: 1rem;
        text-transform: uppercase;
    }

    .burger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
        z-index: 100;
    }

    .burger.storm span {
        background-color: #fff;
    }

    .burger span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #000;
        border-radius: 2px;
        transition: 0.3s;
    }

    .burger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger.open span:nth-child(2) {
        opacity: 0;
    }

    .burger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-top: 5rem;
    }

    .burger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        margin-top: 1rem;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    header nav {
        flex-direction: column;
        align-items: flex-start;
    }

    header nav ul li {
        padding: 0.5rem 0;
        text-align: left;
    }

    header nav ul li h1 {
        display: none;
    }

    .content-party {
        height: 150vh;
    }

    .content-about {
        padding: 2rem 1rem !important;
    }

    .card-artist img {
        width: 10rem;
        height: 10rem;
    }

    footer {
        padding: 2rem 0 1rem 0;
    }

    footer img {
        max-width: 100%;
        height: 200px;
    }

    .display-none-for-connexion {
        margin-left: 2rem;
    }
}

/* Video container */

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../img/bg_storm.png');
    object-fit: contain;
    position: relative;
    width: clamp(250px, 40vw, 600px);
    max-height: 530px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: .75rem;
}

.video-container video {
    display: block;
    object-fit: cover;
    width: auto;
    height: 100%;
}

.video-toggle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, opacity 0.3s ease;
    opacity: 1; /* visible par défaut */
}

.video-toggle-center:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* SVG à l'intérieur du bouton : adapte la taille */
.video-toggle-center svg {
    width: 80px;
    height: 80px;
    fill: #a6e7f1; /* couleur de l'icône : noir pour contraste */
    transition: fill 0.3s ease;
}

/* Hover : l'icône peut changer de couleur */
.video-toggle-center:hover svg {
    fill: #58d5e9;
}

/* Si on veut cacher le bouton quand vidéo joue, en JS on met opacity: 0 */
.video-toggle-center.hidden {
    opacity: 0;
    pointer-events: none; /* évite les clics quand caché */
}

.video-container.playing .video-toggle-center {
    opacity: 0;
    pointer-events: none;
}

.video-container.playing:hover .video-toggle-center {
    opacity: 1;
    pointer-events: auto;
}


.sound-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 10;
}

.sound-toggle:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Programme Page */

.programme-main {
    margin-top: 10rem;
}

.event-program {
    background-color: #fff;
    padding: 2rem 5rem;
    margin: 2rem 10rem;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-item {
    border-bottom: 1px solid #3498DB;
    margin-bottom: 1rem;
    padding: 2rem 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.content-event {
    display: flex;
    justify-content: space-between;
    padding: .75rem 1.25rem;
    cursor: pointer;
}

.event-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #3498DB;
    border-radius: .5rem;
    text-align: center;
    width: 15rem;
    height: 5rem;
}

.event-icon h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: #fff;
}

.content-event h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.3rem;
    color: #0a0a0a;
    text-transform: uppercase;
    margin-top: .2rem;
    margin-left: 1rem;
}

.toggle-btn {
    background: none;
    border: none;
    color: #0a0a0a;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.event-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 1.5rem;
    color: #000;
}

.event-item.open .event-details {
    max-height: 500px; /* assez pour tout afficher */
    padding: 1rem 1.5rem;
}

.event-item.open .toggle-btn {
    transform: rotate(180deg);
}

/* navbar aside */

.sidebar {
    font-family: 'Segoe UI', sans-serif;
    background-color: #141c25;
    color: white;
    width: 250px;
    height: 100vh;
    padding: 1rem;
    box-sizing: border-box;
    position: fixed;
    transition: left 0.3s ease;
    z-index: 200;
}
.sidebar h2 {
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
}
.sidebar a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem .35rem;
    color: #f3faff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.sidebar a.active {
    background-color: #f0f0f0;
    color: #000;
    font-weight: bold;
}

.sidebar a:hover {
    background-color: #f3faff;
    color: #141c25;
}

.sidebar a:hover i {
    color: #141c25;
}

.sidebar i {
    min-width: 20px;
}

.mobile-toggle-btn {
    display: none;
    position: fixed;
    top: 1rem;
    left: .5rem;
    background-color: #141c25;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    z-index: 2000;
}

.dropdown {
    width: 100%;
}

.dropdown-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    font-family: 'Segoe UI', sans-serif;
    text-align: left;
    width: 100%;
    cursor: pointer;
    padding: 0.75rem .5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dropdown-toggle:hover {
    background-color: #f3faff;
    color: #141c25;
}

.dropdown-toggle:hover .arrow {
    color: #141c25;
}

.dropdown-menu {
    display: none;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.dropdown-menu li a {
    padding: 0.625rem 1.5rem;
    margin-left: 2.5rem;
    color: #d3d3d3;
    display: flex;
    gap: 0.5rem;
    text-decoration: none;
    border-left: 1px solid #e7e9f1;
}

.dropdown-menu li a:hover {
    background-color: rgba(243, 250, 255, .1);
    color: #fff;
}

.dropdown-menu li a:hover i {
    color: #fff;
}

.dropdown.open .dropdown-toggle {
    background-color: #f3faff;
    color: #141c25;
}

.dropdown.open .dropdown-menu {
    display: flex;
    margin-top: 5px;
    margin-bottom: 5px;
}

.dropdown.open .dropdown-toggle .fa-chevron-right {
    margin-bottom: .2rem;
}

.arrow {
    transition: transform 0.3s ease;
}

.dropdown.open .arrow {
    transform: rotate(-90deg);
}


@media (max-width: 768px) {
    .mobile-toggle-btn {
        display: block;
    }

    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        color: white;
        z-index: 1000;
    }

    .sidebar.mobile-open {
        transform: translateX(0);
    }

    .mobile-toggle-btn svg {
        transform: rotate(180deg);
    }

    .mobile-toggle-btn.active svg {
        transform: rotate(0deg);
    }

    .mobile-toggle-btn.active {
        background-color: transparent;
    }
}

.honeypot {
    display: none;
}

/* Scanneur */

.main-dashboard {
    position: relative;
    background: #F3F4F3;
    color: #fff;
    width: 100vw;
    min-height: 70vh;
    padding: 2rem 10rem 2rem 20rem;
    z-index: 22;
}

.main-dashboard::before {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #3498DB;
    width: 100%;
    height: 12rem;
    z-index: -1;
    content: '';
}

@media (max-width: 768px) and (orientation: portrait) {
    .main-dashboard {
        padding: 5rem 1rem 1rem;
    }
}

.header-nav {
    padding-bottom: 30px;
}

.header-nav h3 {
    font-family: "Nunito", sans-serif;
    font-size: 26px;
    font-weight: 700;
}

.header-nav nav {
    margin-top: 1rem;
}

.header-nav nav ol {
    display: flex;
    gap: .8rem;
    align-items: center;
    list-style: none;
}

.header-nav nav ol li {
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    font-size: 13px;
}

.header-nav nav ol li a {
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
}

.header-nav nav ol li a:hover {
    text-decoration: underline;
}

.content.scan h2 {
    font-family: "Nunito", sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #14256A;
    margin: 1rem 0 2rem 0;
}

.content.scan,
.content.galerie {
    background-color: #fff;
    color: #000;
    border-radius: 5px;
    padding: 1rem;
}

.scanneur-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 10rem 2rem;
}

.scanner-button {
    background-color: #a6e7f1;
    color: #1f2833;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    border: 3px solid #5a8f97;
    border-radius: .7rem;
    cursor: pointer;
    margin: 1rem 0;
    padding: 1.2rem 2.5rem;
    transition: 0.2s ease-in-out;
}

@media (max-width: 768px) and (orientation: portrait) {
    .content.scan {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .scanner-button {
        font-size: .8rem;
        padding: .8rem;
        width: 75%;
    }

    .fade-visible {
        display: flex;
        justify-content: space-around;
    }

    .fade-visible input {
        margin: 1rem auto;
        width: 50%;
    }

    .fade-visible button {
        width: 30%;
    }
}

/* Animation Scanneur */

.checkmark-wrapper {
    width: 120px;
    height: 120px;
    margin: 0rem auto 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkmark-svg {
    width: 100%;
    height: 100%;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.checkmark-bg {
    fill: none;
    stroke: #4CAF50;
    stroke-width: 6;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: draw-circle 0.6s ease-out forwards;
}

.checkmark-check {
    fill: none;
    stroke: #4CAF50;
    stroke-width: 6;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: draw-check 0.4s ease-out 0.6s forwards;
}

@keyframes draw-circle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes draw-check {
    to {
        stroke-dashoffset: 0;
    }
}

.errormark-wrapper {
    width: 120px;
    height: 120px;
    margin: 0rem auto 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.errormark-svg {
    width: 100%;
    height: 100%;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.errormark-bg {
    fill: none;
    stroke: #E53935;
    stroke-width: 6;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: draw-circle-red 0.6s ease-out forwards;
}

.errormark-line1,
.errormark-line2 {
    stroke: #E53935;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: draw-line 0.3s ease-out forwards;
}

.errormark-line1 {
    animation-delay: 0.1s;
}

.errormark-line2 {
    animation-delay: 0.3s;
}

@keyframes draw-circle-red {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes draw-line {
    to {
        stroke-dashoffset: 0;
    }
}

.fade {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fade-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.fade-visible {
    opacity: 1;
    visibility: visible;
}

/* Box alerte */

.box-alert {
    padding: .5rem;
    margin: .5rem;
    border-radius: 5px;
    text-align: center;
}

.color-success {
    border: .1rem solid #4CAF50;
    color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.5);
}

.color-error {
    border: .1rem solid #C62828;
    color: #C62828;
    background-color: rgba(198, 40, 40, 0.05);
}

/* Ajouter Galerie */

.main-form-galerie {
    margin: 2rem 0 2rem 15.625rem;
}

.main-form-galerie h1 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5rem;
    text-align: left;
    text-transform: uppercase;
    color: #3498DB;
}

.main-form-galerie hr {
    height: 1px;
    border: none;
    background: linear-gradient(to right, #9c978f 0%, rgba(156, 151, 143, 0.5) 90%, transparent 100%);
    margin: .5rem 0;
}

.categorie-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.categorie-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.header {
    display: flex;
    align-items: center;
    padding: 1rem;
    cursor: pointer;
    gap: 1rem;
}

.cover-img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.info h2 {
    margin: 0;
    font-size: 1.2rem;
    color: #0074d9;
}

.info span {
    font-size: 0.9rem;
    color: #666;
}

.actions {
    display: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.options-container {
    padding: .5rem;
}

.options-toggle {
    display: flex;
    align-items: center;
}

.options-toggle.open + .actions {
    display: flex;
    opacity: 1;
    max-height: 300px;
}

.actions form {
    margin: 1rem .5rem;
}

.actions button {
    flex: 1;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    background-color: #e3f2fd;
    color: #0074d9;
    transition: background-color 0.2s;
}

.actions button:hover {
    background-color: #bbdefb;
}

.options-wrapper {
    padding: 10px;
    border-top: 1px dashed #ccc;
}

.options-wrapper .toggle-options {
    background: none;
    border: none;
    color: #0074D9;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 5px;
}

.options-toggle svg {
    transition: transform 0.3s ease;
}

.options-toggle.open svg {
    transform: rotate(180deg);
}

.options-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.options-content.open {
    max-height: 1000px; /* assez grand pour contenir le contenu */
    opacity: 1;
}

/* Ajouter galerie */

.form-ajout {
    display: flex;
}

.label-input-flex {
    display: flex;
    flex-direction: column;
}

.width-galerie {
    max-width: 400px;
    width: 100%;
}

.custom-file-galerie {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 400px;
    margin: 10px 0;
}

.custom-file-galerie input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0; /* masque l'input natif */
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.custom-file-galerie-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f1f1f1;
    border: 2px dashed #ccc;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    color: #555;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 1;
}

.custom-file-galerie-label:hover {
    background: #e8f0fe;
    border-color: #4a90e2;
}

.custom-file-galerie-label span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    margin-right: 10px;
}

.custom-file-galerie-label .btn {
    background: #4a90e2;
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 13px;
    white-space: nowrap;
}

/* Programme */

.main-form-program {
    margin: 10rem auto 5rem auto;
    max-width: 65rem;
}

.main-form-program h1 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5rem;
    text-align: left;
    text-transform: uppercase;
    margin-left: 1rem;
    color: #3498DB;
}

.main-form-program h1,
.main-form-program hr {
    margin-left: 0;
}

.main-form-program hr {
    margin-bottom: 2rem;
}

.form-program {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.style-program {
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background: white;
    border-radius: 16px;
    width: 65rem;
}

.title-program {
    display: flex;
    align-items: center;
}

.title-program img {
    width: 15rem;
    height: 8rem;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 16px;
}

.title-date {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.title-date h1 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5rem;
    color: #3498DB;
    text-transform: uppercase;
}

.title-date h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #2D2D2D;
    text-align: left;
    text-transform: uppercase;
}

.details-program {
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    border-top: 1px solid #ddd;
    background-color: #f9f9f9;
    border-radius: 0 0 16px 16px;
    text-align: left;
}

.details-program h3 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin: 1rem 0;
}

.details-program .event-time {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #3498DB;
}

.details-program .event-time svg {
    fill: #3498DB;
    height: 17px;
    margin-right: .2rem;
}

.details-program .event-desc {
    flex: 1;
    font-weight: 600;
    font-size: 0.95rem;
    color: #2D2D2D;
    margin-left: .5rem;
}

.details-program p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #2D2D2D;
    text-align: justify;
    margin-top: 1rem;
}

.details-program ul {
    list-style: none;
    margin-bottom: 2rem;
}

.details-program ul:last-child {
    margin-bottom: 0;
}

.details-program ul li {
    font-size: 0.85rem;
    color: #666;
    margin-left: 4.8rem;
    margin-top: 0.3rem;
    font-style: italic;
}

.details-program span {
    text-transform: uppercase;
}

.style-program.open .details-program {
    max-height: 50rem;
    padding: 16px;
}

.arrow-icon {
    transition: transform 0.3s ease;
    margin: 0 1rem 0 auto;
}

.style-program.open .arrow-icon {
    transform: rotate(180deg);
}

.mobile-none {
    display: none;
}

@media (max-width: 768px) and (orientation: portrait) {
    .main-form-program {
        margin: 10rem 1rem 5rem 1rem;
    }

    .style-program {
        width: unset;
    }

    .title-program {
        flex-direction: column;
        align-items: flex-start;
    }

    .title-program img {
        width: 100%;
        margin-right: 0;
    }

    .mobile-scroll {
        display: flex;
        padding: 1rem;
        width: 100%;
    }

    .mobile-none {
        display: block;
    }

    .mobile-block {
        display: none;
    }

    .title-date h1 {
        font-size: 1.2rem;
    }

    .details-program .event-time {
        align-items: unset;
    }
}

/* Dashboard */

.dashboard-container {
    margin-left: 15.6rem;
}

.dashboard-header {
    background: #1976d2;
    padding: 1rem 2rem;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: calc(100% - 15.6rem);
}
.dashboard-header h1 {
    margin: 0;
    font-size: 1.5rem;
}

/* Gestion de la galerie */

.galerie-panel {
    width: 100%;
    margin-left: 15.6rem;
    border-radius: 12px;
    font-family: 'Segoe UI', sans-serif;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-top: 5rem;
    padding-left: 1rem;
}

.panel-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.panel-header p {
    margin: 0;
    color: #888;
}

.btn-add {
    background: #1976d2;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: background 0.3s;
}

.btn-add:hover {
    background: #145aa0;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 8px;
    margin-left: 1rem;
}

.styled-table th,
.styled-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.styled-table thead {
    background: #f8f8f8;
}

.styled-table tr:hover {
    background: #f9f9f9;
}

.table-actions {
    display: flex;
    gap: 10px;
}

.edit-btn,
.delete-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: #555;
    transition: color 0.2s;
}

.edit-btn:hover {
    color: #1976d2;
}

.delete-btn:hover {
    color: #d32f2f;
}

@media (max-width: 768px) {
    .panel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .btn-add {
        width: 100%;
        text-align: center;
    }

    .styled-table thead {
        display: none;
    }

    .styled-table tr,
    .styled-table td {
        display: block;
        width: 100%;
    }

    .styled-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    .styled-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 1rem;
        font-weight: bold;
        text-align: left;
        color: #888;
    }
}

/* Popup suppression */

.modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 400px;
    text-align: center;
}

.modal-actions {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
}

.confirm-btn {
    background: #d32f2f;
    color: white;
    padding: 0.5rem 1.2rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.cancel-btn {
    background: #ccc;
    color: black;
    padding: 0.5rem 1.2rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.fade-hidden {
    display: none;
}


/* Ajouter une galerie */

.ajout-categorie {
    background: #fff;
    padding: 20px;
    margin-top: 2rem;
    margin-left: 20rem;
    border-radius: 8px;
    box-shadow: 0 0 4px rgba(0,0,0,0.1);
}
.form-ajout label {
    display: block;
    margin-top: 10px;
}
.form-ajout input[type="file"] {
    margin-bottom: 10px;
}
.btn-submit {
    background: #1976d2;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 4px;
    cursor: pointer;
}

/* Modifier une galerie */

.gestion-categorie {
    margin-left: 15.6rem;
}

.form-gestion {
    display: flex;
    gap: 1rem;
    padding-top: 5rem;
    padding-left: 1rem;
}

.bloc-section {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.bloc-section h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

.bloc-section form {
    display: flex;
    flex-direction: column;
}

.bloc-section label,
.cover-preview p {
    color: var(--text-light);
    text-align: left;
    margin-top: 2rem;
    margin-left: .2rem;
    margin-bottom: .4rem;
}

.bloc-section input[type="text"] {
    font-size: 1rem;
    border: 2px solid #ccc;
    box-sizing: border-box;
    padding: .8rem;
    margin-top: 5px;
    width: 100%;
}

.cover-preview {
    margin-top: 10px;
    text-align: center;
}

.cover-preview img {
    max-width: 100%;
    border-radius: 8px;
    margin: .5rem auto;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.bloc-section button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 16px;
    background: #007BFF;
    border: none;
    color: white;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.bloc-section button:hover {
    background: #005fc1;
}

.images-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px 0;
}

.image-checkbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: border-color 0.2s;
}

.image-checkbox:hover {
    border-color: #ccc;
}

.image-checkbox input[type="checkbox"] {
    position: absolute;
    top: 6px;
    left: 6px;
    z-index: 2;
    width: 18px;
    height: 18px;
}

.image-checkbox img {
    height: 160px; /* fixe la hauteur */
    width: auto;
    max-width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

/* Custom file */

.custom-file {
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.custom-file input[type="file"] {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.custom-file-label {
    display: inline-block;
    background-color: #eee;
    color: #333;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
    cursor: pointer;
    width: 100%;
    margin-left: 0;
    text-align: center;
    transition: background 0.2s;
}

.custom-file-label:hover {
    background-color: #ddd;
}

/* Conteneur principal */
.uploader-container {
    max-width: 500px;
    margin: 40px auto;
    background-color: #1e1e1e;
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    font-family: Arial, sans-serif;
}

/* Zone de drop */
.dropzone {
    border: 2px dashed #555;
    border-radius: 10px;
    background-color: #2a2a2a;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: border 0.3s ease;
}

.dropzone:hover {
    border-color: #1a73e8;
}

/* Icône image */
.dropzone img {
    width: 48px;
    opacity: 0.6;
    margin-bottom: 10px;
}

/* Texte dans la zone */
.dropzone p {
    color: #ccc;
    font-size: 14px;
}

.dropzone span {
    color: #4ea3ff;
    text-decoration: underline;
}

/* Zone URL */
.url-zone {
    margin-top: 25px;
}

.url-zone label {
    font-size: 13px;
    color: #aaa;
}

.url-zone input {
    width: 70%;
    padding: 8px;
    background: #333;
    border: none;
    border-radius: 6px 0 0 6px;
    color: #fff;
    font-size: 14px;
}

.url-zone button {
    padding: 8px 14px;
    background-color: #1a73e8;
    color: white;
    border: none;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    font-size: 14px;
}

.url-zone button:hover {
    background-color: #1665c1;
}

/* Affichage de la galerie */

.galerie-view {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-left: 16.6rem;
    padding: 1.25rem;
}

.galerie-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.galerie-header h1 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5rem;
    text-align: left;
    text-transform: uppercase;
    margin-left: 1rem;
    color: #3498DB;
}

.galerie-header hr {
    height: 1px;
    border: none;
    background: linear-gradient(to right, #9c978f 0%, rgba(156, 151, 143, 0.5) 90%, transparent 100%);
    margin: .5rem 1rem;
    width: 100%;
}

.btn-light {
    background: #a6e7f1;
    color: #fff;
    border: 2px solid #5a8f97;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background 0.3s;
}

.btn-light:hover {
    background: #58d5e9;
    color: #fff;
    border-color: #258796;
}

/* Cartes galerie */

.grid-categories {
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(370px,1fr));
    gap:1rem;
    margin-top: 5rem;
}

.card {
    display:flex;
    flex-direction:column;
    overflow:hidden;
    position:relative;
    text-decoration: none;
}

.card-media {
    width: 370px;
    height: 350px;
    overflow: hidden;
    position: relative;
}

@media (max-width: 758px) {
    .galerie-header {
        flex-direction: column;
    }

    .btn-light {
        margin-top: .5rem;
        margin-left: auto;
    }

    .galerie-title h1 {
        margin-left: 0;
    }

    .galerie-title hr {
        margin: .5rem 0;
    }

    .card-media {
        width: 10rem;
        height: 10rem;
    }

    .grid-categories {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        gap: 2rem;
        margin-top: 2rem;
    }

    .card-footer {
        justify-content: center !important;
        padding: .75rem 0 !important;
    }

    .card-title  {
        font-size: 1rem !important;
    }
}

.card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 102, 255, 0.3); /* ton overlay bleu transparent */
    opacity: 0; /* caché par défaut */
    transition: opacity 0.3s ease; /* transition douce */
}

.card-media:hover::after {
    opacity: 1; /* visible au survol */
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-footer {
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:.75rem .5rem}

.card-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5rem;
    text-align: left;
    text-transform: uppercase;
    color: #000;
}

/* Titre catégorie */
.section-titre{display:flex;align-items:center;justify-content:space-between;margin-top:.25rem}
.cat-titre{margin:0;font-size:1.25rem}
.alert{color:#ff7373}
.muted{color:var(--muted)}

/* Grille photos */
.grid-photos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* (optionnel) points de rupture plus serrés */
@media (max-width: 1200px){
    .grid-photos {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 800px) {
    .grid-photos {
        grid-template-columns: repeat(2, 1fr);
    }
}

.photo{
    position: relative;
    aspect-ratio: 4 / 3;   /* ou 1 / 1 pour des carrés */
    border-radius: .5rem;
    overflow: hidden;
    cursor: pointer;
}

.photo img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.photo:hover img {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox{position:fixed;inset:0;background:rgba(0,0,0,.9);display:none;align-items:center;justify-content:center;padding:2rem;z-index:1000}
.lightbox.open{display:flex}
.lightbox img{max-width:min(92vw,1400px);max-height:86vh;border-radius:.75rem;box-shadow:0 20px 60px rgba(0,0,0,.6)}
.lightbox .close{position:absolute;top:1rem;right:1rem;border:none;background:transparent;color:#fff;font-size:2rem;line-height:1;cursor:pointer}
.lightbox .nav{position:absolute;top:50%;transform:translateY(-50%);border:none;background:rgba(255,255,255,.08);backdrop-filter:saturate(180%) blur(6px);padding:.5rem .75rem;border-radius:.75rem;color:#fff;font-size:1.25rem;cursor:pointer}
.lightbox .prev{left:1rem}
.lightbox .next{right:1rem}

@media (prefers-reduced-motion: no-preference){
    .lightbox img{transition:opacity .2s ease}
}

.pagination {
    display:flex;
    justify-content:center;
}

.pagination ol {
    list-style:none;
    display:flex;
    gap:.25rem;
    padding:0;
    margin:1rem 0;
    flex-wrap:wrap;
}

.pagination li {
    display:inline-flex;
}

.pagination li a {
    display:block;
    padding:.4rem .6rem;
    border:1px solid #ddd;
    border-radius:6px;
    text-decoration:none;
}

.pagination li.active a {
    background: #a6e7f1;
    color: #fff;
    border-color: #5a8f97;
}

.pagination li a:hover {
    background: #58d5e9;
    color: #fff;
    border-color: #258796;
}

.pagination li.gap {
    align-items:center;
    padding:0 .25rem;
}

@media (max-width: 640px) {
    .pagination--full { display:none; }      /* cache la longue liste en mobile */
}
@media (min-width: 641px) {
    .pagination--compact { display:none; }   /* cache la compacte en desktop */
}

/* Dashboard */

/* Statuts tickets vendus */

.content.dashboard {
    background-color: #fff;
    border-radius: 5px;
    padding: 1rem;
}

.sell-tickets-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
    margin-bottom: 30px;
}

.activity-content {
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
}

.count-content {
    position: relative;
    margin-bottom: 40px;
}

.count-content h2 {
    font-family: "Comfortaa", cursive;
    font-size: 14px;
    font-weight: 100;
    color: #8890B5;
    line-height: 1;
    margin-bottom: 15px;
}

.count-content h3 {
    font-family: "Comfortaa", cursive;
    font-size: 28px;
    font-weight: 400;
    color: #14256A;
    margin-bottom: 0;
    line-height: 1;
}

.activity-content h4 {
    position: absolute;
    right: 22px;
    top: 32px;
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    background: #508FF4;
    border-radius: 3px;
    padding: 4px 14px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #F8F9FF;
    position: relative;
    margin-bottom: 10px;
    border-radius: 30px;
}

.progress-bar .tips-bar {
    display: inline;
}

.progress-bar .tips-bar span {
    position: absolute;
    margin-top: -23px;
    padding: 2px 4px;
    font-size: 11px;
    left: 0px;
    font-family: "Comfortaa", cursive;
    font-weight: 400;

}

.progress-bar .fill-bar {
    background: rgb(80, 143, 244);
    transition: width 2s ease-in-out;
    display: block;
    position: relative;
    height: 100%;
    border-radius: 30px;
}

@media (max-width: 768px) and (orientation: portrait) {
    .sell-tickets-content {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 15px;
    }

    .activity-content {
        background-color: transparent;
    }

    .tip {
        left: 260px !important;
    }
}

/* Table Users */

.table-header {
    padding: 22px 30px;
}

.table-header h3 {
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #101038;
}

.table-users table {
    width: 1042px;
    clear: both;
    border-collapse: separate;
    color: #000;
    text-align: left;
    padding: 5px 30px 30px 30px;
}

.table-users table thead tr th {
    font-family: "Nunito", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #64C5B1;
    text-transform: capitalize;
    padding: 13px 15px;
}

.table-users table tbody tr td {
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #FFB98A;
    text-align: left;
    padding: 20px 15px;
}

.table-users table tbody tr td a {
    display: inline-block;
    font-size: 10px;
    font-weight: 400;
    color: #fff;
    background: #a0a0a0;
    border-radius: 3px;
    padding: 4px 14px;
    text-decoration: none;
}

/* Rendre la table responsive et éviter la largeur fixe */
.table-users { overflow-x: auto; }
.table-users table { width: 100%; max-width: 100%; }

/* Bouton de toggle : flèche contrôlée par aria-expanded, pas via le texte JS */
.responsive-users .row-toggle {
    all: unset;
    cursor: pointer;
    text-decoration: none;
}

/* Détails (le <dl>) */
.details-list {
    display: grid;
    gap: .5rem .75rem;
    grid-template-columns: repeat(1, 1fr);
    align-items: start;
}
.details-list dt { font-weight: 600; width: 5rem;}
.details-list dd { margin: 0; }
.details-list .actions a { margin-right: .5rem; }
.details-list-deply {
    display: flex;
    gap: 1rem;
}

/* Bouton toggle (mobile seulement) */
.responsive-users .row-toggle {
    all: unset;
}

/* Mobile : bouton visible et cliquable */
@media (max-width: 768px) {
    .responsive-users .row-toggle {
        cursor: pointer;
        display: inline-block;
        padding: .25rem .125rem;
    }
}

@media (max-width: 768px) {
    .responsive-users th.hidemobile,
    .responsive-users td.hidemobile {
        display: none !important;
    }

    /* Optionnel: éviter la casse avec certaines libs */
    .responsive-users thead th,
    .responsive-users tbody td {
        white-space: nowrap;
    }

    .table-header {
        padding: 22px 15px;
    }

    .table-users {
        overflow-x: unset;
    }

    .table-users table {
        padding: 5px 30px 30px 0;
    }

    .details-row .details {
        display: flex;
        flex-direction: column;
        gap: .5rem;
    }

    .details-row .details p {
        display: flex;
        gap: .5rem;
    }

    .details-row .details p strong {
        width: 4rem;
    }

    .capitalize {
        text-transform: capitalize;
    }
}


/* Desktop : pas de style clic ni surlignement */
@media (min-width: 769px) {
    .responsive-users .row-toggle::after {
        content: "";
    }
    .responsive-users .row-toggle {
        cursor: default;
        text-decoration: none;
    }
}

/* Accès refusé modèle */

.overlay-refus {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    display: grid;
    place-items: center;
    z-index: 99999;
}
.modal-refus {
    width: min(520px, 92vw);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    padding: 28px 24px 24px;
    text-align: center;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
    animation: pop-in .2s ease-out;
}
@keyframes pop-in {
    from { transform: translateY(8px) scale(.98); opacity: 0; }
    to   { transform: translateY(0) scale(1); opacity: 1; }
}
.modal-refus h2 {
    margin: 0 0 .25rem;
    font-size: 1.35rem;
}
.modal-refus p {
    margin: 0 0 .5rem;
    color: #555;
    line-height: 1.45;
}
.modal-refus .meta {
    font-size: .9rem;
    color: #777;
    margin-top: .5rem;
}
.btn-close-refus {
    margin-top: 1rem;
    display: inline-block;
    border: 0;
    background: #111;
    color: #fff;
    padding: .6rem 1rem;
    border-radius: 10px;
    cursor: pointer;
}

/* Accueil refund */

.form-index {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.form-baniere {
    display: flex;
    background-image: url('../img/bg_index.jpg');
    background-position: center;
    background-size: cover;
    height: 60vh;
}

.form-baniere h1 {
    font-family: 'Hitmarker', sans-serif;
    font-size: 5rem;
    color: #ffffff;
    text-transform: uppercase;
    margin: 12rem auto;
}

.form-under-banner {
    display: flex;
    flex-direction: column;
    background-color: #F6F6F6;
    color: #000000;
}

.form-presentation,
.form-news {
    margin-top: 2rem;
}

.form-presentation {
    padding: 4rem 35rem;
}

.form-presentation h1 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5rem;
}

.form-presentation p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    text-align: justify;
    margin-top: 1rem;
    line-height: 1.4rem;
    padding: 1rem;
}

.news-disposition {
    display: flex;
}

.form-news {
    padding: 1rem;
    margin: 0 auto;
}

.form-presentation h1 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5rem;
    text-align: left;
    text-transform: uppercase;
    color: #3498DB;
}

.form-news h1,
.main-form-program h1 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5rem;
    text-align: left;
    text-transform: uppercase;
    color: #3498DB;
}

.form-presentation hr,
.form-news hr,
.main-form-program hr {
    height: 1px;
    border: none;
    background: linear-gradient(to right, #9c978f 0%, rgba(156, 151, 143, 0.5) 90%, transparent 100%);
    margin: .5rem 0;
}

.form-news article {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    border-radius: .5rem;
    padding: 1rem;
    margin: 1rem 0;
    max-width: 30rem;
}

.form-news article img {
    border: 1px solid #3498DB;
    width: auto;
    height: 50%;
}

.form-news article h1,
.form-news article p {
    font-family: 'Montserrat', sans-serif;
    text-align: left;
    margin: 0;
    color: #000;
}

.form-index article h1 {
    font-family: "Nunito", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    text-align: justify;
}

.form-index article p {
    font-size: .8rem;
    line-height: 1.2rem;
    text-align: justify;
    margin-bottom: 1rem;
}

.form-news article h1 strong {
    font-family: 'PROGRESS PERSONAL USE', sans-serif;
    font-weight: 500;
    font-size: 2rem;
    color: #3498DB;
}

.form-news article .button-index {
    margin: 1rem .5rem;
}

.buy-tickets.storm.index,
.button-index button {
    padding: .5rem 2.5rem;
    margin: 0;
}

.form-news article hr {
    margin-top: 1rem;
    height: 1px;
    border: none;
    background: #3498DB;
}

.form-news article .date-news {
    font-size: .7rem;
    font-weight: 500;
    color: #9c978f;
    text-align: right;
    text-transform: uppercase;
}

@media (max-width: 1920px) {
    .form-presentation {
        padding: 4rem 8rem !important;
    }
}

@media (max-width: 768px) and (orientation: portrait) {
    .form-baniere h1 {
        font-size: 2rem;
        margin: 15rem auto;
    }

    .form-presentation {
        padding: 4rem 1rem !important;
    }

    .form-news {
        padding: 2rem 1rem;

    }

    .form-news h1 {
        margin-left: 0;
    }

    .form-news hr,
    .main-form-program hr {
        margin: 1rem .5rem 1rem 0rem;
    }

    .form-news article {
        padding: 0;
    }

    .news-disposition {
        flex-direction: column;
    }

    .form-news article img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
}

/* Logs */

.filters {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(6, 1fr);
    align-items: end;
}

.filters label {
    display: block;
    font-size: .9rem;
    font-weight: 400;
    color: #14256A;
    margin-bottom: 4px;
}

.filters input[type="email"],
.filters input[type="text"],
.filters input[type="number"],
.filters select {
    width: 100%;
    padding: 10px;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    background: #fff;
    color: #14256A;
}

.filters .actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.table-wrapper {
    margin-top: 16px;
}

.cards {
    display: block;
    margin-top: 16px;
}

.card {
    font-family: 'Poppins', sans-serif;
    color: #14256A;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px;
    display: grid;
    gap: 16px;
}

.card + .card {
    margin-top: 12px;
}

.kv {
    display: flex;
    gap: 8px;
}

.kv .k {
    color: #6b7280;
    min-width: 110px;
}

.kv .v {
    font-weight: 400;
    word-break: break-word;
}

.result-pill {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 700;
    background: #eef7ee;
    color: #2e7d32;
}

.result-pill.ko {
    background: #fdecec;
    color: #c62828
}

@media (max-width: 768px) and (orientation: portrait) {
    .filters {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        background: #FFFFFF;
        gap: 16px !important;
        padding: 1rem;
        border-radius: 5px;
    }

    .filters input[type="number"] {
        text-align: center;
    }

    .filters-mobile {
        width: 80%;
    }

    .filters-mobile.button {
        width: 100% !important;
    }

    .filters-mobile.button {
        display: flex;
        gap: 16px;
        text-align: center;
    }

    .scanner-button.mobile-log {
        width: unset !important;
        text-decoration: none;
    }

    .card {
        padding: 18px;
    }
}