@charset "UTF-8";

/* =====================================================
   FOIRE PME RDC
   CHARTE : BLEU CIEL • ORANGE • JAUNE • ROUGE
===================================================== */

:root{

    --bleu:#00C8FF;
    --bleu-fonce:#0099E6;

    --orange:#FF8A00;

    --jaune:#F4C430;

    --rouge:#E53935;

    --blanc:#FFFFFF;
    --gris:#F5F7FB;
    --texte:#1F2937;

}

/* =====================================================
   RESET
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Segoe UI",sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--gris);
    color:var(--texte);
    overflow-x:hidden;
}

/* =====================================================
   HEADER
===================================================== */

.header{

    background:#fff;

    padding:20px 60px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    position:sticky;
    top:0;

    z-index:999;

    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.logo{

    font-size:34px;
    font-weight:900;

    background:linear-gradient(
        135deg,
        var(--bleu),
        var(--orange),
        var(--rouge)
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

nav{

    display:flex;
    gap:25px;
}

nav a{

    text-decoration:none;
    color:#333;

    font-weight:700;

    transition:.3s;
}

nav a:hover{

    color:var(--orange);
}

/* =====================================================
   BOUTONS
===================================================== */

.btn{

    display:inline-flex;
    justify-content:center;
    align-items:center;

    padding:14px 24px;

    border:none;
    border-radius:14px;

    text-decoration:none;
    font-weight:700;

    cursor:pointer;

    transition:.3s;
}

.btn:hover{

    transform:translateY(-3px);
}

.btn-login{

    background:linear-gradient(
        135deg,
        var(--bleu),
        var(--orange)
    );

    color:white;
}

.btn-register{

    background:linear-gradient(
        135deg,
        var(--jaune),
        var(--rouge)
    );

    color:white;
}

/* =====================================================
   HERO SLIDER RESPONSIVE PREMIUM
===================================================== */

.hero{
    position:relative;
    width:100%;
    height:85vh;
    min-height:650px;
    overflow:hidden;
}

.hero-slider{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    inset:0;

    opacity:0;

    transition:opacity 1.2s ease-in-out;

    z-index:1;
}

.slide.active{
    opacity:1;
    z-index:2;
}

.slide img{
    width:100%;
    height:100%;

    object-fit:contain;
    object-position:center center;

    display:block;

    background:#000;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,.20),
        rgba(0,0,0,.35)
    );

    z-index:3;
}

.hero-content{
    position:absolute;
    inset:0;

    z-index:4;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    color:#fff;

    padding:30px;
}

.hero-content h1{

    font-size:clamp(40px,6vw,90px);

    font-weight:900;

    margin-bottom:25px;

    color:white;

    text-shadow:
    0 5px 20px rgba(0,0,0,.5);
}

.hero-content p{

    max-width:1000px;

    font-size:clamp(18px,2vw,28px);

    line-height:1.8;

    text-shadow:
    0 3px 15px rgba(0,0,0,.5);
}

/* =====================
TABLETTE
===================== */

@media(max-width:992px){

    .hero{
        height:75vh;
        min-height:550px;
    }

    .hero-content h1{
        font-size:55px;
    }

    .hero-content p{
        font-size:20px;
    }

}

/* =====================
MOBILE
===================== */

@media(max-width:768px){

    .hero{
        height:65vh;
        min-height:450px;
    }

    .slide img{

        object-fit:cover;
        object-position:center;
    }

    .hero-content h1{
        font-size:38px;
    }

    .hero-content p{
        font-size:16px;
    }

}

/* =====================
PETITS ECRANS
===================== */

@media(max-width:480px){

    .hero-content h1{
        font-size:30px;
    }

    .hero-content p{
        font-size:14px;
    }

}

/* =====================================================
   STATS
===================================================== */

.stats{

    width:1400px;
    max-width:95%;

    margin:auto;
    margin-top:-70px;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

    position:relative;
    z-index:10;
}

.card-stat{

    background:white;

    padding:35px;

    border-radius:25px;

    text-align:center;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    transition:.4s;
}

.card-stat:hover{

    transform:translateY(-8px);
}

.card-stat h2{

    font-size:55px;
    font-weight:900;

    background:linear-gradient(
        135deg,
        var(--bleu),
        var(--rouge)
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* =====================================================
   SECTIONS
===================================================== */

.section{

    width:1400px;
    max-width:95%;

    margin:auto;

    padding:80px 0;
}

.section-title{

    text-align:center;

    font-size:48px;
    font-weight:900;

    margin-bottom:60px;

    background:linear-gradient(
        135deg,
        var(--bleu),
        var(--orange),
        var(--rouge)
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* =====================================================
   GRID
===================================================== */

.grid{

    display:grid;

    grid-template-columns:repeat(auto-fill,minmax(330px,1fr));

    gap:30px;
}

/* =====================================================
   CARD
===================================================== */

.card{

    background:white;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    transition:.4s;
}

.card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,184,245,.15);
}

.card img{

    width:100%;
    height:250px;

    object-fit:cover;
}

.card-body{

    padding:25px;
}

.card-body h3{

    margin-bottom:15px;

    font-size:24px;
}

.card-body p{

    color:#666;
    line-height:1.8;
}

/* =====================================================
   EXPOSANTS
===================================================== */

.expo-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

    gap:35px;
}

.expo-card{

    background:white;

    border-radius:30px;

    overflow:hidden;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    transition:.4s;
}

.expo-card:hover{

    transform:translateY(-12px);
}

.expo-cover{

    height:280px;

    overflow:hidden;

    position:relative;
}

.expo-cover img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.5s;
}

.expo-card:hover .expo-cover img{

    transform:scale(1.08);
}

.expo-badge{

    position:absolute;

    top:15px;
    right:15px;

    padding:10px 18px;

    border-radius:50px;

    color:white;
    font-size:13px;
    font-weight:700;

    background:linear-gradient(
        135deg,
        var(--bleu),
        var(--orange),
        var(--rouge)
    );
}

.expo-body{

    padding:30px;
}

.expo-body h3{

    font-size:28px;

    margin-bottom:20px;
}

.expo-info{

    display:flex;
    align-items:center;

    gap:10px;

    margin-bottom:12px;

    color:#555;
}

.expo-info i{

    color:var(--orange);
}

.expo-btn{

    display:inline-block;

    margin-top:20px;

    padding:14px 28px;

    border-radius:14px;

    text-decoration:none;

    font-weight:700;

    color:white;

    background:linear-gradient(
        135deg,
        var(--bleu),
        var(--orange),
        var(--rouge)
    );
}



/* =====================================================
   FOOTER
===================================================== */

footer{

    background:#111827;

    color:white;

    text-align:center;

    padding:35px;

    border-top:5px solid var(--orange);
}

/* =====================================================
   RESPONSIVE TABLETTE
===================================================== */

@media(max-width:992px){

    .header{

        padding:20px;

        flex-direction:column;

        gap:20px;
    }

    nav{

        flex-wrap:wrap;
        justify-content:center;
    }

    .hero{

        height:auto;

        padding:120px 20px;
    }

    .hero h1{

        font-size:50px;
    }

    .hero p{

        font-size:18px;
    }

    .section-title{

        font-size:36px;
    }

}

/* =====================================================
   RESPONSIVE MOBILE
===================================================== */

@media(max-width:768px){

    .header{

        padding:15px;
    }

    .logo{

        font-size:24px;
    }

    .hero{

        padding:80px 20px;
    }

    .hero h1{

        font-size:38px;
    }

    .hero p{

        font-size:16px;
    }

    .stats{

        margin-top:20px;

        grid-template-columns:1fr;
    }

    .section{

        padding:50px 15px;
    }

    .section-title{

        font-size:30px;
    }

    .grid,
    .expo-grid{

        grid-template-columns:1fr;
    }

    .card img,
    .expo-cover{

        height:220px;
    }

    .cta{

        padding:60px 20px;
    }

}

/* =====================================================
   PETITS TELEPHONES
===================================================== */

@media(max-width:480px){

    .hero h1{

        font-size:28px;
    }

    .hero p{

        font-size:14px;
    }

    .logo{

        font-size:20px;
    }

    nav{

        display:grid;

        grid-template-columns:repeat(2,1fr);

        gap:10px;

        width:100%;
    }

    .btn{

        width:100%;
    }

    .section-title{

        font-size:24px;
    }

    .card-body,
    .expo-body{

        padding:18px;
    }

}

::selection{

    background:var(--orange);
    color:white;
}

:root{
    --test:red;
}

h1{
    color:var(--test);
}
.btn-login{

    background:linear-gradient(
        135deg,
        #00C8FF,
        #009FE3
    );
}

.btn-register{

    background:linear-gradient(
        135deg,
        #FF8A00,
        #E53935
    );
}
/* ==========================================
HERO SLIDER ULTRA MODERNE
========================================== */

.hero{

    position:relative;

    height:750px;

    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
}

.hero-slider{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;
}

.slide{

    position:absolute;

    inset:0;

    opacity:0;

    transition:opacity 1.5s ease;

    background-size:cover;
    background-position:center;

    transform:scale(1.05);
}

.slide.active{

    opacity:1;
}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        135deg,
        rgba(0,184,245,.55),
        rgba(255,140,0,.45),
        rgba(229,57,53,.55)
    );

    z-index:2;
}

