/*======================================================
STREAM CLOUD
STYLE PUBLIC
======================================================*/

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

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;

background:#edf2fb;

color:#16244d;

overflow-x:hidden;

}

/*======================================================
CONTAINER
======================================================*/

.container{

width:min(1400px,95%);

margin:auto;

}

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

.topbar{

position:fixed;

top:0;

left:0;

width:100%;

height:88px;

background:#13245f;

z-index:99999;

box-shadow:0 12px 35px rgba(0,0,0,.15);

}

.topbar .container{

height:88px;

display:flex;

align-items:center;

justify-content:space-between;

}

/*======================================================
LOGO
======================================================*/

.logo{

display:flex;

align-items:center;

gap:15px;

}

.logo img{

width:58px;

height:58px;

border-radius:50%;

object-fit:cover;

background:white;

}

.logo h2{

font-size:34px;

font-weight:700;

color:white;

}

.logo span{

display:block;

margin-top:3px;

font-size:14px;

color:#b8c4f4;

}

/*======================================================
PAGE
======================================================*/

.home-page{

padding-top:120px;

padding-bottom:80px;

min-height:100vh;

}
/*======================================================
MENU
======================================================*/

.menu{

display:flex;

align-items:center;

gap:12px;

}

.menu>a,
.dropdown>a{

display:flex;

align-items:center;

gap:8px;

padding:12px 18px;

border-radius:14px;

text-decoration:none;

font-size:16px;

font-weight:600;

color:#ffffff;

transition:.30s;

position:relative;

}

.menu>a:hover,
.dropdown>a:hover{

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

transform:translateY(-2px);

}

.menu>a::after,
.dropdown>a::after{

content:"";

position:absolute;

left:15px;

bottom:8px;

width:0;

height:3px;

background:#ff3b30;

border-radius:20px;

transition:.35s;

}

.menu>a:hover::after,
.dropdown>a:hover::after{

width:calc(100% - 30px);

}

.menu i{

font-size:18px;

}

/*======================================================
MENU ACTIF
======================================================*/

.menu .active{

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

}

.menu .active::after{

width:calc(100% - 30px);

}

/*======================================================
SOUS MENU MEDIAS
======================================================*/

.dropdown{

position:relative;

}

.dropdown-menu{

position:absolute;

top:60px;

right:0;

min-width:220px;

background:#ffffff;

border-radius:18px;

overflow:hidden;

box-shadow:0 25px 60px rgba(0,0,0,.18);

opacity:0;

visibility:hidden;

transform:translateY(20px);

transition:.30s;

z-index:999;

}

.dropdown:hover .dropdown-menu{

opacity:1;

visibility:visible;

transform:translateY(0);

}

.dropdown-menu a{

display:flex;

align-items:center;

padding:16px 22px;

text-decoration:none;

font-size:15px;

font-weight:500;

color:#16244d;

transition:.25s;

}

.dropdown-menu a:hover{

background:#edf2fb;

padding-left:28px;

color:#0f2b83;

}

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

.mobile-menu{

display:none;

font-size:28px;

color:white;

cursor:pointer;

transition:.3s;

}

.mobile-menu:hover{

transform:rotate(90deg);

}
/*======================================================
HERO LIVE
======================================================*/

.hero-live{

padding-top:25px;

}

.hero-grid{

display:grid;

grid-template-columns:2fr 420px;

gap:35px;

align-items:start;

}

/*======================================================
LECTEUR
======================================================*/

