/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f4f4f4;
    color:#222;
}

/* ==========================
   TOP BAR
========================== */

.topbar{
    background:#2f86ce;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:8px 30px;
    font-size:14px;
}

.top-left span{
    margin-right:20px;
}

.top-right a{
    color:#fff;
    margin-left:15px;
    text-decoration:none;
    font-size:16px;
}

.top-right a:hover{
    color:#ffd700;
}

/* ==========================
   HEADER
========================== */

.header{
    background:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 30px;
}

.logo img{
    width:230px;
}

.live-header{
    text-align:center;
}

.live{
    background:red;
    color:#fff;
    padding:8px 15px;
    border-radius:30px;
    font-weight:bold;
}

.watch .btn-live{
    background:#2f86ce;
    color:#fff;
    padding:12px 25px;
    border-radius:5px;
    text-decoration:none;
    font-weight:bold;
}

.watch .btn-live:hover{
    background:#2f86ce;
}

/* ==========================
   RECHERCHE
========================== */

.search{
    display:flex;
}

.search input{
    width:250px;
    padding:10px;
    border:1px solid #ccc;
}

.search button{
    background:#2f86ce;
    color:#fff;
    border:none;
    padding:10px 18px;
    cursor:pointer;
}

/* ==========================
   MENU
========================== */

.menu{
    background:#004aad;
    display:flex;
    align-items:center;
    justify-content:center;
}

.menu a{
    color:#fff;
    text-decoration:none;
    padding:18px 22px;
    font-weight:bold;
    transition:.3s;
}

.menu a:hover{
    background:#002f6c;
}

/*==========================
  CONTENU PRINCIPAL
==========================*/

.container{
    width:95%;
    margin:25px auto;
    display:flex;
    gap:20px;
}

.content-left{
    width:70%;
}

.sidebar{
    width:30%;
}

/*==========================
  GRANDE IMAGE
==========================*/

.hero{
    position:relative;
    overflow:hidden;
    border-radius:8px;
}

.hero img{
    width:100%;
    height:620px;
    object-fit:cover;
    display:block;
}

.overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:25px;
    background:linear-gradient(transparent,rgba(0,0,0,.85));
    color:#fff;
}

.overlay h1{
    font-size:34px;
    margin:12px 0;
    line-height:1.3;
}

.overlay p{
    font-size:15px;
}

.categorie{
    background:#d60000;
    color:#fff;
    padding:6px 12px;
    font-size:13px;
    font-weight:bold;
    border-radius:3px;
}

/*==========================
  BOUTONS ◀ ▶
==========================*/

.prev,
.next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,.6);
    color:#fff;
    font-size:22px;
    cursor:pointer;
}

.prev{
    left:15px;
}

.next{
    right:15px;
}

.prev:hover,
.next:hover{
    background:#004aad;
}

/*==========================
  EN DIRECT
==========================*/

.sidebar h2{
    background:#004aad;
    color:#fff;
    padding:12px;
    font-size:18px;
}

.live-box{
    background:#fff;
    padding:12px;
    margin-bottom:20px;
    box-shadow:0 0 8px rgba(0,0,0,.15);
}

.live-box iframe{
    width:100%;
    height:240px;
}

/*==========================
  LES PLUS LUS
==========================*/

.plus{
    margin-top:15px;
}

.popular{
    background:#fff;
    padding:10px;
    box-shadow:0 0 8px rgba(0,0,0,.15);
}

.popular-item{
    display:flex;
    gap:10px;
    margin-bottom:15px;
}

.popular-item img{
    width:95px;
    height:75px;
    object-fit:cover;
}

.popular-item p{
    font-size:14px;
    font-weight:bold;
}

/* ==========================
   À LA UNE
========================== */

.headline{
    width:95%;
    margin:35px auto;
}

.headline h2{
    font-size:28px;
    color:#003b8e;
    border-left:6px solid #004aad;
    padding-left:12px;
    margin-bottom:20px;
}

