/* ============================================
   STYLES UNIFIÉS POUR LIGHT RADIO 93.9 FM
   ============================================ */

/* Variables couleurs cohérentes avec le logo */
:root {
  --primary-blue: #1B1464;
  --secondary-blue: #2A1F8C;
  --accent-orange: #FFA500;
  --light-orange: #FFB733;
  --purple: #8A2BE2;
  --light-purple: #9D4EDD;
  --light-bg: #f8f9ff;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-medium: #666666;
  --gray-dark: #333333;
}

/* Reset et styles de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 100%);
  color: var(--gray-dark);
  line-height: 1.6;
  min-height: 100vh;
}

/* Conteneur principal */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  padding: 15px 0;
  box-shadow: 0 4px 20px rgba(27, 20, 100, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.branding {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.branding img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--accent-orange);
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
  transition: transform 0.3s ease;
}

.branding img:hover {
  transform: scale(1.05);
}

.branding h1 {
  font-size: 28px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.branding span {
  color: var(--accent-orange);
  font-weight: bold;
}

/* Navigation */
nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
  padding: 0;
  list-style: none;
}

nav a {
  padding: 12px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-weight: 500;
  color: white;
  text-decoration: none;
  display: inline-block;
}

nav a:hover,
nav a.active {
  background: rgba(255, 165, 0, 0.15);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(27, 20, 100, 0.85), rgba(138, 43, 226, 0.85)),
              url('https://images.unsplash.com/photo-1563089145-599997674d42?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 20px;
  margin-top: 0;
  border-radius: 0 0 40px 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 20%, rgba(0,0,0,0.3) 100%);
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
  position: relative;
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
}

/* Section Présentation */
.presentation {
  background: white;
  padding: 60px 40px;
  margin: 40px auto;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(27, 20, 100, 0.1);
  max-width: 1100px;
  text-align: center;
  border-left: 5px solid var(--accent-orange);
  position: relative;
}

.presentation::before {
  content: "🎙️";
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.presentation h3 {
  color: var(--primary-blue);
  font-size: 2.2rem;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.presentation h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--accent-orange), var(--purple));
  border-radius: 2px;
}

.presentation p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--gray-medium);
  max-width: 900px;
  margin: 0 auto;
}

/* Live Zone */
.live-zone {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

/* Radio Card */
.radio-card {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  border-radius: 25px;
  padding: 40px;
  color: white;
  text-align: center;
  box-shadow: 0 15px 40px rgba(27, 20, 100, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.radio-card:hover {
  transform: translateY(-10px);
}

.radio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, var(--accent-orange), var(--purple));
}

.radio-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid var(--accent-orange);
  margin-bottom: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.radio-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--accent-orange);
}

.radio-card p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: inline-block;
  backdrop-filter: blur(10px);
}

.radio-card button {
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--light-orange) 100%);
  color: white;
  border: none;
  padding: 18px 40px;
  font-size: 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 30px;
  box-shadow: 0 10px 20px rgba(255, 165, 0, 0.3);
}

.radio-card button:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 25px rgba(255, 165, 0, 0.4);
}

.bars {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 8px;
  height: 60px;
  margin-top: 20px;
}

.bar {
  width: 10px;
  background: linear-gradient(to top, var(--accent-orange), var(--light-orange));
  border-radius: 5px 5px 0 0;
  transition: height 0.2s ease;
}

/* Video Box */
.video-box {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.video-box:hover {
  transform: translateY(-10px);
}

.video-frame {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.live-banner {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--purple) 100%);
  color: white;
  padding: 20px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  position: relative;
}

.live-banner::before {
  content: '🔴';
  margin-right: 10px;
  animation: pulse 1.5s infinite;
}

/* Badge Live */
.live-badge {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff0000, #ff4444);
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  z-index: 1001;
  box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
  animation: pulse 2s infinite;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: white;
  padding: 60px 0 30px;
  margin-top: 80px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, var(--accent-orange), var(--purple));
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid h3 {
  color: var(--accent-orange);
  font-size: 1.4rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-grid h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: white;
}

.footer-grid p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-grid a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-grid a:hover {
  color: var(--accent-orange);
}

.copy {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* WhatsApp */
.whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

/* Statistiques */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.stat-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card i {
  font-size: 40px;
  color: var(--accent-orange);
  margin-bottom: 15px;
}

.stat-card .number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.stat-card .label {
  color: var(--gray-medium);
  font-size: 1rem;
}

/* Styles communs pour les pages */
.box {
  padding: 40px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0d0a30 100%);
  border-radius: 25px;
  margin: 40px auto;
  max-width: 1200px;
}

.box h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: white;
}

.box p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Grilles pour les cartes */
.articles-grid,
.team-grid,
.listen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

/* Cartes articles/équipe */
.article,
.team-card,
.listen-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article:hover,
.team-card:hover,
.listen-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.article img,
.team-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid var(--accent-orange);
}

.article-content,
.team-info,
.listen-card > div {
  padding: 25px;
  text-align: center;
}

.article-content h4,
.team-name,
.listen-card h4 {
  color: var(--primary-blue);
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.article-content p,
.team-bio,
.listen-card p {
  color: var(--gray-medium);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Catégories équipe */
.team-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.category-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 25px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
  background: var(--accent-orange);
  transform: translateY(-2px);
}

/* Contact équipe */
.team-contact {
  background: var(--gray-light);
  padding: 15px;
  margin-top: 15px;
  border-radius: 10px;
  text-align: left;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--gray-medium);
}

.contact-item i {
  width: 20px;
  color: var(--primary-blue);
  margin-right: 10px;
}

.contact-item a {
  color: var(--gray-medium);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--accent-orange);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .presentation {
    padding: 40px 20px;
    margin: 40px 20px;
  }
  
  .presentation h3 {
    font-size: 1.8rem;
  }
  
  .branding {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  
  nav ul {
    gap: 5px;
  }
  
  nav a {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  
  .live-zone {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
  }
  
  .articles-grid,
  .team-grid,
  .listen-grid {
    grid-template-columns: 1fr;
  }
  
  .live-badge {
    padding: 10px 20px;
    font-size: 0.9rem;
    right: 10px;
    top: 10px;
  }
  
  .box {
    padding: 30px 20px;
    margin: 30px 15px;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .presentation h3 {
    font-size: 1.5rem;
  }
  
  .presentation p {
    font-size: 1rem;
  }
  
  .stats {
    grid-template-columns: 1fr;
  }
  
  .radio-card {
    padding: 30px 20px;
  }
  
  .radio-card img {
    width: 120px;
    height: 120px;
  }
}/* ===== FIX SCROLL GLOBAL ===== */
html, body {
  width: 100%;
  height: auto !important;
  overflow-x: hidden;
  overflow-y: auto;
}

/* ===== FIX HEADER STICKY ===== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

/* ===== FIX HERO SECTIONS ===== */
.hero,
.programme-hero {
  min-height: 60vh;
  height: auto;
}

/* ===== FIX CONTENU CACHÉ ===== */
section, footer {
  position: relative;
  z-index: 1;
}
