/* ====================================================== */
/* === RESET & BASE ===================================== */
/* ====================================================== */
* {box-sizing: border-box;margin: 0;padding: 0;}

body {
    background-color: var(--style-black);
    font-family: 'Mori', sans-serif;
    color: var(--style-white);
}

html, body {
    overscroll-behavior: auto;
    overflow-y: auto;
    overflow-x: clip;
}

/* ====================================================== */
/* === PAGE 404 ================================= */
/* ====================================================== */
#primary {
    height: calc(100svh - var(--header-height));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:2rem;
}

#primary a {
    color: #C583F7;
}

/* ====================================================== */
/* === PAGE MENTIONS LEGALES ============================ */
/* ====================================================== */
.page-template-page-mentions-legales #main-nav .nav-list .nav-item:not(:first-child) {display: none !important;}

.mention {font-size: clamp(0.75rem, 0.9vw, 1.2rem);}

#mentions-legales a {
    color: #C583F7;
}

/* ====================================================== */
/* === PAGE POLITIQUE DE CONFIDENTIALITE ============================ */
/* ====================================================== */
.page-template-page-politique-confidentialite #main-nav .nav-list .nav-item:not(:first-child) {display: none !important;}

.mention {font-size: clamp(0.75rem, 0.9vw, 1.2rem);}

#politique-confidentialite a {
    color: #C583F7;
}

#politique-confidentialite .text-box ul {
    list-style: disc;
    margin: 1rem 0 1.25rem;
    padding-left: 1.5rem;
}

#politique-confidentialite .text-box li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

#politique-confidentialite .text-box ul li::marker {
    color: #fff;
}

#politique-confidentialite .text-box p {
    line-height: 1.6;
}

/* ====================================================== */
/* === PAGE POLITIQUE DE COOKIES (UE) =================== */
/* ====================================================== */
.page-template-page-politique-cookies #main-nav .nav-list .nav-item:not(:first-child) {
    display: none !important;
}

.mention {
    font-size: clamp(0.75rem, 0.9vw, 1.2rem);
}

#politique-cookies a {
    color: #C583F7;
}

#politique-cookies .text-box ul {
    list-style: disc;
    list-style-position: outside;
    margin: 1rem 0 1.25rem;
    padding-left: 1.5rem;
}

#politique-cookies .text-box li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

#politique-cookies .text-box ul li::marker {
    color: #fff;
}

#politique-cookies .text-box p {
    line-height: 1.6;
}

#politique-cookies .text-box p {
    background: none;
    border: none;
    backdrop-filter: none;
    border-radius: 0;
    padding: 0;
    color: var(--style-white, #FFFCE1);
}

#politique-cookies h2 {
    color: var(--style-white, #FFFCE1);
    margin-bottom: 0.6rem;
    font-weight: 600;
}

#politique-cookies table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1rem;
}

#politique-cookies table th,
#politique-cookies table td {
    padding: .75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    text-align: left;
    font-size: 0.9rem;
}

/* ====================================================== */
/* ===============STYLE GLOBAL ========================== */
/* ====================================================== */
.comp-dev,
.comp-mobile {
    width: 100%;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
    padding: clamp(1rem, 3vw, 2rem);
}

.main-title {
    font-size: clamp(1.8rem, 4vw + 0.5rem, 3.2rem);
    text-align: center;
}

.content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2rem);
    max-width: 1200px;
    width: 100%;
}

.content .text-box {
    flex: 1 1 280px;
    max-width: 500px;
    margin: 0 auto;
    font-size: clamp(0.95rem, 0.6vw + 0.6rem, 1.15rem);
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: clamp(16px, 2.5vw, 40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}