.player-card{

background:#ffffff;

border-radius:28px;

padding:25px;

box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.video-wrapper{

width:100%;

aspect-ratio:16/9;

border-radius:20px;

overflow:hidden;

background:#000;

}

.video-wrapper video{

width:100%;

height:100%;

display:block;

object-fit:cover;

background:#000;

}

/*======================================================
SIDEBAR
======================================================*/

.live-sidebar{

display:flex;

flex-direction:column;

gap:20px;

}

.live-status{

display:inline-flex;

align-items:center;

gap:10px;

width:max-content;

padding:12px 20px;

background:#ff3b30;

color:#fff;

font-size:14px;

font-weight:700;

border-radius:999px;

box-shadow:0 10px 25px rgba(255,59,48,.30);

animation:pulseLive 2s infinite;

}

.live-dot{

width:10px;

height:10px;

border-radius:50%;

background:#fff;

}

@keyframes pulseLive{

0%{

transform:scale(1);

}

50%{

transform:scale(1.05);

}

100%{

transform:scale(1);

}

}

.channel-card{

background:#ffffff;

border-radius:22px;

padding:25px;

text-align:center;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.channel-card img{

width:90px;

height:90px;

border-radius:50%;

object-fit:cover;

margin-bottom:15px;

}

.channel-card h2{

font-size:28px;

margin-bottom:10px;

color:#16244d;

}

.channel-card p{

font-size:15px;

color:#6d748b;

line-height:1.7;

}

/*======================================================
PROGRAMME
======================================================*/

.today-program{

background:#ffffff;

padding:25px;

border-radius:22px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.today-program h3{

font-size:22px;

margin-bottom:20px;

color:#16244d;

}

.programme-item{

display:flex;

gap:18px;

padding:15px;

border-radius:16px;

background:#edf2fb;

}

.time{

width:75px;

height:60px;

display:flex;

align-items:center;

justify-content:center;

border-radius:14px;

background:#13245f;

color:#fff;

font-weight:700;

}

.content strong{

display:block;

font-size:17px;

margin-bottom:6px;

}

.content span{

font-size:14px;

color:#6d748b;

line-height:1.6;

}

.empty-program{

padding:20px;

text-align:center;

border-radius:16px;

background:#edf2fb;

color:#7c859d;

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

@media screen and (max-width:1200px){

.hero-grid{

grid-template-columns:1fr;

gap:30px;

}

.live-sidebar{

order:2;

}

.player-card{

order:1;

}

}

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

@media screen and (max-width:992px){

.topbar{

height:80px;

}

.topbar .container{

height:80px;

}

.logo img{

width:50px;

height:50px;

}

.logo h2{

font-size:26px;

}

.logo span{

font-size:13px;

}

.mobile-menu{

display:block;

}

.menu{

position:fixed;

top:80px;

right:-100%;

width:290px;

height:calc(100vh - 80px);

background:#13245f;

display:flex;

flex-direction:column;

align-items:flex-start;

padding:30px 20px;

gap:8px;

transition:.40s;

overflow-y:auto;

box-shadow:-15px 0 35px rgba(0,0,0,.25);

z-index:9999;

}

.menu.active{

right:0;

}

.menu>a,

.dropdown{

width:100%;

}

.menu>a,

.dropdown>a{

width:100%;

justify-content:flex-start;

}

.dropdown-menu{

position:static;

opacity:1;

visibility:visible;

transform:none;

display:none;

margin-top:8px;

border-radius:14px;

box-shadow:none;

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

width:100%;

}

.dropdown.open .dropdown-menu{

display:block;

}

.dropdown-menu a{

color:white;

padding:14px 20px;

}

.dropdown-menu a:hover{

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

color:white;

padding-left:24px;

}

}

/*======================================================
SMARTPHONE
======================================================*/

@media screen and (max-width:768px){

.home-page{

padding-top:100px;

}

.player-card{

padding:15px;

border-radius:18px;

}

.video-wrapper{

border-radius:14px;

}

.channel-card{

padding:20px;

}

.today-program{

padding:20px;

}

.channel-card h2{

font-size:22px;

}

.today-program h3{

font-size:20px;

}

}

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

@media screen and (max-width:480px){

.logo h2{

font-size:20px;

}

.logo span{

display:none;

}

.player-card{

padding:10px;

}

.live-status{

font-size:12px;

padding:10px 16px;

}

.channel-card img{

width:70px;

height:70px;

}

.channel-card h2{

font-size:20px;

}

.today-program{

padding:16px;

}

.programme-item{

flex-direction:column;

}

.time{

width:100%;

height:48px;

}

}
/*======================================================
ANIMATIONS STREAM CLOUD
======================================================*/

/* Apparition progressive des sections */

.hero-live{

animation:fadeUp .8s ease;

}

.player-card{

animation:fadeLeft .8s ease;

}

.live-sidebar{

animation:fadeRight .8s ease;

}

/*======================================================
ANIMATIONS
======================================================*/

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}

@keyframes fadeLeft{

from{

opacity:0;

transform:translateX(-40px);

}

to{

opacity:1;

transform:translateX(0);

}

}

@keyframes fadeRight{

from{

opacity:0;

transform:translateX(40px);

}

to{

opacity:1;

transform:translateX(0);

}

}

/*======================================================
EFFETS DES CARTES
======================================================*/

.player-card,
.channel-card,
.today-program{

transition:.35s;

}

.player-card:hover{

transform:translateY(-6px);

box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.channel-card:hover{

transform:translateY(-6px);

box-shadow:0 18px 40px rgba(19,36,95,.15);

}

.today-program:hover{

transform:translateY(-6px);

box-shadow:0 18px 40px rgba(19,36,95,.15);

}

/*======================================================
BOUTONS DU MENU
======================================================*/

.menu a{

transition:all .30s ease;

}

.menu a:hover{

transform:translateY(-2px);

}

/*======================================================
LOGO
======================================================*/

.logo img{

transition:.40s;

}

.logo:hover img{

transform:rotate(-8deg) scale(1.08);

}

/*======================================================
LECTEUR
======================================================*/

.video-wrapper{

transition:.40s;

}

.video-wrapper:hover{

transform:scale(1.01);

}

/*======================================================
PROGRAMME
======================================================*/

.programme-item{

transition:.30s;

cursor:pointer;

}

.programme-item:hover{

background:#dfe8fb;

transform:translateX(6px);

}

/*======================================================
BADGE LIVE
======================================================*/

.live-dot{

animation:liveBlink 1s infinite;

}

@keyframes liveBlink{

0%{

opacity:1;

}

50%{

opacity:.25;

}

100%{

opacity:1;

}

}

/*======================================================
SCROLLBAR PREMIUM
======================================================*/

::-webkit-scrollbar{

width:10px;

height:10px;

}

::-webkit-scrollbar-track{

background:#edf2fb;

}

::-webkit-scrollbar-thumb{

background:#13245f;

border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:#28439b;

}
/*======================================================
MEDIA
======================================================*/

.media-section{

padding:70px 0;

}

.section-title{

font-size:34px;

margin-bottom:35px;

color:#13245f;

display:flex;

align-items:center;

gap:15px;

}

.media-grid{

display:grid;

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

gap:25px;

}

.media-card{

background:white;

border-radius:25px;

padding:40px 25px;

text-align:center;

text-decoration:none;

color:#16244d;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.35s;

}

.media-card:hover{

transform:translateY(-8px);

}

.media-icon{

width:90px;

height:90px;

margin:auto;

margin-bottom:20px;

border-radius:50%;

background:#13245f;

display:flex;

justify-content:center;

align-items:center;

font-size:34px;

color:white;

}

.media-card h3{

font-size:24px;

margin-bottom:10px;

}

.media-card p{

font-size:15px;

color:#6f7690;

line-height:1.7;

}

@media(max-width:992px){

.media-grid{

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

}

}

@media(max-width:600px){

.media-grid{

grid-template-columns:1fr;

}

}
/*======================================================
PAGE PROGRAMME TV
======================================================*/

.programme-page{

    padding-top:120px;

    padding-bottom:80px;

    background:#eef3fb;

    min-height:100vh;

}

/*==========================
ENTETE
==========================*/

.programme-header{

    text-align:center;

    margin-bottom:45px;

}

.programme-header h1{

    font-size:42px;

    color:#13245f;

    margin-bottom:10px;

    font-weight:700;

}

.programme-header p{

    color:#6f7690;

    font-size:17px;

}

/*==========================
JOURS
==========================*/

.jours-nav{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

    margin-bottom:50px;

}

.jours-nav a{

    text-decoration:none;

    padding:14px 24px;

    background:white;

    color:#13245f;

    border-radius:50px;

    font-weight:600;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.30s;

}

.jours-nav a:hover{

    background:#13245f;

    color:white;

    transform:translateY(-4px);

}

.jours-nav a.active{

    background:#13245f;

    color:white;

}

/*==========================
LISTE DES PROGRAMMES
==========================*/

.programme-list{

    display:flex;

    flex-direction:column;

    gap:25px;

}
/*======================================================
RESPONSIVE PROGRAMME TV
======================================================*/

@media(max-width:992px){

.programme-header h1{

font-size:34px;

}

}

@media(max-width:768px){

.programme-page{

padding-top:100px;

}

.jours-nav{

justify-content:flex-start;

overflow-x:auto;

flex-wrap:nowrap;

padding-bottom:10px;

scrollbar-width:none;

}

.jours-nav::-webkit-scrollbar{

display:none;

}

.jours-nav a{

white-space:nowrap;

}

.programme-header h1{

font-size:28px;

}

.programme-header p{

font-size:15px;

}

}
/*======================================================
PAGE CONTACT
======================================================*/

.contact-page{

    min-height:100vh;

    padding:135px 0 80px;

    background:#eef3fb;

}

.contact-heading{

    max-width:760px;

    margin:0 auto 45px;

    text-align:center;

}

.contact-label{

    display:inline-flex;

    align-items:center;

    gap:9px;

    margin-bottom:15px;

    padding:9px 16px;

    border-radius:30px;

    background:#e2e9fb;

    color:#13245f;

    font-size:13px;

    font-weight:700;

}

.contact-heading h1{

    margin-bottom:12px;

    color:#13245f;

    font-size:42px;

    line-height:1.2;

}

.contact-heading p{

    color:#6f7690;

    font-size:16px;

    line-height:1.8;

}

.contact-layout{

    display:grid;

    grid-template-columns:400px minmax(0,1fr);

    gap:30px;

    max-width:1200px;

    margin:0 auto;

}

/*======================================================
INFORMATIONS
======================================================*/

.contact-informations,
.contact-form-card{

    padding:32px;

    border-radius:25px;

    background:#ffffff;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.contact-channel{

    display:flex;

    align-items:center;

    gap:17px;

    margin-bottom:32px;

    padding-bottom:25px;

    border-bottom:1px solid #edf0f6;

}

.contact-channel img,
.contact-logo-default{

    width:76px;

    height:76px;

    flex-shrink:0;

    border-radius:50%;

    background:#eef3fb;

    object-fit:cover;

}

.contact-logo-default{

    display:flex;

    align-items:center;

    justify-content:center;

    color:#13245f;

    font-size:28px;

}

.contact-channel h2{

    color:#13245f;

    font-size:24px;

}

.contact-channel span{

    display:block;

    margin-top:5px;

    color:#7b8192;

    font-size:14px;

}

.contact-details{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.contact-detail{

    display:flex;

    align-items:center;

    gap:15px;

    padding:16px;

    border-radius:16px;

    background:#f5f7fc;

    color:#13245f;

    text-decoration:none;

    transition:transform .3s ease, background .3s ease;

}

.contact-detail:hover{

    background:#eaf0ff;

    transform:translateX(5px);

}

.contact-detail-icon{

    display:flex;

    align-items:center;

    justify-content:center;

    width:48px;

    height:48px;

    flex-shrink:0;

    border-radius:14px;

    background:#13245f;

    color:#ffffff;

    font-size:18px;

}

.contact-detail span{

    display:block;

    margin-bottom:3px;

    color:#7b8192;

    font-size:12px;

}

.contact-detail strong{

    color:#13245f;

    font-size:14px;

    overflow-wrap:anywhere;

}

.contact-whatsapp{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    margin-top:25px;

    padding:15px;

    border-radius:14px;

    background:#25d366;

    color:#ffffff;

    font-size:15px;

    font-weight:700;

    text-decoration:none;

    transition:transform .3s ease, box-shadow .3s ease;

}

.contact-whatsapp:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(37,211,102,.25);

}

/*======================================================
FORMULAIRE
======================================================*/

.contact-form-card h2{

    margin-bottom:7px;

    color:#13245f;

    font-size:28px;

}

.contact-form-card > p{

    margin-bottom:28px;

    color:#7b8192;

}

.contact-form{

    display:flex;

    flex-direction:column;

    gap:19px;

}

.contact-form-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

}

.contact-field{

    display:flex;

    flex-direction:column;

    gap:8px;

}

.contact-field label{

    color:#323a51;

    font-size:14px;

    font-weight:600;

}

.contact-field input,
.contact-field textarea{

    width:100%;

    padding:14px 16px;

    border:1px solid #dce1eb;

    border-radius:12px;

    outline:none;

    background:#ffffff;

    color:#20273a;

    font-family:"Poppins",sans-serif;

    font-size:14px;

    transition:border-color .25s ease, box-shadow .25s ease;

}

.contact-field textarea{

    min-height:145px;

    resize:vertical;

}

.contact-field input:focus,
.contact-field textarea:focus{

    border-color:#13245f;

    box-shadow:0 0 0 4px rgba(19,36,95,.1);

}

.contact-submit{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    align-self:flex-start;

    padding:15px 27px;

    border:0;

    border-radius:13px;

    background:#13245f;

    color:#ffffff;

    font-family:"Poppins",sans-serif;

    font-size:15px;

    font-weight:700;

    cursor:pointer;

    transition:transform .3s ease, box-shadow .3s ease;

}

.contact-submit:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(19,36,95,.25);

}

/*======================================================
RESPONSIVE CONTACT
======================================================*/

@media(max-width:950px){

    .contact-layout{

        grid-template-columns:1fr;

    }

}

@media(max-width:700px){

    .contact-page{

        padding-top:105px;

    }

    .contact-heading h1{

        font-size:30px;

    }

    .contact-form-row{

        grid-template-columns:1fr;

    }

    .contact-informations,
    .contact-form-card{

        padding:22px;

        border-radius:20px;

    }

    .contact-submit{

        width:100%;

    }

}

@media(max-width:480px){

    .contact-channel{

        align-items:flex-start;

    }

    .contact-channel img,
    .contact-logo-default{

        width:62px;

        height:62px;

    }

    .contact-channel h2{

        font-size:21px;

    }

}
/*======================================================
CORRECTION MENU MÉDIAS
======================================================*/

/* Autoriser le sous-menu à sortir du header */

.topbar,
.topbar .container,
.menu{

    overflow:visible !important;

}

/* Décaler légèrement Médias */

.menu .dropdown{

    position:relative;

    margin-left:18px;

    z-index:99999;

}

/* Lien principal Médias */

.menu .dropdown > a{

    display:flex;

    align-items:center;

    gap:9px;

    position:relative;

    z-index:2;

}

/* Sous-menu Médias */

.menu .dropdown-menu{

    position:absolute;

    top:100%;

    left:0;

    right:auto;

    min-width:220px;

    margin-top:0;

    padding:12px 0;

    border-radius:16px;

    background:#ffffff;

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

    opacity:0;

    visibility:hidden;

    transform:translateY(12px);

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease;

    z-index:999999;

}

/* Petit espace invisible pour éviter la fermeture */

.menu .dropdown-menu::before{

    content:"";

    position:absolute;

    left:0;

    top:-12px;

    width:100%;

    height:12px;

}

/* Affichage du sous-menu */

.menu .dropdown:hover .dropdown-menu,
.menu .dropdown:focus-within .dropdown-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

/* Liens du sous-menu */

.menu .dropdown-menu a{

    display:flex;

    align-items:center;

    gap:10px;

    width:100%;

    padding:13px 20px;

    color:#13245f;

    font-size:14px;

    font-weight:600;

    text-decoration:none;

    white-space:nowrap;

    transition:.25s ease;

}

.menu .dropdown-menu a:hover{

    padding-left:26px;

    color:#ffffff;

    background:#13245f;

}
/*======================================================
PAGE PUBLIQUE DES MÉDIAS
======================================================*/

.public-media-page{

    min-height:100vh;

    padding:135px 0 80px;

    background:#eef3fb;

}

.public-media-heading{

    display:flex;

    align-items:flex-end;

    justify-content:space-between;

    gap:30px;

    margin-bottom:40px;

}

.public-media-label{

    display:inline-flex;

    align-items:center;

    gap:9px;

    margin-bottom:13px;

    padding:8px 15px;

    border-radius:30px;

    background:#dfe7fa;

    color:#13245f;

    font-size:13px;

    font-weight:700;

}

.public-media-heading h1{

    margin-bottom:8px;

    color:#13245f;

    font-size:42px;

}

.public-media-heading p{

    color:#6f7690;

    font-size:16px;

}

.public-media-total{

    display:flex;

    align-items:center;

    gap:9px;

    padding:14px 20px;

    border-radius:16px;

    background:#ffffff;

    box-shadow:0 12px 30px rgba(0,0,0,.07);

}

.public-media-total strong{

    color:#13245f;

    font-size:25px;

}

.public-media-total span{

    color:#747b90;

    font-size:14px;

}

/*======================================================
GRILLE VIDÉOS
======================================================*/

.public-video-grid{

    display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:25px;

}

.public-video-card{

    overflow:hidden;

    border-radius:22px;

    background:#ffffff;

    box-shadow:0 15px 38px rgba(0,0,0,.08);

    transition:transform .35s ease,
               box-shadow .35s ease;

}

.public-video-card:hover{

    transform:translateY(-7px);

    box-shadow:0 22px 48px rgba(0,0,0,.14);

}

.public-video-player{

    width:100%;

    aspect-ratio:16/9;

    overflow:hidden;

    background:#101010;

}

.public-video-player video{

    display:block;

    width:100%;

    height:100%;

    background:#000000;

    object-fit:cover;

}

.public-video-missing{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:12px;

    width:100%;

    height:100%;

    color:#ffffff;

    background:#252525;

}

.public-video-missing i{

    font-size:38px;

}

.public-video-missing span{

    font-size:14px;

}

.public-video-content{

    padding:22px;

}

.public-video-content h2{

    margin-bottom:10px;

    color:#13245f;

    font-size:21px;

    line-height:1.4;

}

.public-video-content p{

    display:-webkit-box;

    margin-bottom:18px;

    overflow:hidden;

    color:#71788d;

    font-size:14px;

    line-height:1.7;

    -webkit-line-clamp:3;

    -webkit-box-orient:vertical;

}

.public-video-meta{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

    padding-top:15px;

    border-top:1px solid #edf0f6;

}

.public-video-meta span{

    display:flex;

    align-items:center;

    gap:7px;

    color:#80869a;

    font-size:12px;

}

.public-video-meta i{

    color:#13245f;

}

/*======================================================
AUCUN MÉDIA
======================================================*/

.public-media-empty{

    padding:85px 25px;

    border-radius:25px;

    background:#ffffff;

    text-align:center;

    box-shadow:0 15px 38px rgba(0,0,0,.07);

}

.public-media-empty-icon{

    display:flex;

    align-items:center;

    justify-content:center;

    width:90px;

    height:90px;

    margin:0 auto 22px;

    border-radius:50%;

    background:#e8eefc;

    color:#13245f;

    font-size:36px;

}

.public-media-empty h2{

    margin-bottom:10px;

    color:#13245f;

    font-size:26px;

}

.public-media-empty p{

    color:#777e92;

}

/*======================================================
RESPONSIVE VIDÉOS
======================================================*/

@media(max-width:1050px){

    .public-video-grid{

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

    }

}

@media(max-width:700px){

    .public-media-page{

        padding-top:105px;

    }

    .public-media-heading{

        align-items:flex-start;

        flex-direction:column;

    }

    .public-media-heading h1{

        font-size:31px;

    }

    .public-video-grid{

        grid-template-columns:1fr;

    }

    .public-media-total{

        align-self:flex-start;

    }

}

@media(max-width:480px){

    .public-video-content{

        padding:18px;

    }

    .public-video-content h2{

        font-size:19px;

    }

}
/*======================================================
PHOTOS
======================================================*/

.public-photo-grid{

    display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:24px;

}

.public-photo-card{

    overflow:hidden;

    border-radius:22px;

    background:#ffffff;

    box-shadow:0 15px 38px rgba(0,0,0,.08);

    transition:.35s;

}

.public-photo-card:hover{

    transform:translateY(-7px);

}

.public-photo-image{

    position:relative;

    display:block;

    width:100%;

    aspect-ratio:4/3;

    overflow:hidden;

    background:#e5e7ec;

}

.public-photo-image img{

    width:100%;

    height:100%;

    display:block;

    object-fit:cover;

    transition:transform .4s ease;

}

.public-photo-card:hover img{

    transform:scale(1.08);

}

.public-photo-overlay{

    position:absolute;

    inset:0;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(7,24,77,.55);

    color:#ffffff;

    font-size:30px;

    opacity:0;

    transition:.3s;

}

.public-photo-image:hover .public-photo-overlay{

    opacity:1;

}

.public-photo-content{

    padding:19px;

}

.public-photo-content h2{

    color:#13245f;

    font-size:19px;

}

.public-photo-content p{

    margin-top:8px;

    color:#777e91;

    font-size:14px;

}

.public-photo-missing{

    display:flex;

    align-items:center;

    justify-content:center;

    aspect-ratio:4/3;

    background:#e5e9f3;

    color:#13245f;

    font-size:38px;

}

/*======================================================
DOCUMENTS
======================================================*/

.public-document-list{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.public-document-card{

    display:flex;

    align-items:center;

    gap:20px;

    padding:22px;

    border-radius:20px;

    background:#ffffff;

    box-shadow:0 12px 32px rgba(0,0,0,.07);

    transition:.3s;

}

.public-document-card:hover{

    transform:translateY(-4px);

}

.public-document-icon{

    display:flex;

    align-items:center;

    justify-content:center;

    width:65px;

    height:65px;

    flex-shrink:0;

    border-radius:17px;

    background:#e5ebfa;

    color:#13245f;

    font-size:28px;

}

.public-document-content{

    flex:1;

}

.public-document-content h2{

    margin-bottom:6px;

    color:#13245f;

    font-size:20px;

}

.public-document-content p{

    margin-bottom:8px;

    color:#777e91;

    font-size:14px;

}

.public-document-content span{

    color:#8b91a3;

    font-size:12px;

    font-weight:700;

}

.public-document-button,
.public-document-download{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    padding:12px 17px;

    border-radius:12px;

    background:#13245f;

    color:#ffffff;

    font-size:14px;

    font-weight:600;

    text-decoration:none;

}

.public-document-download{

    width:45px;

    height:45px;

    padding:0;

    background:#d4af37;

    color:#07184d;

}

/*======================================================
AUDIOS
======================================================*/

.public-audio-list{

    display:grid;

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

    gap:22px;

}

.public-audio-card{

    display:flex;

    gap:20px;

    padding:22px;

    border-radius:22px;

    background:#ffffff;

    box-shadow:0 14px 35px rgba(0,0,0,.08);

    transition:.3s;

}

.public-audio-card:hover{

    transform:translateY(-5px);

}

.public-audio-cover{

    display:flex;

    align-items:center;

    justify-content:center;

    width:115px;

    height:115px;

    flex-shrink:0;

    overflow:hidden;

    border-radius:18px;

    background:#13245f;

    color:#ffffff;

    font-size:38px;

}

.public-audio-cover img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.public-audio-content{

    flex:1;

    min-width:0;

}

.public-audio-content h2{

    margin-bottom:8px;

    color:#13245f;

    font-size:20px;

}

.public-audio-content p{

    margin-bottom:14px;

    color:#767d90;

    font-size:14px;

    line-height:1.6;

}

.public-audio-content audio{

    width:100%;

    height:42px;

}

.public-audio-unavailable{

    color:#e53935;

    font-size:14px;

}

/*======================================================
RESPONSIVE MÉDIAS
======================================================*/

@media(max-width:1000px){

    .public-photo-grid{

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

    }

    .public-audio-list{

        grid-template-columns:1fr;

    }

}

@media(max-width:700px){

    .public-photo-grid{

        grid-template-columns:1fr;

    }

    .public-document-card{

        align-items:flex-start;

        flex-wrap:wrap;

    }

    .public-document-content{

        min-width:calc(100% - 90px);

    }

    .public-audio-card{

        flex-direction:column;

    }

    .public-audio-cover{

        width:100%;

        height:190px;

    }

}
/*======================================================
LECTEUR MULTI-SOURCE
======================================================*/

.player-container{

    position:relative;

    width:100%;

    aspect-ratio:16/9;

    overflow:hidden;

    border-radius:20px;

    background:#111111;

}

.player-container video,
.player-container iframe,
.external-player,
.iframe-player,
.iframe-player iframe{

    display:block;

    width:100%;

    height:100%;

    border:0;

}

.player-container video{

    object-fit:contain;

    background:#111111;

}

.iframe-player{

    position:absolute;

    inset:0;

}

.player-message{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:12px;

    width:100%;

    height:100%;

    padding:25px;

    color:#ffffff;

    background:#202020;

    text-align:center;

}
/*======================================================
MESSAGE DE SUCCÈS CONTACT
======================================================*/

.contact-success{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:20px;

    padding:15px 18px;

    border:1px solid #b7ebc6;

    border-radius:12px;

    background:#eaf8ef;

    color:#18763b;

    font-size:14px;

    font-weight:600;

}

.contact-success i{

    font-size:19px;

}
/*=========================================================
CARTES PROGRAMME TV
=========================================================*/

.programme-list{
    width:100%;
    margin-top:40px;
}

.programme-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:25px;
}

.programme-card{
    position:relative;
    display:flex;
    overflow:hidden;
    min-width:0;
    border:1px solid rgba(8,25,79,.08);
    border-radius:22px;
    background:#ffffff;
    box-shadow:0 16px 40px rgba(8,25,79,.09);
    flex-direction:column;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.programme-card:hover{
    transform:translateY(-6px);
    border-color:rgba(216,181,48,.65);
    box-shadow:0 24px 55px rgba(8,25,79,.15);
}

.programme-card-image{
    position:relative;
    width:100%;
    height:205px;
    overflow:hidden;
    background:#08194f;
}

.programme-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .35s ease;
}

.programme-card:hover .programme-card-image img{
    transform:scale(1.05);
}

.programme-card-placeholder{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
    background:
        linear-gradient(
            135deg,
            #08194f,
            #183b88
        );
    color:#d8b530;
    font-size:58px;
}

.programme-card-time{
    position:absolute;
    bottom:15px;
    left:15px;
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:9px 12px;
    border-radius:30px;
    background:rgba(8,25,79,.88);
    color:#ffffff;
    font-size:12px;
    font-weight:700;
    backdrop-filter:blur(8px);
}

.programme-current-badge{
    position:absolute;
    top:15px;
    right:15px;
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:8px 11px;
    border-radius:30px;
    background:#ef334d;
    color:#ffffff;
    font-size:10px;
    font-weight:700;
    text-transform:uppercase;
    box-shadow:0 8px 22px rgba(239,51,77,.35);
}

.programme-current-badge span{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#ffffff;
    animation:programmePulse 1.2s infinite;
}

@keyframes programmePulse{
    0%{
        opacity:1;
        transform:scale(1);
    }

    50%{
        opacity:.45;
        transform:scale(.75);
    }

    100%{
        opacity:1;
        transform:scale(1);
    }
}

.programme-card-body{
    flex:1;
    padding:20px;
}

.programme-card-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:15px;
}

.programme-type,
.programme-day{
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:7px 10px;
    border-radius:30px;
    font-size:10px;
    font-weight:700;
}

.programme-type{
    background:#edf2fb;
    color:#10265f;
}

.programme-day{
    background:#f7f8fb;
    color:#7a8293;
}

.programme-type.badge-live{
    background:#ffe4e8;
    color:#d92f45;
}

.programme-type.badge-playlist{
    background:#e3f4e9;
    color:#237940;
}

.programme-type.badge-replay{
    background:#eee5fa;
    color:#7136a4;
}

.programme-type.badge-programme{
    background:#fff4ce;
    color:#7b6000;
}

.programme-card-body h2{
    margin:0 0 10px;
    color:#08194f;
    font-size:22px;
    line-height:1.35;
}

.programme-card-body p{
    display:-webkit-box;
    overflow:hidden;
    margin:0;
    color:#71798b;
    font-size:13px;
    line-height:1.75;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:3;
}

.programme-card-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:15px 20px;
    border-top:1px solid #edf0f5;
    background:#fafbfe;
}