.headline-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.card{
    background:#fff;
    border-radius:6px;
    overflow:hidden;
    box-shadow:0 0 10px rgba(0,0,0,.10);
    transition:.3s;
}

.card:hover{
    transform:translateY(-5px);
}

.card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.card .tag{
    display:inline-block;
    margin:12px;
    background:#004aad;
    color:#fff;
    padding:5px 10px;
    font-size:12px;
    font-weight:bold;
    border-radius:3px;
}

.card h3{
    padding:0 12px 18px;
    font-size:18px;
    line-height:1.4;
}

/* ==========================
   SECTION ACTUALITÉS
========================== */

.news-section{
    width:95%;
    margin:40px auto;
}

.news-title{
    font-size:28px;
    color:#003b8e;
    margin-bottom:20px;
}

.news-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.news-box{
    display:flex;
    gap:15px;
    background:#fff;
    padding:15px;
    box-shadow:0 0 8px rgba(0,0,0,.1);
}

.news-box img{
    width:180px;
    height:120px;
    object-fit:cover;
}

.news-box h4{
    color:#003b8e;
    margin-bottom:10px;
}

.news-box p{
    font-size:14px;
    color:#555;
}

/*==========================
 FOOTER
==========================*/

.footer{
    background:#002b63;
    color:#fff;
    margin-top:50px;
}

.footer-content{
    width:95%;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:40px;
    padding:40px 0;
}

.footer-logo img{
    width:180px;
    margin-bottom:15px;
}

.footer h3{
    margin-bottom:15px;
    color:#fff;
}

.footer-links a{
    display:block;
    color:#ddd;
    text-decoration:none;
    margin-bottom:10px;
}

.footer-links a:hover{
    color:#fff;
}

.footer-contact p{
    margin-bottom:10px;
}

.copyright{
    text-align:center;
    padding:15px;
    border-top:1px solid rgba(255,255,255,.2);
    font-size:14px;
}

/*==========================
 RESPONSIVE
==========================*/

@media(max-width:992px){

.container{
    flex-direction:column;
}

.content-left,
.sidebar{
    width:100%;
}

.headline-grid{
    grid-template-columns:repeat(2,1fr);
}

.news-list{
    grid-template-columns:1fr;
}

.footer-content{
    grid-template-columns:1fr;
}

}

@media(max-width:768px){

.header{
    flex-direction:column;
    gap:15px;
}

.menu{
    flex-wrap:wrap;
}

.menu a{
    padding:12px;
}

.hero img{
    height:300px;
}

.overlay h1{
    font-size:22px;
}

.headline-grid{
    grid-template-columns:1fr;
}

.search input{
    width:180px;
}

}

html{
    scroll-behavior:smooth;
}

/* =========================
   PAGE ACTUALITÉS
========================= */

.page-title{
    width:95%;
    margin:40px auto;
    text-align:center;
}

.page-title h1{
    color:#004aad;
    font-size:40px;
    margin-bottom:10px;
}

.page-title p{
    color:#666;
    font-size:18px;
}

/* CONTENEUR */

.news-page{
    width:95%;
    margin:40px auto;
    display:grid;
    grid-template-columns:3fr 1fr;
    gap:30px;
}

/* GRILLE DES ACTUALITÉS */

.news-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

/* CARTE */

.news-card{
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 0 10px rgba(0,0,0,0.1);
    transition:0.3s;
}

.news-card:hover{
    transform:translateY(-5px);
}

.news-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.category{
    display:inline-block;
    background:#004aad;
    color:#fff;
    padding:5px 12px;
    margin:15px;
    font-size:12px;
    font-weight:bold;
}

.news-card h3{
    padding:0 15px;
    font-size:22px;
    margin-bottom:10px;
}

.news-card p{
    padding:0 15px;
    color:#777;
    margin-bottom:15px;
}

.news-card a{
    display:inline-block;
    margin:0 15px 20px;
    padding:10px 18px;
    background:#004aad;
    color:#fff;
    text-decoration:none;
    border-radius:4px;
}

.news-card a:hover{
    background:#002f7a;
}

