@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;500;700;900&display=swap');

:root {
    /* Couleurs de marque en version éclatante */
    --brand-orange: #ff6b00;
    --brand-blue: #004b93;
    --blue-glow: rgba(0, 75, 147, 0.4);
    --orange-glow: rgba(255, 107, 0, 0.4);
    
    /* Couleurs structurelles */
    --bg-dark: #0a0a0a;
    --bg-dark-card: #141414;
    --bg-light: #ffffff;
    --bg-subtle: #f4f4f5;
    --text-light: #ffffff;
    --text-dark: #09090b;
    --text-muted: #a1a1aa;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* --- ANIMATIONS AU SCROLL --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- NAVBAR GLASSMORPHISM --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: -1px;
}
.logo .orange { color: var(--brand-orange); text-shadow: 0 0 20px var(--orange-glow); }
.logo .blue { color: #3b82f6; /* Bleu éclairci pour le dark mode */ text-shadow: 0 0 20px var(--blue-glow); }

/* --- HERO SECTION KICKASS --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

/* Les halos lumineux en fond */
.hero::before, .hero::after {
    content: '';
    position: absolute;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    z-index: -1;
    animation: pulse 8s infinite alternate;
}

.hero::before {
    background: var(--brand-orange);
    top: -10%;
    left: -10%;
}

.hero::after {
    background: var(--brand-blue);
    bottom: -10%;
    right: -10%;
    animation-delay: -4s;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.2; }
    100% { transform: scale(1.2); opacity: 0.4; }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 900;
}

.hero p {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 50px;
}

/* --- BOUTONS STEROIDES --- */
.btn-glow {
    position: relative;
    display: inline-flex;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    background: var(--brand-orange);
    border-radius: 50px;
    transition: var(--transition);
    overflow: hidden;
    z-index: 1;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, var(--brand-orange), #ff9a44, var(--brand-orange));
    z-index: -1;
    transition: var(--transition);
}

.btn-glow:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px var(--orange-glow);
}

/* --- SECTION BLANCHE MODERNISÉE --- */
.light-section {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 120px 0;
    border-radius: 60px 60px 0 0;
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
    color: var(--brand-blue);
}

/* --- GRILLES DE CARTES ÉVOLUÉES --- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.card-pro {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 30px;
    padding: 50px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.card-pro::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-pro:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 75, 147, 0.1);
}

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

.card-pro h3 {
    font-size: 1.8rem;
    margin: 20px 0;
    color: var(--brand-blue);
}

.card-pro p {
    font-size: 1.1rem;
    color: #52525b;
}

/* --- CARTES MAGASINS (IMPACTS VISUELS) --- */
.store-card {
    background: var(--bg-dark-card);
    color: white;
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.store-card:hover {
    background: var(--brand-blue);
    transform: scale(1.05);
}

.store-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.store-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.store-card:hover p {
    color: rgba(255,255,255,0.8);
}

.btn-store {
    display: inline-block;
    padding: 12px 30px;
    background: white;
    color: var(--brand-blue);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.store-card:hover .btn-store {
    background: var(--brand-orange);
    color: white;
}
