:root{
  --blue-dark:#0a1f5c;
  --blue:#0f2d7a;
  --blue-light:#1a3f9e;
  --gold:#f4c430;
  --gold-light:#ffd54f;
  --white:#ffffff;
  --gray-bg:#f5f7fb;
  --text-dark:#10204d;
  --text-muted:#5a6585;
  --radius:14px;
  --shadow:0 10px 30px rgba(10,31,92,.08);
  font-family:'Poppins',Arial,sans-serif;
}

*{margin:0;padding:0;box-sizing:border-box;}
body{font-family:'Poppins',Arial,sans-serif;color:var(--text-dark);background:var(--gray-bg);}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
img{max-width:100%;display:block;}
button{font-family:inherit;cursor:pointer;border:none;}
.container{max-width:1320px;margin:0 auto;padding:0 24px;}

/* ===== HEADER ===== */
header{
  background:var(--blue-dark);
  position:sticky;top:0;z-index:50;
  box-shadow:0 2px 12px rgba(0,0,0,.15);
}
.navbar{
  display:flex;align-items:center;justify-content:space-between;
  padding:10px 24px;max-width:1320px;margin:0 auto;
}
.logo{
  display:flex;align-items:center;gap:10px;
}
.logo-badge-img{
  width:54px;height:54px;border-radius:50%;
  object-fit:cover;
  box-shadow:0 2px 8px rgba(0,0,0,.25);
}
.nav-links{display:flex;gap:28px;flex-wrap:wrap;}
.nav-links li a{
  color:var(--white);font-size:14px;font-weight:600;letter-spacing:.3px;
  padding-bottom:8px;position:relative;transition:color .2s;
}
.nav-links li a:hover{color:var(--gold-light);}
.nav-links li.active a{color:var(--gold);}
.nav-links li.active a::after{
  content:"";position:absolute;left:0;bottom:0;width:100%;height:3px;background:var(--gold);border-radius:2px;
}
.socials{display:flex;gap:10px;}
.socials a{
  width:36px;height:36px;border-radius:50%;background:var(--white);
  display:flex;align-items:center;justify-content:center;color:var(--blue-dark);
  font-size:15px;transition:transform .2s, background .2s;
}
.socials a:hover{background:var(--gold);transform:translateY(-2px);}
.burger{display:none;background:none;color:var(--white);font-size:24px;}

/* ===== HERO ===== */
.hero{
  position:relative;overflow:hidden;
  background:linear-gradient(120deg,var(--blue-dark) 0%, var(--blue) 55%, var(--blue-light) 100%);
  padding:70px 0 90px;
}
.hero::before{
  content:"";position:absolute;inset:0;
  background-image:radial-gradient(circle, rgba(255,255,255,.08) 1.5px, transparent 1.5px);
  background-size:22px 22px;
  opacity:.5;
}
.hero-inner{
  position:relative;z-index:2;
  display:grid;grid-template-columns:340px 1fr;gap:48px;align-items:center;
  max-width:1320px;margin:0 auto;padding:0 24px;
}
.hero-badge{
  width:340px;height:340px;
  display:flex;align-items:center;justify-content:center;
  position:relative;
}
.hero-badge-img{
  width:100%;height:100%;object-fit:contain;
  filter:drop-shadow(0 25px 45px rgba(0,0,0,.4));
}
.lion-deco{
  position:absolute;opacity:.12;font-size:90px;color:var(--gold);
}
.hero-text h1{
  color:var(--white);font-size:38px;font-weight:700;line-height:1.25;margin-bottom:6px;
}
.hero-text h1 span{color:var(--gold-light);font-style:italic;display:block;}
.hero-rule{
  height:2px;background:linear-gradient(90deg, var(--gold), transparent);
  margin:26px 0;max-width:520px;
}
.hero-features{display:flex;gap:28px;flex-wrap:wrap;margin-top:10px;}
.hero-features .feat{
  text-align:center;color:var(--white);font-size:12.5px;font-weight:700;letter-spacing:.5px;
}
.hero-features .feat .ico{
  font-size:26px;color:var(--gold);margin-bottom:8px;
}
.hero-mic{
  display:none;
}