/* SIDEBAR */

.sidebar{
    background:#fff;
}

.sidebar h2{
    background:#004aad;
    color:#fff;
    padding:15px;
    margin-bottom:20px;
}

.popular-post{
    display:flex;
    gap:10px;
    margin-bottom:20px;
}

.popular-post img{
    width:100px;
    height:70px;
    object-fit:cover;
}

.popular-post h4{
    font-size:15px;
    margin-bottom:5px;
}

.popular-post span{
    color:#777;
    font-size:13px;
}

/* PAGINATION */

.pagination{
    text-align:center;
    margin:40px 0;
}

.pagination a{
    display:inline-block;
    padding:10px 15px;
    margin:5px;
    background:#eee;
    color:#333;
    text-decoration:none;
}

.pagination a.active{
    background:#004aad;
    color:#fff;
}

/* RESPONSIVE */

@media(max-width:900px){

.news-page{
    grid-template-columns:1fr;
}

.news-grid{
    grid-template-columns:1fr;
}

}

/* =========================
   EFFETS DES CARTES
========================= */

.news-card{
    position:relative;
}

.news-card::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:4px;
    background:#004aad;
    transition:.4s;
}

.news-card:hover::after{
    width:100%;
}

.news-card img{
    transition:.4s;
}

.news-card:hover img{
    transform:scale(1.05);
}

/* =========================
   SIDEBAR
========================= */

.sidebar{
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 0 10px rgba(0,0,0,.12);
}

.popular-post{
    padding:12px;
    border-bottom:1px solid #eee;
}

.popular-post:last-child{
    border-bottom:none;
}

.popular-post:hover{
    background:#f8f8f8;
}

/* =========================
   BOUTON LIRE LA SUITE
========================= */

.news-card a{
    transition:.3s;
}

.news-card a:hover{
    transform:translateY(-2px);
}

/* =========================
   ANIMATION
========================= */

.news-card,
.popular-post{
    animation:fadeUp .6s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* =========================
   FOOTER
========================= */

.footer{
    background:#002b63;
    color:#fff;
    margin-top:50px;
}

.footer-content{
    width:95%;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:30px;
    padding:40px 0;
}

.footer-logo{
    width:170px;
    margin-bottom:15px;
}

.footer-box h3{
    margin-bottom:15px;
}

.footer-box a{
    display:block;
    color:#ddd;
    text-decoration:none;
    margin-bottom:10px;
}

.footer-box a:hover{
    color:#fff;
}

.footer-bottom{
    text-align:center;
    padding:20px;
    border-top:1px solid rgba(255,255,255,.2);
    font-size:14px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

.topbar,
.header{
    flex-direction:column;
}

.menu{
    flex-wrap:wrap;
}

.menu a{
    padding:12px;
}

.news-card img{
    height:200px;
}

.footer-content{
    grid-template-columns:1fr;
    text-align:center;
}

}

/*==========================
   DATE ET AUTEUR
==========================*/

.news-card .date{
    color:#888;
    font-size:13px;
    margin:0 15px 10px;
}

.news-card .author{
    color:#004aad;
    font-weight:bold;
    margin:0 15px 15px;
}

/*==========================
   BADGE CATÉGORIE
==========================*/

.category{
    border-radius:20px;
    letter-spacing:1px;
    text-transform:uppercase;
}

/*==========================
   IMAGE
==========================*/

.news-card img{
    display:block;
}

.news-card:hover img{
    filter:brightness(90%);
}

/*==========================
   BARRE LATÉRALE
==========================*/

.sidebar{
    position:sticky;
    top:20px;
}

.sidebar h2{
    text-align:center;
    font-size:20px;
}

.popular-post{
    cursor:pointer;
    transition:.3s;
}

.popular-post:hover{
    transform:translateX(5px);
}

.popular-post img{
    border-radius:5px;
}

/*==========================
   PAGINATION
==========================*/

.pagination a{
    border-radius:5px;
    transition:.3s;
}

.pagination a:hover{
    background:#003b8e;
    color:#fff;
}

/*==========================
   TITRES
==========================*/

.news-card h3:hover{
    color:#004aad;
    cursor:pointer;
}

/* ==========================
   BARRE DE RECHERCHE
========================== */

.search{
    display:flex;
    align-items:center;
}

.search input{
    width:300px;
    padding:12px;
    border:2px solid #004aad;
    outline:none;
    border-radius:5px 0 0 5px;
}

.search button{
    background:#004aad;
    color:#fff;
    border:none;
    padding:13px 18px;
    cursor:pointer;
    border-radius:0 5px 5px 0;
}

.search button:hover{
    background:#002f75;
}

/* ==========================
   TITRE PAGE
========================== */

.page-title{
    background:#fff;
    padding:40px;
    margin:30px auto;
    border-left:8px solid #004aad;
    box-shadow:0 0 10px rgba(0,0,0,.1);
}

.page-title h1{
    font-size:40px;
    color:#004aad;
    margin-bottom:10px;
}

.page-title p{
    color:#666;
    font-size:18px;
}

/* ==========================
   CONTENU DES ARTICLES
========================== */

.news-card{
    overflow:hidden;
}

.news-card h3{
    transition:.3s;
}

.news-card:hover h3{
    color:#004aad;
}

.news-card p{
    line-height:1.7;
}

/* ==========================
   BOUTON
========================== */

.news-card a{
    font-weight:bold;
}

.news-card a:hover{
    background:#00327c;
}

/* ==========================
   EFFET IMAGE
========================== */

.news-card img{
    transition:.5s;
}

.news-card:hover img{
    transform:scale(1.08);
}

/* ==========================
   RESPONSIVE TABLETTE
========================== */

@media(max-width:992px){

.news-grid{
    grid-template-columns:1fr;
}

.sidebar{
    margin-top:30px;
}

}

#topBtn{
    position:fixed;
    bottom:20px;
    right:20px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#004aad;
    color:#fff;
    font-size:22px;
    cursor:pointer;
    display:none;
}