.programme-card-footer > div{
    display:flex;
    align-items:center;
    gap:7px;
    color:#7e8697;
    font-size:11px;
}

.programme-details-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:9px 12px;
    border-radius:10px;
    background:#08194f;
    color:#ffffff;
    text-decoration:none;
    font-size:10px;
    font-weight:700;
    transition:
        background .2s ease,
        transform .2s ease;
}

.programme-details-button:hover{
    transform:translateX(2px);
    background:#d8b530;
    color:#08194f;
}

.programme-card.programme-en-cours{
    border-color:rgba(239,51,77,.45);
    box-shadow:0 20px 48px rgba(239,51,77,.13);
}

.programme-empty{
    max-width:650px;
    margin:40px auto;
    padding:55px 25px;
    border-radius:22px;
    background:#ffffff;
    box-shadow:0 16px 40px rgba(8,25,79,.08);
    color:#7c8495;
    text-align:center;
}

.programme-empty i{
    margin-bottom:18px;
    color:#d8b530;
    font-size:50px;
}

.programme-empty h2{
    margin-bottom:8px;
    color:#08194f;
}

@media(max-width:1050px){

    .programme-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

}

@media(max-width:680px){

    .programme-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .programme-card-image{
        height:190px;
    }

    .programme-card-footer{
        align-items:flex-start;
        flex-direction:column;
    }

    .programme-details-button{
        width:100%;
    }

}
/*=========================================================
PAGE DÉTAIL D'UN PROGRAMME
=========================================================*/