.hero-content{

    position:relative;

    z-index:5;

    color:white;

    width:90%;
    max-width:1000px;
}

.hero-content h1{

    font-size:90px;

    font-weight:900;

    margin-bottom:20px;

    text-shadow:
    0 10px 30px rgba(0,0,0,.35);
}

.hero-content p{

    font-size:28px;

    line-height:1.8;

    text-shadow:
    0 5px 15px rgba(0,0,0,.35);
}

@media(max-width:768px){

.hero{

    height:600px;
}

.hero-content h1{

    font-size:42px;
}

.hero-content p{

    font-size:18px;
}

}
.hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.hero-slider{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    opacity:0;
    transition:opacity 1.5s ease-in-out;

    z-index:1;
}

.slide.active{
    opacity:1;
    z-index:2;
}

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.45);
    z-index:3;
}

.hero-content{
    position:relative;
    z-index:4;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    padding:20px;
}

.hero-content h1{
    font-size:4rem;
    font-weight:900;
    margin-bottom:20px;
}

.hero-content p{
    max-width:800px;
    font-size:1.3rem;
    line-height:1.8;
}

@media(max-width:768px){

    .hero{
        height:80vh;
    }

    .hero-content h1{
        font-size:2.2rem;
    }

    .hero-content p{
        font-size:1rem;
    }

}
.slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:1.2s;
}