#topBtn:hover{
    background:#002f7a;
}

/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f5f5f5;
}

/* ==========================
   TOP BAR
========================== */

.topbar{
    background:#004aad;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 30px;
}

.top-right a{
    color:#fff;
    margin-left:15px;
    text-decoration:none;
}

/* ==========================
   HEADER
========================== */

.header{
    background:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 30px;
}

.logo img{
    width:220px;
}

.search{
    display:flex;
}

.search input{
    width:280px;
    padding:10px;
    border:1px solid #ccc;
}

.search button{
    background:#004aad;
    color:#fff;
    border:none;
    padding:10px 18px;
    cursor:pointer;
}

/* ==========================
   MENU
========================== */

.menu{
    background:#003b8e;
    display:flex;
    justify-content:center;
}

.menu a{
    color:#fff;
    text-decoration:none;
    padding:18px 20px;
    font-weight:bold;
}

.menu a:hover,
.menu .active{
    background:#002d6e;
}

/* ==========================
   TITRE
========================== */

.page-title{
    text-align:center;
    padding:40px 20px;
    background:#fff;
}

.page-title h1{
    color:#004aad;
    font-size:36px;
}

.page-title p{
    margin-top:10px;
    color:#666;
}

/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f5f5f5;
    color:#333;
}

/* ==========================
   BANNIÈRE
========================== */

.page-banner{
    background:#004aad;
    color:#fff;
    text-align:center;
    padding:50px 20px;
}

.page-banner h1{
    font-size:40px;
    margin-bottom:10px;
}

.page-banner p{
    font-size:18px;
}

/* ==========================
   SECTION ÉMISSIONS
========================== */

.emissions{
    width:90%;
    margin:40px auto;
}

.emission-card{
    display:flex;
    align-items:center;
    background:#fff;
    margin-bottom:25px;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 0 12px rgba(0,0,0,.12);
    transition:.3s;
}

.emission-card:hover{
    transform:translateY(-5px);
}

.emission-card img{
    width:320px;
    height:220px;
    object-fit:cover;
}

