@import url('https://fonts.googleapis.com/css2?family=Bayon&family=Caveat:wght@400;700&display=swap');

/* Header */
header {
    background-color: #FFFAF0;
    padding: 20px 50px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2C26E8;
}

.btn-contact {
    background-color: #2C26E8;
    color: white !important;
    padding: 10px 25px;
    transition: background-color 0.3s;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.30);
}

.btn-contact:hover {
    background-color: #0000CC;
}

/* Burger Menu - caché par défaut */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
    margin-left: auto;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #2C26E8;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mentions-main {
    margin-top: 100px;
    padding: 50px;
    background-color: #FFFAF0;
    min-height: calc(100vh - 200px);
}

.mentions-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Titre principal */
.mentions-title {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mentions {
    font-family: 'Bayon', sans-serif;
    font-size: 100px;
    color: #0000FF;
    font-weight: normal;
    letter-spacing: -3px;
    line-height: 0.8;
}

.legales {
    font-family: 'Caveat', cursive;
    font-size: 70px;
    color: #333;
    font-weight: 400;
    margin-top: -40px;
    position: relative;
    left: 100px;
}

/* Sections */
.mentions-section {
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Bayon', sans-serif;
    font-size: 28px;
    color: #0000FF;
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0px;
}

.section-content {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.section-content p {
    margin-bottom: 15px;
}

.section-content strong {
    font-weight: 600;
    color: #000;
}

.section-content a {
    color: #0000FF;
    text-decoration: none;
    transition: opacity 0.3s;
}

.section-content a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    /* Afficher le menu burger */
    .burger-menu {
        display: flex;
    }

    /* Menu navigation en mobile */
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #FFFAF0;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 30px;
        transition: right 0.3s ease;
    }

    .nav-menu.active {
        right: 0;
        display: flex;
        z-index: 2;
    }

    .nav-menu a {
        font-size: 18px;
    }

    .mentions-main {
        padding: 30px 20px;
    }

    .mentions {
        font-size: 60px;
    }

    .legales {
        font-size: 45px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-content {
        font-size: 14px;
    }
}