.slide.active{
    opacity:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.hero{
    position:relative;
    height:700px;
    overflow:hidden;
}

.hero-slider{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    opacity:0;
    transition:opacity 1s ease;

    z-index:1;
}

.slide.active{
    opacity:1;
    z-index:2;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    display:block;
    background:#000;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:3;
}

.hero-content{
    position:relative;
    z-index:4;

    height:100%;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    color:white;

    padding:20px;
}

.hero-content h1{
    font-size:72px;
    font-weight:900;
    margin-bottom:20px;
}

.hero-content p{
    font-size:24px;
    max-width:900px;
    line-height:1.8;
}

@media(max-width:768px){

    .hero{
        height:500px;
    }

    .hero-content h1{
        font-size:40px;
    }

    .hero-content p{
        font-size:18px;
    }

}

/* =====================================================
   CTA PREMIUM FOIRE PME RDC
===================================================== */

.cta{

    position:relative;

    padding:120px 20px;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;

    background:
    linear-gradient(
        135deg,
        #00C8FF,
        #009FE3,
        #F4C430,
        #FF8A00,
        #E53935
    );
}

/* Halo */

.cta::before{

    content:"";

    position:absolute;

    width:600px;
    height:600px;

    border-radius:50%;

    background:
    rgba(255,255,255,.18);

    top:-250px;
    left:-200px;

    filter:blur(100px);
}

.cta::after{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(255,255,255,.12);

    bottom:-250px;
    right:-150px;

    filter:blur(100px);
}

/* BOX CENTRALE */



/* TITRE */

.cta-box h2{

    color:white;

    font-size:clamp(38px,5vw,65px);

    font-weight:900;

    line-height:1.1;

    margin-bottom:25px;

    text-shadow:
    0 8px 20px rgba(0,0,0,.25);
}

/* TEXTE */

.cta-box p{

    max-width:750px;

    margin:auto;
    margin-bottom:35px;

    color:white;

    font-size:clamp(18px,2vw,24px);

    line-height:1.8;
}

/* BOUTON */

/* ==========================================
CTA BOX
========================================== */

.cta-box{

    position:relative;

    z-index:5;

    width:100%;
    max-width:1000px;

    min-height:450px;

    display:flex;
    flex-direction:column;

    align-items:center;
    justify-content:center;

    text-align:center;

    padding:70px 60px 120px;

    border-radius:40px;

    background:
    rgba(255,255,255,.12);

    backdrop-filter:blur(25px);
    -webkit-backdrop-filter:blur(25px);

    border:
    1px solid rgba(255,255,255,.25);

    box-shadow:
    0 30px 80px rgba(0,0,0,.20);
}

/* TITRE */

.cta-box h2{

    color:white;

    font-size:clamp(40px,5vw,70px);

    font-weight:900;

    margin-bottom:25px;

    text-align:center;

    line-height:1.1;
}

/* TEXTE */

.cta-box p{

    max-width:800px;

    margin:auto;

    color:white;

    font-size:clamp(18px,2vw,24px);

    line-height:1.9;
}

/* BOUTON CENTRE BAS */

.cta-btn{

    position:absolute;

    bottom:-35px;
    left:50%;

    transform:translateX(-50%);

    display:flex;
    align-items:center;
    justify-content:center;

    gap:12px;

    min-width:320px;

    padding:22px 50px;

    border-radius:70px;

    text-decoration:none;

    font-size:20px;
    font-weight:900;

    color:white;

    background:
    linear-gradient(
        135deg,
        #009FE3,
        #0057FF,
        #6F2CFF
    );

    box-shadow:
    0 20px 50px rgba(0,87,255,.35);

    transition:.35s;
}

.cta-btn:hover{

    transform:
    translateX(-50%)
    translateY(-6px)
    scale(1.04);

    box-shadow:
    0 30px 70px rgba(0,87,255,.45);
}

.cta-btn span{

    transition:.3s;
}

.cta-btn:hover span{

    transform:translateX(8px);
}
.cta-divider{

    width:150px;
    height:5px;

    border-radius:20px;

    margin:40px auto 0;

    background:white;

    opacity:.6;
}

/* MOBILE */

@media(max-width:768px){

    .cta{

        padding:80px 15px;
    }

    .cta-box{

        padding:40px 25px;
    }

    .cta-box h2{

        font-size:38px;
    }

    .cta-box p{

        font-size:16px;
    }

    .cta-btn{

        width:100%;
    }

}