.emission-content{
    padding:25px;
}

.emission-content h2{
    color:#004aad;
    margin-bottom:15px;
}

.emission-content p{
    line-height:1.8;
    margin-bottom:15px;
}

.emission-content span{
    display:inline-block;
    background:#004aad;
    color:#fff;
    padding:8px 15px;
    border-radius:5px;
    font-weight:bold;
}

/* ==========================
   BOUTON REGARDER
========================== */

.btn-watch{
    display:inline-block;
    margin-top:15px;
    padding:10px 20px;
    background:#004aad;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
    transition:.3s;
}

.btn-watch:hover{
    background:#002d6e;
}

/* ==========================
   FOOTER
========================== */

.footer{
    background:#002b63;
    color:#fff;
    margin-top:50px;
}

.footer p{
    text-align:center;
    padding:20px;
    font-size:15px;
}

/* ==========================
   ANIMATIONS
========================== */

.emission-card{
    animation:fadeInUp .8s ease;
}

@keyframes fadeInUp{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:992px){

.emission-card{
    flex-direction:column;
}

.emission-card img{
    width:100%;
    height:250px;
}

.emission-content{
    text-align:center;
}

}

@media(max-width:768px){

.page-banner{
    padding:35px 15px;
}

.page-banner h1{
    font-size:30px;
}

.page-banner p{
    font-size:16px;
}

.emission-content h2{
    font-size:24px;
}

.emission-content p{
    font-size:15px;
}

.btn-watch{
    width:100%;
    text-align:center;
}

}

/* ==========================
   TITRES DES ÉMISSIONS
========================== */

.emission-content h2{
    transition:.3s;
}

.emission-card:hover .emission-content h2{
    color:#d60000;
}

/* ==========================
   IMAGE
========================== */

.emission-card img{
    transition:.5s;
}

.emission-card:hover img{
    transform:scale(1.05);
}

/* ==========================
   BADGE HORAIRE
========================== */

.emission-content span{
    letter-spacing:1px;
    text-transform:uppercase;
    font-size:13px;
}

/* ==========================
   OMBRE
========================== */

.emission-card:hover{
    box-shadow:0 10px 25px rgba(0,0,0,.20);
}

/* ==========================
   ESPACEMENT
========================== */

.emissions{
    padding-bottom:40px;
}

.emission-card{
    padding:0;
}

.emission-content{
    flex:1;
}

/* ==========================
   SCROLL DOUX
========================== */

html{
    scroll-behavior:smooth;
}
/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f4f4f4;
    color:#333;
}

/* ==========================
   TOPBAR
========================== */

.topbar{
    background:#004aad;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 30px;
}

.top-right a{
    color:#fff;
    margin-left:15px;
    text-decoration:none;
    transition:.3s;
}

.top-right a:hover{
    color:#ffd700;
}

/* ==========================
   HEADER
========================== */

.header{
    background:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 30px;
}

.logo img{
    width:200px;
}

.search{
    display:flex;
}

.search input{
    width:300px;
    padding:12px;
    border:1px solid #ccc;
}

.search button{
    background:#004aad;
    color:#fff;
    border:none;
    padding:12px 20px;
    cursor:pointer;
}

/* ==========================
   MENU
========================== */

.menu{
    background:#003b8e;
    display:flex;
    justify-content:center;
}

.menu a{
    color:#fff;
    text-decoration:none;
    padding:18px 20px;
    font-weight:bold;
}

.menu a:hover,
.menu .active{
    background:#002d6e;
}

/* ==========================
   BANNIÈRE
========================== */

.page-banner{
    background:#004aad;
    color:#fff;
    text-align:center;
    padding:50px 20px;
}

.page-banner h1{
    font-size:40px;
    margin-bottom:10px;
}

.page-banner p{
    font-size:18px;
}
/* ==========================
   GALERIE VIDÉOS
========================== */

.videos{
    width:90%;
    margin:40px auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.video-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    transition:.3s;
}

.video-card:hover{
    transform:translateY(-8px);
}