/* ===== SECTION TITLES ===== */
.section-title{
  font-size:22px;font-weight:700;color:var(--blue-dark);margin-bottom:4px;letter-spacing:.3px;
}
.section-rule{
  width:50px;height:3px;background:var(--gold);border-radius:2px;margin-bottom:22px;
}

/* ===== MAIN GRID ===== */
.main-grid{
  display:grid;grid-template-columns:1fr 1.3fr 1fr;gap:28px;
  max-width:1320px;margin:0 auto;padding:60px 24px;
}

/* --- Live player --- */
.live-card{
  background:linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius:var(--radius);padding:22px;color:var(--white);
  box-shadow:var(--shadow);
}
.live-top{display:flex;align-items:center;gap:14px;margin-bottom:18px;}
.play-btn{
  width:46px;height:46px;border-radius:50%;background:var(--gold);
  display:flex;align-items:center;justify-content:center;font-size:16px;color:var(--blue-dark);
  flex-shrink:0;transition:transform .2s;
}
.play-btn:hover{transform:scale(1.08);}
.live-top h3{font-size:16px;font-weight:700;}
.live-top p{font-size:12.5px;opacity:.8;}
.wave{
  height:46px;display:flex;align-items:center;gap:2px;margin-bottom:18px;overflow:hidden;
}
.wave span{
  width:3px;background:var(--gold-light);border-radius:2px;opacity:.85;
  animation:wave 1.2s ease-in-out infinite;
}
@keyframes wave{0%,100%{transform:scaleY(.3);}50%{transform:scaleY(1);}}
.onair-row{
  display:flex;align-items:center;justify-content:space-between;
  background:rgba(255,255,255,.07);border-radius:10px;padding:10px 14px;
}
.onair-badge{
  background:var(--gold);color:var(--blue-dark);font-size:10px;font-weight:700;
  padding:3px 9px;border-radius:6px;letter-spacing:.5px;display:inline-flex;align-items:center;gap:5px;
}
.onair-badge .dot{width:6px;height:6px;border-radius:50%;background:var(--blue-dark);animation:blink 1.4s infinite;}
@keyframes blink{0%,100%{opacity:1;}50%{opacity:.2;}}
.onair-info p:first-child{font-size:13px;font-weight:600;}
.onair-info p:last-child{font-size:11.5px;opacity:.75;}
.listen-btn{
  margin-top:18px;width:100%;background:var(--white);color:var(--blue-dark);
  border:1px solid #d8def0;border-radius:10px;padding:13px;font-size:13.5px;font-weight:700;
  display:flex;align-items:center;justify-content:center;gap:8px;transition:.2s;
}
.listen-btn:hover{background:var(--gold);border-color:var(--gold);}