.programme-detail-page{
    min-height:calc(100vh - 170px);
    padding:55px 0 80px;
    background:#eef3fc;
}

.programme-detail-back{
    margin-bottom:22px;
}

.programme-detail-back a{
    display:inline-flex;
    align-items:center;
    gap:9px;
    color:#08194f;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
}

.programme-detail-back a:hover{
    color:#d3aa20;
}

.programme-detail-card{
    display:grid;
    overflow:hidden;
    grid-template-columns:minmax(0,1.15fr) minmax(380px,.85fr);
    border-radius:28px;
    background:#ffffff;
    box-shadow:0 25px 65px rgba(8,25,79,.14);
}

.programme-detail-visual{
    position:relative;
    min-height:520px;
    overflow:hidden;
    background:#08194f;
}

.programme-detail-visual img{
    width:100%;
    height:100%;
    min-height:520px;
    object-fit:cover;
}

.programme-detail-placeholder{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
    min-height:520px;
    background:
        radial-gradient(
            circle at top right,
            #264fa8,
            transparent 45%
        ),
        linear-gradient(
            135deg,
            #08194f,
            #173a85
        );
    color:#d8b530;
    font-size:110px;
}

.programme-detail-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            180deg,
            rgba(8,25,79,.05),
            rgba(8,25,79,.45)
        );
}