.video-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:.5s;
}

.video-card:hover img{
    transform:scale(1.08);
}

.video-card h3{
    padding:15px;
    color:#004aad;
    font-size:22px;
}

.video-card p{
    padding:0 15px 15px;
    color:#555;
    line-height:1.6;
}

.video-card a{
    display:inline-block;
    margin:0 15px 20px;
    padding:10px 20px;
    background:#004aad;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
    transition:.3s;
}

.video-card a:hover{
    background:#002d6e;
}

/* ==========================
   PAGINATION
========================== */

.pagination{
    text-align:center;
    margin:40px 0;
}

.pagination a{
    display:inline-block;
    padding:10px 18px;
    margin:5px;
    background:#eee;
    color:#333;
    text-decoration:none;
    border-radius:5px;
    transition:.3s;
}

.pagination a:hover,
.pagination .active{
    background:#004aad;
    color:#fff;
}
/* ==========================
   FOOTER
========================== */

.footer{
    background:#002b63;
    color:#fff;
    margin-top:50px;
}

.footer-content{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:30px;
    padding:40px 0;
}

.footer-logo{
    width:180px;
    margin-bottom:15px;
}

.footer-box h3{
    margin-bottom:15px;
    color:#fff;
}

.footer-box p{
    line-height:1.8;
    margin-bottom:10px;
}

.footer-box a{
    display:block;
    color:#ddd;
    text-decoration:none;
    margin-bottom:10px;
    transition:.3s;
}

.footer-box a:hover{
    color:#fff;
    padding-left:8px;
}

.footer-bottom{
    text-align:center;
    padding:18px;
    border-top:1px solid rgba(255,255,255,.2);
    font-size:14px;
}

/* ==========================
   ANIMATIONS
========================== */

.video-card{
    animation:fadeIn .8s ease;
}

