@font-face {
    font-family: 'Marianne';
    src: url('/font/Marianne/fontes-web/Marianne-Regular.woff2') format('woff2'),
    url('/font/Marianne/fontes-web/Marianne-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Marianne';
    src: url('/font/Marianne/fontes-web/Marianne-Bold.woff2') format('woff2'),
    url('/font/Marianne/fontes-web/Marianne-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #030319;
    padding-top: 5em;
    justify-content: center;
    color: white;
}
.description-type {
    text-align: center;
}

.action {
    padding-top: 10%;
    text-align: center;
    font-family: 'Marianne', sans-serif;

}

/* NavBar */
nav {
    padding: 1em;
    font-family: 'Marianne', sans-serif;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(3, 3, 25, 0.8);

}
ul {
    list-style: none;
    padding-left: 0; /* optionnel, pour enlever l'indentation */
}

/* Menu classique */
nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 1em;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

/* Bouton burger masqué par défaut */
.burger {
    display: none;
}

/* --- Responsive téléphone --- */
@media (max-width: 768px) {
    /* Bouton burger visible uniquement sur mobile */
    .burger {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 2em;
        position: absolute;
        right: 1em;
        top: 0.5em;
        cursor: pointer;
    }

    /* Masquer le menu par défaut sur mobile */
    #nav-menu {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
        background-color: rgba(3, 3, 25, 0.8);
    }

    /* Afficher le menu quand on clique */
    #nav-menu.show {
        display: flex;
    }

    nav ul li {
        margin: 1em 0;
    }
}





body {
    font-family: 'Marianne', sans-serif;
    margin-top: 2rem;
    justify-content: center;
}
li {
    font-family: 'Marianne', sans-serif;
    margin-top: 2rem;
    justify-content: center;
    text-align: center;
}
p {
    font-family: 'Marianne', sans-serif;
    margin-top: 2rem;
    justify-content: center;
    text-align: center;
}
h1 {
    font-family: 'Marianne', sans-serif;
    margin-top: 2rem;
    justify-content: center;
    text-align: center;
}
h2 {
    font-family: 'Marianne', sans-serif;
    margin-top: 2rem;
    justify-content: center;
    text-align: center;
}
h3 {
    font-family: 'Marianne', sans-serif;
    margin-top: 2rem;
    justify-content: center;
    text-align: center;
}
h4 {
    font-family: 'Marianne', sans-serif;
    margin-top: 2rem;
    justify-content: center;
    text-align: center;
}
img {
    justify-content: center;
    display: block;
    margin: 0 auto;
}
.logo-partner {
    height: 12em;
    color: white;
    text-decoration: none;
}
#partner {
    display: flex;
    align-items: center;
    gap: 2em;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.logo-partner img,
img.logo-partner {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
#partner-title {
    justify-content: center;
    text-align: center;
}
a {
    color: white;
    text-decoration: none;
}
.buy-ticket {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    font-weight: bold;
}
select {
    border-radius: 8px;
    background-color: transparent;
    border-color: transparent;
    color: white;
}
option {
    border-radius: 8px;
    background-color: transparent;
    border-color: transparent;
    color: #ffffff;
}
.fa-up-right-from-square:hover {
    transform: scale(1.2);
    transition: transform 0.2s;
}
.nav {
    position: relative;
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
}

.nav::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #ff0000;
    transition: width 0.3s ease-out;
}

.nav:hover::after {
    width: 100%;
}