.programme-detail-hour{
    position:absolute;
    bottom:24px;
    left:24px;
    display:inline-flex;
    align-items:center;
    gap:9px;
    padding:11px 15px;
    border-radius:30px;
    background:rgba(8,25,79,.9);
    color:#ffffff;
    font-size:13px;
    font-weight:700;
    backdrop-filter:blur(8px);
}

.programme-detail-live{
    position:absolute;
    top:24px;
    right:24px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 14px;
    border-radius:30px;
    background:#ef334d;
    color:#ffffff;
    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
    box-shadow:0 10px 25px rgba(239,51,77,.35);
}

.programme-detail-live span{
    width:9px;
    height:9px;
    border-radius:50%;
    background:#ffffff;
    animation:programmeDetailPulse 1.2s infinite;
}

@keyframes programmeDetailPulse{
    0%,
    100%{
        opacity:1;
        transform:scale(1);
    }

    50%{
        opacity:.4;
        transform:scale(.7);
    }
}

.programme-detail-content{
    display:flex;
    justify-content:center;
    padding:45px;
    flex-direction:column;
}

.programme-detail-meta{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:22px;
}

.programme-detail-type,
.programme-detail-day{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 13px;
    border-radius:30px;
    font-size:11px;
    font-weight:700;
}

.programme-detail-type-normal{
    background:#fff3c8;
    color:#785d00;
}

.programme-detail-type-live{
    background:#ffe1e6;
    color:#cf2940;
}