@keyframes fadeIn{

    from{
        opacity:0;
        transform:translateY(25px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:992px){

.videos{
    grid-template-columns:repeat(2,1fr);
}

.footer-content{
    grid-template-columns:1fr;
    text-align:center;
}

}

@media(max-width:768px){

.topbar,
.header{
    flex-direction:column;
    gap:15px;
    text-align:center;
}

.menu{
    flex-wrap:wrap;
}

.menu a{
    padding:12px;
}

.search{
    width:100%;
}

.search input{
    width:100%;
}

.videos{
    grid-template-columns:1fr;
}

.page-banner h1{
    font-size:30px;
}

.page-banner p{
    font-size:16px;
}

.video-card img{
    height:220px;
}

.footer-content{
    padding:30px 20px;
}

}

html{
    scroll-behavior:smooth;
}

/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f5f5f5;
    color:#333;
    line-height:1.6;
}

/* ==========================
   TOP BAR
========================== */

.topbar{
    background:#004aad;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 30px;
}

.top-right a{
    color:#fff;
    margin-left:15px;
    text-decoration:none;
    transition:.3s;
}

.top-right a:hover{
    color:#ffd700;
}

/* ==========================
   HEADER
========================== */

.header{
    background:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 30px;
}

.logo img{
    width:200px;
}

.search{
    display:flex;
}

.search input{
    width:300px;
    padding:10px;
    border:1px solid #ccc;
}

.search button{
    background:#004aad;
    color:#fff;
    border:none;
    padding:10px 20px;
    cursor:pointer;
}

/* ==========================
   MENU
========================== */

.menu{
    background:#003b8e;
    display:flex;
    justify-content:center;
}

.menu a{
    color:#fff;
    text-decoration:none;
    padding:18px 20px;
    font-weight:bold;
}

.menu a:hover,
.menu .active{
    background:#002d6e;
}

/* ==========================
   BANNIÈRE
========================== */

.page-banner{
    background:#004aad;
    color:#fff;
    text-align:center;
    padding:60px 20px;
}

.page-banner h1{
    font-size:42px;
    margin-bottom:10px;
}

.page-banner p{
    font-size:18px;
}

/* ==========================
   À PROPOS
========================== */

.about{
    width:90%;
    margin:50px auto;
    display:flex;
    align-items:center;
    gap:40px;
}

.about-image img{
    width:100%;
    max-width:500px;
    border-radius:10px;
}

.about-content h2{
    color:#004aad;
    margin-bottom:20px;
}

.about-content p{
    margin-bottom:15px;
}

/* ==========================
   MISSION - VISION - VALEURS
========================== */

.mission-section{
    width:90%;
    margin:50px auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.mission-card{
    background:#fff;
    padding:30px;
    text-align:center;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    transition:.3s;
}

.mission-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.mission-card i{
    font-size:50px;
    color:#004aad;
    margin-bottom:20px;
}

.mission-card h2{
    color:#004aad;
    margin-bottom:15px;
}

.mission-card p{
    color:#555;
    line-height:1.8;
}

/* ==========================
   OBJECTIFS
========================== */

.objectifs{
    width:90%;
    margin:50px auto;
    background:#fff;
    padding:40px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.objectifs h2{
    color:#004aad;
    margin-bottom:20px;
    text-align:center;
}

.objectifs ul{
    list-style:none;
}

.objectifs li{
    padding:12px 0;
    border-bottom:1px solid #ddd;
    font-size:17px;
}

.objectifs li:last-child{
    border-bottom:none;
}

/* ==========================
   ÉQUIPE
========================== */

.team{
    width:90%;
    margin:50px auto;
}

.team h2{
    text-align:center;
    color:#004aad;
    margin-bottom:30px;
}

.team-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.team-card{
    background:#fff;
    text-align:center;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    transition:.3s;
}

.team-card:hover{
    transform:translateY(-8px);
}

.team-card img{
    width:100%;
    height:300px;
    object-fit:cover;
}

.team-card h3{
    color:#004aad;
    margin:15px 0;
}

.team-card p{
    padding:0 20px 20px;
    color:#555;
}

/* ==========================
   CONTACT
========================== */

.about-contact{
    width:90%;
    margin:50px auto;
    background:#fff;
    padding:40px;
    text-align:center;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.about-contact h2{
    color:#004aad;
    margin-bottom:20px;
}

.about-contact p{
    margin:15px 0;
    font-size:18px;
}

.about-contact i{
    color:#004aad;
    margin-right:10px;
}

/* ==========================
   FOOTER
========================== */

.footer{
    background:#002b63;
    color:#fff;
    margin-top:50px;
}

.footer-content{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:30px;
    padding:40px 0;
}

.footer-logo{
    width:180px;
    margin-bottom:15px;
}

.footer-box h3{
    margin-bottom:15px;
}

.footer-box a{
    display:block;
    color:#ddd;
    text-decoration:none;
    margin-bottom:10px;
}

.footer-box a:hover{
    color:#fff;
}

.footer-bottom{
    text-align:center;
    padding:20px;
    border-top:1px solid rgba(255,255,255,.2);
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:992px){

.about{
    flex-direction:column;
}

.mission-section{
    grid-template-columns:1fr;
}

.team-container{
    grid-template-columns:1fr;
}

.footer-content{
    grid-template-columns:1fr;
    text-align:center;
}

}

@media(max-width:768px){

.topbar,
.header{
    flex-direction:column;
    text-align:center;
    gap:15px;
}

.menu{
    flex-wrap:wrap;
}

.search{
    width:100%;
}

.search input{
    width:100%;
}

.page-banner h1{
    font-size:30px;
}

.about-contact{
    padding:25px;
}

}

/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f5f5f5;
    color:#333;
}

/* ==========================
   TOPBAR
========================== */

.topbar{
    background:#004aad;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 30px;
}

.top-right a{
    color:#fff;
    margin-left:15px;
    text-decoration:none;
    transition:.3s;
}

.top-right a:hover{
    color:#ffd700;
}

/* ==========================
   HEADER
========================== */

.header{
    background:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 30px;
}

.logo img{
    width:200px;
}

.search{
    display:flex;
}

.search input{
    width:300px;
    padding:12px;
    border:1px solid #ccc;
}

.search button{
    background:#004aad;
    color:#fff;
    border:none;
    padding:12px 20px;
    cursor:pointer;
}

/* ==========================
   MENU
========================== */

.menu{
    background:#003b8e;
    display:flex;
    justify-content:center;
}

.menu a{
    color:#fff;
    text-decoration:none;
    padding:18px 20px;
    font-weight:bold;
}

.menu a:hover,
.menu .active{
    background:#002d6e;
}

/* ==========================
   BANNIÈRE
========================== */

.page-banner{
    background:#004aad;
    color:#fff;
    text-align:center;
    padding:60px 20px;
}

.page-banner h1{
    font-size:42px;
    margin-bottom:10px;
}

.page-banner p{
    font-size:18px;
}

/* ==========================
   CONTACT
========================== */

.contact{
    width:90%;
    margin:50px auto;
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
}

/* ==========================
   FORMULAIRE
========================== */

.contact-form{
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.contact-form h2{
    color:#004aad;
    margin-bottom:20px;
}

.contact-form form{
    display:flex;
    flex-direction:column;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #ccc;
    border-radius:5px;
    font-size:16px;
    outline:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#004aad;
}

.contact-form textarea{
    resize:vertical;
}

.contact-form button{
    background:#004aad;
    color:#fff;
    border:none;
    padding:15px;
    border-radius:5px;
    cursor:pointer;
    font-size:16px;
    transition:.3s;
}

.contact-form button:hover{
    background:#002d6e;
}

/* ==========================
   INFORMATIONS
========================== */

.contact-info{
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.contact-info h2{
    color:#004aad;
    margin-bottom:20px;
}

.contact-info p{
    margin-bottom:20px;
    font-size:17px;
    line-height:1.7;
}

.contact-info i{
    color:#004aad;
    margin-right:10px;
}

/* ==========================
   GOOGLE MAPS
========================== */

.map{
    width:90%;
    margin:50px auto;
}

.map h2{
    color:#004aad;
    margin-bottom:20px;
    text-align:center;
}

.map iframe{
    width:100%;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

/* ==========================
   FOOTER
========================== */

.footer{
    background:#002b63;
    color:#fff;
    margin-top:50px;
}

.footer-content{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:30px;
    padding:40px 0;
}

.footer-logo{
    width:180px;
    margin-bottom:15px;
}

.footer-box h3{
    margin-bottom:15px;
}

.footer-box p{
    margin-bottom:10px;
    line-height:1.8;
}

.footer-box a{
    display:block;
    color:#ddd;
    text-decoration:none;
    margin-bottom:10px;
    transition:.3s;
}

.footer-box a:hover{
    color:#fff;
    padding-left:8px;
}

.footer-bottom{
    text-align:center;
    padding:20px;
    border-top:1px solid rgba(255,255,255,.2);
    font-size:14px;
}

/* ==========================
   ANIMATIONS
========================== */

.contact-form,
.contact-info,
.map{
    animation:fadeIn .8s ease;
}

@keyframes fadeIn{

    from{
        opacity:0;
        transform:translateY(25px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:992px){

.contact{
    grid-template-columns:1fr;
}

.footer-content{
    grid-template-columns:1fr;
    text-align:center;
}

}

@media(max-width:768px){

.topbar,
.header{
    flex-direction:column;
    text-align:center;
    gap:15px;
}

.menu{
    flex-wrap:wrap;
}

.menu a{
    padding:12px;
}

.search{
    width:100%;
}

.search input{
    width:100%;
}

.page-banner h1{
    font-size:30px;
}

.page-banner p{
    font-size:16px;
}

.contact-form,
.contact-info{
    padding:20px;
}

.map iframe{
    height:300px;
}

}

html{
    scroll-behavior:smooth;
}
.menu{
    display:flex;
    justify-content:center;
    gap:20px;
    background:#c40000;
    padding:15px;
}

.menu a{
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:bold;
}

.menu a:hover{
    color:yellow;
}

