/* Charte graphique basée sur l'image fournie */

/* Reset et styles de base */

:root {
    --primary-color: #ff6b35;
    /* Orange vif */
    --secondary-color: #f7931e;
    /* Orange plus clair */
    --background-color: #070713;
    /* Bleu très foncé */
    --text-color: #ffffff;
    /* Blanc pour le texte */
    --accent-color: #e94560;
    /* Rouge pour les accents */
    --header-background: rgba(6, 9, 19, 0.8);
    /* Fond semi-transparent pour le header */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--background-color);
    color: #ffffff;
    font-family: "Questrial";
    font-weight: 400;
    font-style: normal;
}






/* Header - Navigation sombre */
header {
    /* background: linear-gradient(135deg, #0f0f23 0%, #16213e 100%); */
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li {
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav ul li:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Section héro avec image de fond */
.hero {
    height: 600px;
    background: url('../images/hero-bg-desktop.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
}

section>* {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

section h1 {
    font-size: 3.5rem;
    font-weight: bolder;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Bouton principal style orange */
.btn-primary {
    background: linear-gradient(136deg, rgba(255, 61, 189, 1), #ff4d00);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(136deg, rgb(255, 61, 132), rgb(255, 13, 0));
}

/* Contenu principal */
main {
    max-width: 1200px;
    margin: 0 auto;
}

main article {
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 2rem;
}

main h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
}

main h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    font-weight: bold;
}

main h4 {
    color: #e0e0e0;
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem 0;
}

main p {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 20px;
}



main li {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

/* Images */
figure {
    margin: 2rem 0;
    text-align: center;
}

figure img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

figcaption {
    color: #999;
    font-style: italic;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: rgba(0, 1, 4, 0.5);
    border-radius: 10px;
    overflow: hidden;
}

th,
td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

th {
    background-color: #ff6b35;
    color: white;
    font-weight: 600;
}

td {
    color: #cccccc;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0f0f23 0%, #16213e 100%);
    padding: 2rem;
    text-align: center;
    color: #cccccc;
}

/* Responsive */
@media (max-width: 768px) {
    section h1 {
        font-size: 2.5rem;
    }

    section p {
        font-size: 1rem;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    main {
        padding: 2rem 1rem;
    }

    main article {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    section h1 {
        font-size: 2rem;
    }

    nav {
        padding: 0 1rem;
    }

    main article {
        padding: 1.5rem 1rem;
    }
}


.listed {
    padding: 0;
    list-style-type: none;
}

h2 {
    color: var(--secondary-color);
    font-weight: bolder;
}

h3 .bi {
    font-size: 35px;
    color: var(--secondary-color);
}

h4 .bi {
    font-size: 25px;
    color: var(--accent-color);
}

.bg-rg .bi {
    color: var(--secondary-color);
}

.bi {
    font-size: 1.2rem;
    margin-right: 10px;
    color: var(--accent-color);
}


.bg-bordered {
    border: 0.95px solid rgb(41, 40, 40);
    border-radius: 20px;
    padding: 1.5rem;
}

.bg-rg {
    background: linear-gradient(136deg, rgba(255, 61, 190, 0.525), #ff4d00ae);
    border-radius: 20px;
    padding: 1.5rem;
}

.img-container img {
    width: 100%;
}

.row-item-center {
    align-items: center;
}

.advantage {
    gap: 2rem;
}

.advantage>div {
    margin-bottom: 1.5rem;
    width: 48%;
    border: 0.95px solid rgb(41, 40, 40);
    border-radius: 15px;
    align-self: start;
}

.advantage h4 {
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: bolder;
}

.nav-link {
    color: var(--text-color);
    padding: 0px;
    margin: 0px;
}

.navbar-brand {
    font-size: 25px;
    font-weight: bolder;
    text-transform: capitalize;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

header {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.bi-list {
    font-size: 45px;
}


footer {
    background: rgb(6, 6, 7);
}




/* Popup d'alerte pour adultes */
#adult-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: rgba(247, 1, 1, 0.645);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 600px;
    margin: 1rem;
}

.popup-content h3 {
    color: #f7f7f7;
    margin-bottom: 1rem;
}

.popup-buttons {
    margin-top: 1.5rem;
}

.popup-buttons button {
    margin: 0 0.5rem;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-yes {
    background: #28a745;
    color: white;
}

.btn-no {
    background: #dc3545;
    color: white;
}

/* Bouton fixe pour mobile */
#mobile-fixed-btn {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    background: linear-gradient(136deg, rgba(255, 61, 189, 1), #ff4d00);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    z-index: 1000;
    width: 90%;
}

/* Afficher le bouton uniquement sur mobile */
@media (max-width: 768px) {
    #mobile-fixed-btn {
        display: block;
    }
}

/* Style du footer */
footer {
    background: #2c2c54;
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

footer .container {
    text-align: center;
}

footer h5 {
    margin-bottom: 1rem;
}

footer p {
    margin: 0.5rem 0;
}