@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: white;
    overflow-x: hidden;
    background: #0a0a0a;
    display: flex;
    flex-direction: column;
}


/* ── FOND VANTA ── */
#vanta-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* ── NAVBAR ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 60px;
    background: rgba(5, 5, 5, 0.75);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo .cross {
    width: 28px;
    height: 28px;
    background: #D40000;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
}

.nav-logo span {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: white;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: white;
}

.nav-cta {
    background: #D40000;
    color: white !important;
    padding: 8px 20px;
    border-radius: 3px;
    font-weight: 600 !important;
    transition: background 0.2s !important;
}

.nav-cta:hover {
    background: #ff1a1a;
    color: white !important;
}

/* ── TOUTES LES SECTIONS ── */
section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 40px 60px;
    position: relative;
}

/* ── PAGE 1 : HERO ── */
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-line {
    width: 40px;
    height: 1px;
    background: #D40000;
}

.hero-eyebrow span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #D40000;
}

.content {
    max-width: 860px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#t1 {
    font-family: 'Inter', sans-serif;
    font-size: 6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 10px;
    color: white;
}

#t1 span {
    color: #D40000;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    font-style: italic;
}

#p1 {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    max-width: 520px;
    margin-bottom: 44px;
    font-weight: 300;
}

.btn-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

#b1 {
    background: #D40000;
    color: white;
    border: none;
    padding: 14px 36px;
    border-radius: 2px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: 0.2s ease;
    box-shadow: 0 4px 24px rgba(212, 0, 0, 0.35);
}

#b1:hover {
    background: #ff1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212, 0, 0, 0.5);
}

#b2, #b3 {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 14px 36px;
    border-radius: 2px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: 0.2s ease;
}

#b2:hover, #b3:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

/* Scroll indicator */
.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.35;
}

.scroll-hint span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, white, transparent);
    animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── DIVIDER ── */
.divider {
    width: 48px;
    height: 2px;
    background: #D40000;
    margin: 0 auto 32px;
}

/* ── PAGES INTÉRIEURES ── */
.page-inner {
    max-width: 960px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #D40000;
    margin-bottom: 16px;
}

.page-inner h2 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 16px;
    max-width: 680px;
}

.page-inner > p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.5);
    max-width: 560px;
    font-weight: 300;
    margin-bottom: 48px;
}

/* ── PAGE 2 : ABOUT — Stats ── */
.stats-row {
    display: flex;
    gap: 0;
    width: 100%;
    max-width: 700px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    overflow: hidden;
}

.stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 36px 20px;
    background: rgba(255,255,255,0.03);
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: background 0.2s;
}

.stat:last-child {
    border-right: none;
}

.stat:hover {
    background: rgba(212,0,0,0.08);
}

.stat-num {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #D40000;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

/* ── PAGE 3 : CAREERS ── */
.career-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    width: 100%;
    max-width: 640px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 32px;
}

.career-card {
    background: rgba(10,10,10,0.9);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    transition: background 0.2s;
    cursor: default;
    text-align: left;
}

.career-card:hover {
    background: rgba(212,0,0,0.1);
}

.career-icon {
    font-size: 1.5rem;
}

.career-title {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.career-desc {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
}

#b1-copy {
    background: #D40000;
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 2px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: 0.2s ease;
    box-shadow: 0 4px 24px rgba(212,0,0,0.3);
}

#b1-copy:hover {
    background: #ff1a1a;
    transform: translateY(-2px);
}

/* ── PAGE 4 : OUR TEAM ── */
.team-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 4px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    transition: 0.2s ease;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #D40000;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}

.avatar {
    font-size: 2.2rem;
    width: 60px;
    height: 60px;
    background: rgba(212,0,0,0.12);
    border: 1px solid rgba(212,0,0,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.name {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.role {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* ── FOOTER ── */
footer {
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 48px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo .cross {
    width: 22px;
    height: 22px;
    background: #D40000;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 900;
}

.footer-logo span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

.footer-copy {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.05em;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    nav {
        padding: 16px 24px;
    }

    .nav-links {
        display: none;
    }

    #t1 {
        font-size: 3.2rem;
    }

    .page-inner h2 {
        font-size: 2rem;
    }

    .stats-row {
        flex-direction: column;
    }

    .stat {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .career-grid {
        grid-template-columns: 1fr;
    }

    footer {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
}
