/* ===================== */
/* Reset & Base          */
/* ===================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #12131f;
    --navy-2: #1c1e30;
    --orange: #ff5a1f;
    --orange-2: #ff3d00;
    --grey-bg: #e6e6e8;
    --ink: #2b2b2b;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--grey-bg);
    color: var(--ink);
    /* Bloqué tant que le modal n'est pas validé */
    overflow: hidden;
}

body.unlocked {
    overflow: auto;
}

/* ===================== */
/* Hero (100vh)          */
/* ===================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: var(--grey-bg);
}

#HeroBack {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
}

.hero-click {
    position: absolute;
    inset: 0;
    z-index: 2;
    cursor: pointer;
}

/* Navbar (top of hero) */
.hero-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 14px 28px;
    z-index: 3;
    background: linear-gradient(to bottom, rgba(9, 10, 20, 0.4), rgba(9, 10, 20, 0));
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    box-shadow: 0 4px 14px rgba(255, 90, 31, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 90, 31, 0.55);
}

.nav-cta .arrow {
    font-size: 1.05rem;
}

/* Bouton CTA principal du hero */
.hero-cta {
    position: absolute;
    left: 50%;
    bottom: 86px;
    transform: translateX(-50%);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    box-shadow: 0 8px 28px rgba(255, 90, 31, 0.5);
    animation: heroPulse 2s ease-in-out infinite;
}

.hero-cta:hover {
    animation-play-state: paused;
    box-shadow: 0 12px 34px rgba(255, 90, 31, 0.65);
}

.hero-cta .arrow {
    font-size: 1.2rem;
}

@keyframes heroPulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.04); }
}

.scroll-hint {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--ink);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.75;
    pointer-events: none;
}

.scroll-hint .chevron {
    font-size: 1.3rem;
    animation: bounce 1.6s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ===================== */
/* Disclaimer Modal      */
/* ===================== */
#Disclaimer {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(9, 10, 20, 0.72);
    backdrop-filter: blur(4px);
    z-index: 100;
    padding: 20px;
}

.disc-content {
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: 4px solid var(--orange);
    border-radius: 16px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(255, 90, 31, 0.12);
    padding: 40px 38px 32px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    animation: popIn 0.4s ease-out;
}

.disc-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 22px;
}

.disc-flame {
    font-size: 1.5rem;
    line-height: 1;
    filter: drop-shadow(0 0 8px rgba(255, 90, 31, 0.6));
}

.disc-brand {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.35rem;
    color: #fff;
    line-height: 1;
}

.disc-brand b {
    color: #fff;
}

.disc-text {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 22px;
    line-height: 1.65;
}

.disc-question {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 22px;
}

.disc-confirm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.disc-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(255, 90, 31, 0.45);
}

.disc-confirm .arrow {
    font-size: 1.25rem;
}

.disc-leave {
    margin-top: 16px;
}

.disc-leave span {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s;
}

.disc-leave span:hover {
    color: #fff;
}

@keyframes popIn {
    0% { opacity: 0; transform: scale(0.92); }
    100% { opacity: 1; transform: scale(1); }
}

/* ===================== */
/* Content (below 100vh) */
/* ===================== */
.content {
    background: var(--grey-bg);
}

article {
    max-width: 820px;
    margin: 0 auto;
    padding: 64px 22px 40px;
    line-height: 1.8;
}

article h1 {
    font-size: 2.1rem;
    line-height: 1.25;
    margin-bottom: 22px;
    color: var(--navy);
}

article h2 {
    font-size: 1.6rem;
    margin: 40px 0 16px;
    color: var(--navy);
    padding-left: 14px;
    border-left: 4px solid var(--orange);
}

article h3 {
    font-size: 1.22rem;
    margin: 28px 0 12px;
    color: var(--orange-2);
}

article p {
    margin-bottom: 16px;
    color: #35363f;
}

article strong {
    color: var(--navy);
}

article ul, article ol {
    margin: 16px 0;
    padding-left: 24px;
}

article li {
    margin-bottom: 10px;
    color: #35363f;
}

article a:not(.cta-btn) {
    color: var(--orange-2);
}

/* Table */
article table {
    width: 100%;
    border-collapse: collapse;
    margin: 22px 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

article th, article td {
    padding: 13px 14px;
    border-bottom: 1px solid #e0e0e4;
    text-align: left;
}

article th {
    background: var(--navy);
    color: #fff;
    font-size: 0.95rem;
}

article td {
    color: #35363f;
}

article tr:last-child td {
    border-bottom: none;
}

/* CTA buttons */
.cta-wrap {
    text-align: center;
    margin: 30px 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    font-size: 1rem;
    font-weight: 800;
    color: #fff !important;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    border-radius: 999px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255, 90, 31, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 90, 31, 0.45);
}

.cta-btn.cta-big {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.cta-btn .arrow {
    font-size: 1.2rem;
}

/* Footer */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 34px 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 12px;
}

.site-footer p {
    font-size: 0.85rem;
}

/* ===================== */
/* Responsive            */
/* ===================== */
@media screen and (max-width: 600px) {
    .disc-content {
        padding: 32px 22px 26px;
    }

    .disc-brand {
        font-size: 1.15rem;
    }

    .disc-text {
        font-size: 0.86rem;
    }

    .disc-question {
        font-size: 1.05rem;
    }

    article {
        padding: 48px 18px 32px;
    }

    article h1 {
        font-size: 1.7rem;
    }

    article h2 {
        font-size: 1.35rem;
    }

    .hero-nav {
        padding: 12px 16px;
    }

    .nav-cta {
        padding: 9px 18px;
        font-size: 0.82rem;
    }

    .hero-cta {
        bottom: 74px;
        padding: 14px 26px;
        font-size: 0.92rem;
    }
}