/* --- Émissions list --- */
.emission-card{
  background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow);
  display:flex;align-items:center;gap:16px;padding:14px;margin-bottom:14px;transition:transform .2s, box-shadow .2s;
}
.emission-card:hover{transform:translateY(-3px);box-shadow:0 16px 34px rgba(10,31,92,.13);}
.emission-thumb{
  width:90px;height:64px;border-radius:8px;flex-shrink:0;
  background-size:cover;background-position:center;position:relative;
  display:flex;align-items:flex-end;
}
.emission-thumb::before{
  content:"";position:absolute;inset:0;background:linear-gradient(180deg, rgba(10,31,92,.1), rgba(10,31,92,.75));border-radius:8px;
}
.emission-thumb span{
  position:relative;z-index:1;color:var(--white);font-size:11px;font-weight:800;padding:6px;line-height:1.15;
}
.emission-thumb span b{color:var(--gold-light);display:block;}
.emission-info{flex:1;}
.emission-info h4{font-size:15px;font-weight:700;color:var(--blue-dark);margin-bottom:3px;}
.emission-info p{font-size:12.5px;color:var(--text-muted);}
.emission-info .date{font-size:11px;color:#9aa3bf;margin-top:2px;}
.emission-play{
  width:38px;height:38px;border-radius:50%;background:var(--blue);color:var(--white);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:background .2s;
}
.emission-play:hover{background:var(--gold);color:var(--blue-dark);}

/* --- Actualités --- */
.actu-card{
  display:flex;gap:14px;margin-bottom:18px;background:var(--white);border-radius:var(--radius);
  padding:12px;box-shadow:var(--shadow);transition:transform .2s;
}
.actu-card:hover{transform:translateY(-3px);}
.actu-thumb{
  width:84px;height:74px;border-radius:8px;object-fit:cover;flex-shrink:0;background-color:#cdd6ef;
}
.actu-info h4{font-size:14.5px;font-weight:700;color:var(--blue-dark);margin-bottom:4px;}
.actu-info p{font-size:12.5px;color:var(--text-muted);line-height:1.35;}
.actu-info .date{font-size:11px;color:#9aa3bf;margin-top:4px;display:block;}

.see-all{
  display:inline-flex;align-items:center;justify-content:center;gap:6px;width:100%;
  border:1.5px solid var(--blue);color:var(--blue-dark);border-radius:10px;padding:13px;
  font-size:13px;font-weight:700;background:transparent;transition:.2s;margin-top:4px;
}
.see-all:hover{background:var(--blue);color:var(--white);}

/* ===== FOOTER ===== */
footer{background:var(--blue-dark);color:var(--white);padding:56px 0 0;margin-top:20px;}
.footer-grid{
  display:grid;grid-template-columns:1.4fr 1fr 1fr 1.1fr 1.3fr;gap:32px;
  max-width:1320px;margin:0 auto;padding:0 24px 40px;
}
.footer-grid h3{color:var(--gold);font-size:17px;font-weight:700;margin-bottom:14px;}
.footer-grid h4{font-size:14px;font-weight:700;margin-bottom:14px;color:var(--white);}
.footer-grid p{font-size:13px;color:#c3cae4;line-height:1.6;}
.footer-grid ul li{margin-bottom:9px;font-size:13.5px;color:#c3cae4;}
.footer-grid ul li a:hover{color:var(--gold-light);}
.footer-contact-item{display:flex;align-items:flex-start;gap:9px;margin-bottom:12px;font-size:13.5px;color:#c3cae4;}
.footer-contact-item i{color:var(--gold);margin-top:2px;}
.footer-socials{display:flex;gap:10px;margin-top:16px;}
.footer-socials a{
  width:34px;height:34px;border-radius:50%;background:rgba(255,255,255,.1);
  display:flex;align-items:center;justify-content:center;color:var(--white);transition:.2s;
}
.footer-socials a:hover{background:var(--gold);color:var(--blue-dark);}
.newsletter-form{display:flex;margin-top:6px;border-radius:8px;overflow:hidden;}
.newsletter-form input{
  flex:1;border:none;padding:11px 12px;font-size:13px;outline:none;
}
.newsletter-form button{
  background:var(--gold);color:var(--blue-dark);font-weight:800;padding:0 16px;font-size:12.5px;letter-spacing:.3px;
}
.newsletter-form button:hover{background:var(--gold-light);}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);padding:18px 24px;
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:8px;
  max-width:1320px;margin:0 auto;font-size:12px;color:#9aa3c4;
}
.footer-bottom a{color:#9aa3c4;}
.footer-bottom a:hover{color:var(--gold-light);}

/* ===== RESPONSIVE ===== */
@media(max-width:1100px){
  .main-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;}
}
@media(max-width:900px){
  .hero-inner{grid-template-columns:1fr;text-align:center;}
  .hero-badge{margin:0 auto;}
  .hero-features{justify-content:center;}
  .nav-links{display:none;}
  .burger{display:block;}
}
@media(max-width:600px){
  .footer-grid{grid-template-columns:1fr;}
  .hero-text h1{font-size:28px;}
  .hero-badge{width:260px;height:260px;}
}

/* ===== PAGE HEADER (sous-pages) ===== */
.page-hero{
  background:linear-gradient(120deg,var(--blue-dark) 0%, var(--blue) 60%, var(--blue-light) 100%);
  padding:48px 0;color:var(--white);position:relative;overflow:hidden;
}
.page-hero::before{
  content:"";position:absolute;inset:0;
  background-image:radial-gradient(circle, rgba(255,255,255,.08) 1.5px, transparent 1.5px);
  background-size:22px 22px;opacity:.5;
}
.page-hero .container{position:relative;z-index:2;}
.page-hero h1{font-size:32px;font-weight:800;margin-bottom:8px;}
.page-hero p{font-size:14.5px;opacity:.85;max-width:560px;}
.breadcrumb{font-size:12.5px;opacity:.7;margin-bottom:14px;}
.breadcrumb a{color:var(--gold-light);}

/* ===== FILTERS (page émissions) ===== */
.filters{display:flex;gap:10px;flex-wrap:wrap;margin:36px 0 28px;max-width:1320px;padding:0 24px;margin-left:auto;margin-right:auto;}
.filter-btn{
  background:var(--white);border:1.5px solid #d8def0;color:var(--text-dark);
  padding:9px 18px;border-radius:30px;font-size:13px;font-weight:600;transition:.2s;
}
.filter-btn:hover{border-color:var(--blue);}
.filter-btn.active{background:var(--blue-dark);color:var(--white);border-color:var(--blue-dark);}

/* ===== GRID (émissions complètes / actus complètes) ===== */
.grid-3{
  display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
  max-width:1320px;margin:0 auto;padding:0 24px 60px;
}
@media(max-width:900px){.grid-3{grid-template-columns:1fr 1fr;}}
@media(max-width:600px){.grid-3{grid-template-columns:1fr;}}

.show-card{
  background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden;
  transition:transform .2s, box-shadow .2s;
}
.show-card:hover{transform:translateY(-4px);box-shadow:0 18px 36px rgba(10,31,92,.14);}
.show-card .thumb{
  height:150px;background-size:cover;background-position:center;position:relative;
  display:flex;align-items:flex-end;
}
.show-card .thumb::before{content:"";position:absolute;inset:0;background:linear-gradient(180deg, rgba(10,31,92,.1), rgba(10,31,92,.78));}
.show-card .thumb span{position:relative;z-index:1;color:var(--white);font-size:13px;font-weight:800;padding:12px;}
.show-card .thumb span b{color:var(--gold-light);display:block;}
.show-card .body{padding:16px 18px 20px;}
.show-card .body h4{font-size:15.5px;font-weight:700;color:var(--blue-dark);margin-bottom:6px;}
.show-card .body p{font-size:13px;color:var(--text-muted);line-height:1.45;margin-bottom:10px;}
.show-card .meta{display:flex;justify-content:space-between;align-items:center;}
.show-card .meta .date{font-size:11.5px;color:#9aa3bf;}
.show-card .meta .play-mini{
  width:34px;height:34px;border-radius:50%;background:var(--blue);color:var(--white);
  display:flex;align-items:center;justify-content:center;transition:background .2s;
}
.show-card .meta .play-mini:hover{background:var(--gold);color:var(--blue-dark);}

/* ===== Article card (actualités, full width) ===== */
.article-card{
  display:grid;grid-template-columns:260px 1fr;gap:0;background:var(--white);
  border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden;margin-bottom:24px;
}
.article-card img{height:100%;min-height:170px;object-fit:cover;background:#cdd6ef;}
.article-card .body{padding:22px 26px;}
.article-card .tag{
  display:inline-block;background:var(--gold);color:var(--blue-dark);font-size:10.5px;font-weight:800;
  padding:4px 10px;border-radius:6px;letter-spacing:.4px;margin-bottom:10px;
}
.article-card h3{font-size:18px;font-weight:700;color:var(--blue-dark);margin-bottom:8px;}
.article-card p{font-size:13.5px;color:var(--text-muted);line-height:1.55;margin-bottom:10px;}
.article-card .date{font-size:11.5px;color:#9aa3bf;}
@media(max-width:700px){.article-card{grid-template-columns:1fr;}.article-card img{height:180px;}}

.article-list{max-width:1320px;margin:0 auto;padding:36px 24px 30px;}

.pagination{display:flex;justify-content:center;gap:8px;padding-bottom:60px;}
.pagination button{
  width:38px;height:38px;border-radius:8px;background:var(--white);border:1.5px solid #d8def0;
  font-size:13px;font-weight:700;color:var(--text-dark);transition:.2s;
}
.pagination button.active,.pagination button:hover{background:var(--blue-dark);color:var(--white);border-color:var(--blue-dark);}

/* ===== Partenaires ===== */
.partner-grid{
  max-width:1320px;margin:0 auto;padding:36px 24px 60px;
  display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
}
@media(max-width:900px){.partner-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:600px){.partner-grid{grid-template-columns:1fr;}}
.partner-card{
  background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow);
  padding:26px 22px;text-align:center;transition:transform .2s,box-shadow .2s;
}
.partner-card:hover{transform:translateY(-4px);box-shadow:0 18px 36px rgba(10,31,92,.14);}
.partner-logo{
  width:84px;height:84px;border-radius:50%;object-fit:cover;background:#cdd6ef;
  margin:0 auto 16px;border:3px solid var(--gray-bg);box-shadow:0 4px 14px rgba(10,31,92,.1);
}
.partner-card .tag{
  display:inline-block;background:var(--gold);color:var(--blue-dark);font-size:10px;font-weight:800;
  padding:3px 9px;border-radius:6px;letter-spacing:.4px;margin-bottom:10px;
}
.partner-card h3{font-size:16px;font-weight:700;color:var(--blue-dark);margin-bottom:8px;}
.partner-card p{font-size:13px;color:var(--text-muted);line-height:1.5;margin-bottom:14px;min-height:40px;}
.partner-card .partner-link{
  display:inline-flex;align-items:center;gap:6px;font-size:12.5px;font-weight:700;color:var(--blue);
  border:1.5px solid var(--blue);border-radius:8px;padding:8px 14px;transition:.2s;
}
.partner-card .partner-link:hover{background:var(--blue);color:var(--white);}

.partners-cta{
  max-width:1320px;margin:0 auto 60px;padding:0 24px;
}
.partners-cta .live-card{
  display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:20px;
}

/* ===== CONTACT PAGE ===== */
.contact-wrap{
  display:grid;grid-template-columns:1fr 1.15fr;gap:36px;
  max-width:1320px;margin:0 auto;padding:50px 24px 70px;
}
@media(max-width:900px){.contact-wrap{grid-template-columns:1fr;}}

.contact-info-card{background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow);padding:30px;}
.contact-info-card h3{font-size:18px;color:var(--blue-dark);font-weight:700;margin-bottom:18px;}
.contact-line{display:flex;align-items:flex-start;gap:14px;margin-bottom:20px;}
.contact-line .ic{
  width:42px;height:42px;border-radius:10px;background:rgba(244,196,48,.15);color:var(--gold);
  display:flex;align-items:center;justify-content:center;font-size:16px;flex-shrink:0;
}
.contact-line h5{font-size:13.5px;font-weight:700;color:var(--blue-dark);margin-bottom:2px;}
.contact-line p{font-size:13px;color:var(--text-muted);}
.map-frame{
  margin-top:22px;border-radius:10px;overflow:hidden;height:200px;
  background:linear-gradient(135deg,#dbe2f5,#c4cfee);
  display:flex;align-items:center;justify-content:center;color:var(--blue);font-size:13px;font-weight:600;
}

.contact-form-card{background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow);padding:32px;}
.contact-form-card h3{font-size:18px;color:var(--blue-dark);font-weight:700;margin-bottom:20px;}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px;}
@media(max-width:500px){.form-row{grid-template-columns:1fr;}}
.form-group{display:flex;flex-direction:column;gap:6px;margin-bottom:16px;}
.form-group label{font-size:12.5px;font-weight:600;color:var(--text-dark);}
.form-group input,.form-group textarea{
  border:1.5px solid #d8def0;border-radius:9px;padding:11px 13px;font-size:13.5px;
  font-family:inherit;outline:none;transition:border-color .2s;resize:vertical;
}
.form-group input:focus,.form-group textarea:focus{border-color:var(--blue);}
.submit-btn{
  background:var(--gold);color:var(--blue-dark);border-radius:10px;padding:13px 26px;
  font-size:13.5px;font-weight:800;letter-spacing:.3px;transition:.2s;
}
.submit-btn:hover{background:var(--gold-light);}

/* Mobile nav drawer */
.nav-links.open{
  display:flex;flex-direction:column;position:absolute;top:64px;left:0;right:0;
  background:var(--blue-dark);padding:18px 24px;gap:16px;box-shadow:0 10px 20px rgba(0,0,0,.2);
}