.programme-detail-type-playlist{
    background:#dff3e6;
    color:#237642;
}

.programme-detail-type-replay{
    background:#ede2fa;
    color:#7036a3;
}

.programme-detail-day{
    background:#eef2f8;
    color:#6d7588;
}

.programme-detail-content h1{
    margin:0 0 16px;
    color:#08194f;
    font-size:42px;
    line-height:1.2;
}

.programme-detail-channel{
    display:flex;
    align-items:center;
    gap:9px;
    margin-bottom:25px;
    color:#70798c;
    font-size:13px;
}

.programme-detail-channel i{
    color:#d8b530;
}

.programme-detail-description{
    padding:20px;
    border-left:4px solid #d8b530;
    border-radius:0 14px 14px 0;
    background:#f6f8fc;
    color:#626b7e;
    font-size:14px;
    line-height:1.9;
}

.programme-detail-actions{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
    margin-top:30px;
}

.programme-detail-watch,
.programme-detail-schedule{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:50px;
    padding:13px 18px;
    border-radius:13px;
    text-decoration:none;
    font-size:12px;
    font-weight:700;
}

.programme-detail-watch{
    background:#08194f;
    color:#ffffff;
}

.programme-detail-watch:hover{
    background:#d8b530;
    color:#08194f;
}

.programme-detail-schedule{
    border:1px solid #dce2ed;
    background:#ffffff;
    color:#08194f;
}

.programme-detail-schedule:hover{
    border-color:#d8b530;
}

@media(max-width:950px){

    .programme-detail-card{
        grid-template-columns:1fr;
    }

    .programme-detail-visual,
    .programme-detail-visual img,
    .programme-detail-placeholder{
        min-height:400px;
    }

}

@media(max-width:600px){

    .programme-detail-page{
        padding:30px 0 55px;
    }

    .programme-detail-card{
        border-radius:20px;
    }

    .programme-detail-visual,
    .programme-detail-visual img,
    .programme-detail-placeholder{
        min-height:270px;
    }

    .programme-detail-placeholder{
        font-size:70px;
    }

    .programme-detail-content{
        padding:25px 20px;
    }

    .programme-detail-content h1{
        font-size:29px;
    }

    .programme-detail-actions{
        align-items:stretch;
        flex-direction:column;
    }

    .programme-detail-watch,
    .programme-detail-schedule{
        width:100%;
    }

}
/*=========================================================
BOUTON VOIR LA VIDÉO
=========================================================*/

.public-video-actions{
    margin-top:18px;
}

.public-video-button{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    width:100%;
    min-height:44px;
    padding:10px 15px;
    border-radius:11px;
    background:#08194f;
    color:#ffffff;
    text-decoration:none;
    font-size:12px;
    font-weight:700;
    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.public-video-button:hover{
    transform:translateY(-2px);
    background:#d8b530;
    color:#08194f;
}
/*=========================================================
PAGE DE LECTURE D’UNE VIDÉO
=========================================================*/

.watch-video-page{
    min-height:calc(100vh - 170px);
    padding:45px 0 80px;
    background:#eef3fc;
}

.watch-video-back{
    margin-bottom:20px;
}

.watch-video-back a{
    display:inline-flex;
    align-items:center;
    gap:9px;
    color:#08194f;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
}

.watch-video-back a:hover{
    color:#d8b530;
}

.watch-video-layout{
    display:grid;
    grid-template-columns:minmax(0,1.5fr) minmax(330px,.5fr);
    gap:24px;
    align-items:start;
}

.watch-video-main,
.watch-comment-card,
.public-comments-section{
    overflow:hidden;
    border-radius:22px;
    background:#ffffff;
    box-shadow:0 18px 45px rgba(8,25,79,.09);
}

.watch-video-player{
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    width:100%;
    aspect-ratio:16/9;
    background:#000000;
}

.watch-video-player video{
    display:block;
    width:100%;
    height:100%;
    object-fit:contain;
    background:#000000;
}

.watch-video-unavailable{
    color:#ffffff;
    text-align:center;
}

.watch-video-unavailable i{
    margin-bottom:14px;
    color:#d8b530;
    font-size:55px;
}

.watch-video-unavailable h2{
    margin-bottom:6px;
}

.watch-video-unavailable p{
    color:#cdd4e5;
}

.watch-video-info{
    padding:25px;
}

.watch-video-label{
    display:inline-flex;
    align-items:center;
    gap:7px;
    margin-bottom:14px;
    padding:7px 11px;
    border-radius:30px;
    background:#fff3c9;
    color:#725900;
    font-size:10px;
    font-weight:700;
}

.watch-video-info h1{
    margin:0 0 13px;
    color:#08194f;
    font-size:29px;
    line-height:1.3;
}

.watch-video-meta{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    color:#798193;
    font-size:12px;
}

.watch-video-meta span{
    display:flex;
    align-items:center;
    gap:7px;
}

.watch-video-description{
    margin-top:20px;
    padding:18px;
    border-left:4px solid #d8b530;
    border-radius:0 12px 12px 0;
    background:#f5f7fb;
    color:#626b7e;
    font-size:13px;
    line-height:1.8;
}

.watch-comment-card{
    padding:23px;
}

.watch-comment-card h2{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:7px;
    color:#08194f;
    font-size:20px;
}

.watch-comment-card > p{
    margin-bottom:21px;
    color:#7b8394;
    font-size:12px;
    line-height:1.7;
}

.watch-form-group{
    margin-bottom:15px;
}

.watch-form-group label{
    display:block;
    margin-bottom:7px;
    color:#333c50;
    font-size:12px;
    font-weight:600;
}

.watch-form-group label small{
    color:#969dab;
    font-weight:400;
}

.watch-form-group input,
.watch-form-group textarea{
    width:100%;
    padding:12px 13px;
    border:1px solid #dce2ec;
    border-radius:11px;
    outline:none;
    background:#ffffff;
    color:#283147;
    font-family:"Poppins",sans-serif;
    font-size:13px;
}

.watch-form-group input:focus,
.watch-form-group textarea:focus{
    border-color:#d8b530;
    box-shadow:0 0 0 4px rgba(216,181,48,.13);
}

.watch-form-group textarea{
    resize:vertical;
}

.watch-comment-submit{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    width:100%;
    min-height:47px;
    border:0;
    border-radius:12px;
    background:#08194f;
    color:#ffffff;
    font-family:"Poppins",sans-serif;
    font-size:12px;
    font-weight:700;
    cursor:pointer;
}

.watch-comment-submit:hover{
    background:#d8b530;
    color:#08194f;
}

.watch-alert{
    display:flex;
    align-items:flex-start;
    gap:9px;
    margin-bottom:16px;
    padding:12px;
    border-radius:10px;
    font-size:11px;
    line-height:1.6;
}

.watch-alert.success{
    background:#def4e5;
    color:#176d38;
}

.watch-alert.error{
    background:#ffe1e5;
    color:#b42a3d;
}

.watch-honeypot{
    position:absolute;
    left:-9999px;
    width:1px;
    height:1px;
    overflow:hidden;
}

.public-comments-section{
    margin-top:25px;
    padding:25px;
}

.public-comments-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    margin-bottom:20px;
}

.public-comments-header h2{
    margin-bottom:4px;
    color:#08194f;
    font-size:22px;
}

.public-comments-header p{
    color:#858d9d;
    font-size:11px;
}

.public-comments-header > span{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:38px;
    height:38px;
    padding:0 10px;
    border-radius:12px;
    background:#08194f;
    color:#ffffff;
    font-size:12px;
    font-weight:700;
}

.public-comments-list{
    display:flex;
    flex-direction:column;
    gap:13px;
}

.public-comment{
    display:grid;
    grid-template-columns:45px minmax(0,1fr);
    gap:13px;
    padding:16px;
    border-radius:14px;
    background:#f5f7fb;
}

.public-comment-avatar{
    display:flex;
    align-items:center;
    justify-content:center;
    width:45px;
    height:45px;
    border-radius:50%;
    background:#d8b530;
    color:#08194f;
    font-weight:700;
}

.public-comment-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:7px;
}

.public-comment-top strong{
    color:#08194f;
    font-size:13px;
}

.public-comment-top span{
    color:#949baa;
    font-size:10px;
}

.public-comment p{
    margin:0;
    color:#626b7d;
    font-size:12px;
    line-height:1.7;
}

.public-comments-empty{
    padding:40px 20px;
    color:#858d9d;
    text-align:center;
}

.public-comments-empty i{
    margin-bottom:10px;
    color:#d8b530;
    font-size:40px;
}

.public-comments-empty h3{
    margin-bottom:5px;
    color:#08194f;
}

@media(max-width:950px){

    .watch-video-layout{
        grid-template-columns:1fr;
    }

}

@media(max-width:600px){

    .watch-video-page{
        padding:25px 0 55px;
    }

    .watch-video-info{
        padding:19px;
    }

    .watch-video-info h1{
        font-size:23px;
    }

    .watch-comment-card,
    .public-comments-section{
        padding:19px;
    }

    .public-comment-top{
        align-items:flex-start;
        flex-direction:column;
        gap:4px;
    }

}
/*=========================================================
CATALOGUE PHOTOS
=========================================================*/

.photo-catalogue-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:22px;
}

.photo-catalogue-card{
    overflow:hidden;
    border-radius:20px;
    background:#ffffff;
    box-shadow:0 15px 35px rgba(8,25,79,.09);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.photo-catalogue-card:hover{
    transform:translateY(-5px);
    box-shadow:0 22px 48px rgba(8,25,79,.15);
}

.photo-catalogue-button{
    display:block;
    width:100%;
    padding:0;
    border:0;
    background:transparent;
    color:inherit;
    font-family:"Poppins",sans-serif;
    text-align:left;
    cursor:pointer;
}

.photo-catalogue-image{
    position:relative;
    overflow:hidden;
    width:100%;
    aspect-ratio:4/3;
    background:#e8edf7;
}

.photo-catalogue-image img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .35s ease;
}

.photo-catalogue-card:hover img{
    transform:scale(1.06);
}

.photo-catalogue-overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    background:rgba(8,25,79,.68);
    color:#ffffff;
    font-size:12px;
    font-weight:700;
    opacity:0;
    transition:opacity .25s ease;
}

.photo-catalogue-card:hover .photo-catalogue-overlay{
    opacity:1;
}

.photo-catalogue-overlay i{
    font-size:22px;
}

.photo-catalogue-content{
    padding:16px 18px 18px;
}

.photo-catalogue-content h2{
    margin:0;
    color:#08194f;
    font-size:16px;
    line-height:1.4;
}

.photo-catalogue-content p{
    display:-webkit-box;
    overflow:hidden;
    margin:8px 0 0;
    color:#747d90;
    font-size:11px;
    line-height:1.7;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
}

/*=========================================================
POPUP PHOTO
=========================================================*/

.photo-popup{
    position:fixed;
    z-index:99999;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:25px;
    visibility:hidden;
    opacity:0;
    transition:
        opacity .22s ease,
        visibility .22s ease;
}

.photo-popup.active{
    visibility:visible;
    opacity:1;
}

.photo-popup-backdrop{
    position:absolute;
    inset:0;
    background:rgba(2,8,28,.88);
    backdrop-filter:blur(5px);
}

.photo-popup-dialog{
    position:relative;
    z-index:2;
    display:grid;
    overflow:hidden;
    width:min(1050px,100%);
    max-height:90vh;
    grid-template-columns:minmax(0,1.5fr) minmax(280px,.5fr);
    border-radius:23px;
    background:#ffffff;
    box-shadow:0 30px 80px rgba(0,0,0,.35);
    transform:scale(.95);
    transition:transform .22s ease;
}

.photo-popup.active .photo-popup-dialog{
    transform:scale(1);
}

.photo-popup-image-box{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:500px;
    background:#050b20;
}

.photo-popup-image-box img{
    display:block;
    max-width:100%;
    max-height:80vh;
    object-fit:contain;
}

.photo-popup-content{
    display:flex;
    justify-content:center;
    padding:35px 28px;
    flex-direction:column;
}

.photo-popup-content h2{
    margin:0 0 13px;
    color:#08194f;
    font-size:24px;
}

.photo-popup-content p{
    margin:0 0 25px;
    color:#70798b;
    font-size:12px;
    line-height:1.8;
}

.photo-popup-download{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    min-height:46px;
    padding:11px 16px;
    border-radius:12px;
    background:#08194f;
    color:#ffffff;
    text-decoration:none;
    font-size:12px;
    font-weight:700;
}

.photo-popup-download:hover{
    background:#d8b530;
    color:#08194f;
}

.photo-popup-close{
    position:absolute;
    z-index:3;
    top:15px;
    right:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    border:0;
    border-radius:50%;
    background:#ef334d;
    color:#ffffff;
    font-size:18px;
    cursor:pointer;
    box-shadow:0 8px 24px rgba(239,51,77,.35);
}

.photo-popup-open{
    overflow:hidden;
}

.document-unavailable{
    color:#dc3545;
    font-size:11px;
    font-weight:700;
}

.public-document-actions{
    display:flex;
    align-items:center;
    gap:8px;
}

@media(max-width:1050px){

    .photo-catalogue-grid{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }

}

@media(max-width:850px){

    .photo-catalogue-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .photo-popup-dialog{
        overflow-y:auto;
        grid-template-columns:1fr;
    }

    .photo-popup-image-box{
        min-height:320px;
    }

    .photo-popup-content{
        padding:25px;
    }

}

@media(max-width:560px){

    .photo-catalogue-grid{
        grid-template-columns:1fr;
    }

    .photo-popup{
        padding:12px;
    }

    .photo-popup-image-box{
        min-height:260px;
    }

    .photo-popup-content h2{
        font-size:20px;
    }

}
/* =====================================================
   MENU M�DIAS MOBILE � CORRECTION R�ELLE
===================================================== */

@media (max-width: 900px){

    .menu .dropdown{
        position:relative !important;
        display:block !important;

        width:100% !important;

        margin:0 !important;
        padding:0 !important;

        background:transparent !important;
    }

    /*
    | M�dias prend exactement la largeur des autres liens
    */

    .menu .dropdown > a.dropdown-toggle{
        display:flex !important;
        align-items:center !important;

        width:100% !important;
        min-height:64px !important;

        gap:18px !important;

        margin:0 !important;
        padding:14px 22px !important;

        border:0 !important;
        border-radius:18px !important;

        background:transparent !important;

        color:#ffffff !important;

        font-family:inherit !important;
        font-size:22px !important;
        font-weight:700 !important;
        line-height:1.2 !important;

        text-decoration:none !important;

        box-sizing:border-box !important;
    }

    .menu .dropdown > a.dropdown-toggle > i:first-child{
        flex:0 0 32px !important;

        width:32px !important;

        margin:0 !important;

        color:#ffffff !important;

        font-size:27px !important;
        text-align:center !important;
    }

    .menu .dropdown > a.dropdown-toggle .fa-chevron-down{
        margin-left:auto !important;

        color:#ffffff !important;

        font-size:20px !important;

        transition:transform .25s ease !important;
    }

    .menu .dropdown.open > a.dropdown-toggle{
        background:rgba(255,255,255,.12) !important;
    }

    .menu .dropdown.open >
    a.dropdown-toggle .fa-chevron-down{
        transform:rotate(180deg) !important;
    }

    /*
    | Sous-menu ferm�
    */

    .menu .dropdown > .dropdown-menu{
        position:static !important;

        display:none !important;

        width:calc(100% - 30px) !important;
        min-width:0 !important;

        margin:5px 0 10px 30px !important;
        padding:7px !important;

        border:1px solid rgba(255,255,255,.12) !important;
        border-radius:14px !important;

        background:rgba(5,24,95,.65) !important;

        box-shadow:none !important;

        opacity:1 !important;
        visibility:visible !important;
        transform:none !important;

        box-sizing:border-box !important;
    }

    /*
    | Sous-menu ouvert
    */

    .menu .dropdown.open > .dropdown-menu{
        display:block !important;
    }

    /*
    | Liens Vid�os, Photos, Documents, Audios
    */

    .menu .dropdown > .dropdown-menu > a{
        display:flex !important;
        align-items:center !important;

        width:100% !important;
        min-height:47px !important;

        gap:13px !important;

        margin:0 !important;
        padding:10px 14px !important;

        border-radius:10px !important;

        background:transparent !important;

        color:#ffffff !important;

        font-size:16px !important;
        font-weight:600 !important;

        text-decoration:none !important;

        box-sizing:border-box !important;
    }

    .menu .dropdown > .dropdown-menu > a i{
        flex:0 0 25px !important;

        width:25px !important;

        color:#ffffff !important;

        text-align:center !important;
    }

    .menu .dropdown > .dropdown-menu > a:hover,
    .menu .dropdown > .dropdown-menu > a.active{
        background:rgba(255,255,255,.13) !important;
    }

}


/*======================================================
NOS ÉGLISES
======================================================*/
.churches-public-button{
display:inline-flex;align-items:center;justify-content:center;gap:10px;
width:max-content;min-height:48px;padding:12px 21px;border-radius:999px;
background:linear-gradient(135deg,#13245f,#24479b);color:#fff;text-decoration:none;
font-size:14px;font-weight:700;box-shadow:0 10px 25px rgba(19,36,95,.25);
transition:.25s;
}
.churches-public-button:hover{transform:translateY(-2px);box-shadow:0 15px 32px rgba(19,36,95,.32);}
.churches-public-button i{color:#d8b530;font-size:16px;}
.churches-page{min-height:100vh;padding:135px 0 80px;background:#eef3fb;}
.churches-heading{max-width:780px;margin:0 auto 42px;text-align:center;}
.churches-label{display:inline-flex;align-items:center;gap:9px;margin-bottom:14px;padding:9px 16px;border-radius:999px;background:#e1e8fb;color:#13245f;font-size:13px;font-weight:700;}
.churches-heading h1{margin:0 0 12px;color:#13245f;font-size:42px;}
.churches-heading p{margin:0;color:#71798d;font-size:16px;line-height:1.8;}
.churches-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;}
.church-card{padding:27px;border-radius:23px;background:#fff;box-shadow:0 16px 40px rgba(8,25,79,.09);transition:.3s;}
.church-card:hover{transform:translateY(-6px);box-shadow:0 24px 54px rgba(8,25,79,.14);}
.church-icon{display:flex;align-items:center;justify-content:center;width:62px;height:62px;margin-bottom:20px;border-radius:18px;background:#13245f;color:#d8b530;font-size:27px;}
.church-card h2{margin:0 0 18px;color:#08194f;font-size:22px;}
.church-info{display:flex;flex-direction:column;gap:12px;}
.church-info-row{display:flex;align-items:flex-start;gap:12px;padding:13px 14px;border-radius:13px;background:#f4f7fc;}
.church-info-row i{width:22px;margin-top:2px;color:#d8b530;text-align:center;}
.church-info-row span{display:block;margin-bottom:2px;color:#8b92a3;font-size:11px;}
.church-info-row strong{display:block;color:#13245f;font-size:13px;line-height:1.5;}
.churches-empty{grid-column:1/-1;padding:70px 25px;border-radius:24px;background:#fff;text-align:center;box-shadow:0 16px 40px rgba(8,25,79,.08);}
.churches-empty i{margin-bottom:16px;color:#d8b530;font-size:48px;}
.churches-empty h2{margin-bottom:8px;color:#13245f;}
.churches-empty p{color:#7b8395;}
@media(max-width:1050px){.churches-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media(max-width:700px){.churches-page{padding-top:105px}.churches-heading h1{font-size:31px}.churches-grid{grid-template-columns:1fr}.churches-public-button{width:100%;}}


/*======================================================
NOS ÉGLISES - NOUVELLES INFORMATIONS
======================================================*/

.church-info-link{
    color:inherit;
    text-decoration:none;
    transition:
        transform .2s ease,
        background .2s ease;
}

.church-info-link:hover{
    transform:translateX(4px);
    background:#eaf0ff;
}

.church-info-link strong{
    overflow-wrap:anywhere;
}


/*======================================================
RECHERCHE DES ÉGLISES PAR VILLE
======================================================*/

.churches-search-form{
    width:100%;
    max-width:760px;
    margin:28px auto 0;
}

.churches-search-box{
    display:flex;
    align-items:center;
    gap:12px;
    padding:8px 8px 8px 18px;
    border:1px solid #dfe5ef;
    border-radius:16px;
    background:#ffffff;
    box-shadow:0 12px 30px rgba(8,25,79,.08);
}

.churches-search-box > i{
    color:#d8b530;
    font-size:17px;
}

.churches-search-box input{
    flex:1;
    min-width:0;
    height:46px;
    border:0;
    outline:0;
    background:transparent;
    color:#13245f;
    font-family:"Poppins",sans-serif;
    font-size:14px;
}

.churches-search-box input::placeholder{
    color:#9aa2b2;
}

.churches-search-box button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:46px;
    padding:10px 18px;
    border:0;
    border-radius:12px;
    background:#13245f;
    color:#ffffff;
    font-family:"Poppins",sans-serif;
    font-size:13px;
    font-weight:700;
    cursor:pointer;
    transition:.25s;
}

.churches-search-box button:hover{
    background:#24479b;
    transform:translateY(-1px);
}

.churches-search-reset{
    display:inline-flex;
    align-items:center;
    gap:7px;
    margin-top:12px;
    color:#13245f;
    text-decoration:none;
    font-size:12px;
    font-weight:600;
}

.churches-search-reset:hover{
    text-decoration:underline;
}

@media(max-width:620px){

    .churches-search-box{
        flex-wrap:wrap;
        padding:12px;
    }

    .churches-search-box > i{
        display:none;
    }

    .churches-search-box input{
        width:100%;
        flex-basis:100%;
        padding:0 4px;
    }

    .churches-search-box button{
        width:100%;
    }

}
