/* --- VARIABLES & RESET --- */
:root {
    --color-gold: #D4AF37; /* Or métallique */
    --color-gold-light: #F3E5AB;
    --color-black: #0a0a0a; /* Noir profond */
    --color-dark-grey: #1f1f1f;
    --color-white: #ffffff;
    --color-off-white: #f4f4f4;
    --font-main: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
}

/* --- UTILITAIRES --- */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.gold-text { color: var(--color-gold); }
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 900;
}
.section-dark { background-color: var(--color-black); padding: 80px 0; }
.section-light { background-color: var(--color-off-white); color: var(--color-black); padding: 80px 0; }

/* --- NAVBAR --- */
.navbar {
    /* On met transparent pour voir l'image derrière */
    background-color: transparent; 
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    /* On enlève la bordure jaune au début pour la continuité totale */
    border-bottom: none; 
    transition: all 0.4s ease; /* Animation fluide pour le changement de couleur */
}

/* Nouvelle classe qui s'activera quand on descend la page */
.navbar-scrolled {
    background-color: rgba(10, 10, 10, 0.95); /* Le fond noir revient */
    padding: 0.7rem 0; /* Le menu se réduit un peu (effet moderne) */
    border-bottom: 2px solid var(--color-gold); /* La ligne or réapparaît */
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: var(--color-white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    margin-left: 1rem;
    font-weight: 700;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-links li a:hover { color: var(--color-gold); }

.btn-contact {
    background-color: var(--color-gold);
    color: var(--color-black) !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 5px;
}

.burger-menu { display: none; font-size: 1.5rem; cursor: pointer; }

/* --- HERO SECTION & PLAYER --- */
.hero-section {
    height: 100vh;
    /* Image de fond ajoutée avec un dégradé sombre par-dessus pour la lisibilité */
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)), url('assets/image_2.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px; /* Pour la navbar fixe */
}

.hero-visual img.main-logo-img {
    max-width: 250px; /* Ajuster la taille du tam-tam */
    margin-bottom: 1rem;
    /* L'image fournie est blanche, elle ressortira bien sur le fond noir */
}

.main-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 2px;
}

.frequency {
    font-size: 2.5rem;
    color: var(--color-gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.slogan {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 3rem;
    color: var(--color-gold-light);
}

/* --- LE LECTEUR AUDIO --- */
.player-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--color-gold);
    display: inline-block;
    min-width: 350px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.on-air-status {
    color: var(--color-gold);
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulsing-dot {
    height: 12px;
    width: 12px;
    background-color: red;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

.audio-controls {
    display: flex;
    align-items: center;
    justify-content: center;
}

.big-play {
    background-color: var(--color-gold);
    border: none;
    color: var(--color-black);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px; /* Alignement optique de l'icône play */
}

.big-play:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--color-gold);
}

.track-info { text-align: left; }
.now-playing-label { font-size: 0.8rem; color: #aaa; display: block; }
.track-title { font-weight: 700; font-size: 1.1rem; }

/* --- A PROPOS --- */
.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}
.about-text { flex: 2; font-size: 1.1rem; }
.about-icon { flex: 1; text-align: center;}

/* --- REPLAY GRID --- */
.section-subtitle { text-align: center; margin-bottom: 3rem; }
.replay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.podcast-card {
    background-color: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border-bottom: 3px solid var(--color-gold);
}

.podcast-card:hover { transform: translateY(-10px); }

.podcast-image {
    height: 150px;
    background-color: var(--color-dark-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 3rem;
}

.podcast-content { padding: 1.5rem; }
.podcast-content h4 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--color-black); }
.podcast-content p { color: #666; font-size: 0.9rem; margin-bottom: 1rem; }
.podcast-date { display: block; color: #999; font-size: 0.8rem; margin-bottom: 1rem; }

.btn-replay-listen {
    background-color: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-black);
    padding: 0.5rem 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}
.btn-replay-listen:hover { background-color: var(--color-gold); }

/* --- CONTACT --- */
.contact-wrapper { display: flex; justify-content: space-around; text-align: center; margin-top: 3rem; }
.contact-info-box { padding: 2rem; border: 1px solid rgba(212, 175, 55, 0.3); border-radius: 10px; width: 45%; }
.gold-icon { font-size: 3rem; color: var(--color-gold); margin-bottom: 1rem; }
.contact-info-box h4 { font-size: 1.2rem; margin-bottom: 1rem; color: var(--color-gold); }

/* --- FOOTER --- */
footer { background-color: #000; padding: 3rem 0; text-align: center; border-top: 1px solid #222; }
.footer-logo { font-size: 1.5rem; font-weight: 900; margin-bottom: 1.5rem; }
.social-links { margin-bottom: 1.5rem; }
.social-links a {
    color: var(--color-white);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s;
}
.social-links a:hover { color: var(--color-gold); }
.copyright { font-size: 0.9rem; color: #777; }

/* --- RESPONSIVE (Tablettes et Mobiles) --- */
@media (max-width: 768px) {
    .nav-links { display: none; } /* Cache le menu pour l'instant sur mobile */
    .burger-menu { display: block; }
    .main-title { font-size: 2.5rem; }
    .frequency { font-size: 1.8rem; }
    .hero-visual img.main-logo-img { max-width: 180px; }
    .player-container { min-width: auto; width: 100%; }
    .about-content { flex-direction: column; gap: 2rem; }
    .contact-wrapper { flex-direction: column; gap: 2rem; }
    .contact-info-box { width: 100%; }
	
	/* --- SECTION REPLAY AVEC BACKGROUND --- */
.section-replay-bg {
    /* Image de fond (Amps & Tapes) avec un voile sombre fort (0.85) pour la lisibilité */
    background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.85)), url('assets/image_3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Effet Parallaxe : l'image reste fixe quand on scrolle */
    padding: 80px 0;
    color: var(--color-white); /* Le texte devient blanc */
}

/* On s'assure que le sous-titre est bien gris clair et non noir */
.section-replay-bg .section-subtitle {
    color: #ccc;
    text-align: center;
    margin-bottom: 3rem;
}

/* Les cartes restent blanches pour bien contraster avec le fond sombre */
.podcast-card {
    background-color: var(--color-white);
    color: var(--color-black); /* Le texte DANS les cartes reste noir */
}
.podcast-content h4 { color: var(--color-black); }

/* --- MISE À JOUR : CENTRAGE DU TEXTE MISSION --- */

/* On annule l'ancien comportement "flex" qui mettait les éléments côte à côte */
.about-content {
    display: block; 
    text-align: center; /* Centre les paragraphes à l'intérieur */
}

/* On ajuste le bloc de texte lui-même */
.about-text {
    /* On retire l'ancienne propriété "flex: 2" */
    display: inline-block; /* Permet au bloc d'être centré par le parent */
    max-width: 800px; /* On limite la largeur pour que les lignes ne soient pas trop longues à lire */
    margin: 0 auto; /* Sécurité pour bien centrer le bloc horizontalement */
    font-size: 1.1rem;
}
/* --- SECTION ACTUALITÉS --- */
.section-news { background-color: #f9f9f9; padding: 100px 0 250px 0; }
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.news-image {
    height: 200px;
    width: 100%;
    position: relative;
    /* C'est ici que l'image s'affichera plus tard */
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--color-gold);
    color: var(--color-black);
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px;
}

.news-content {
    padding: 25px;
    text-align: left; /* Important pour la lecture */
}

.news-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
}

.news-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--color-black);
    font-weight: 700;
    line-height: 1.4;
}

.news-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    text-decoration: none;
    color: var(--color-gold);
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--color-black);
}
read-more { text-decoration: none; color: #D4AF37 !important; font-weight: 700; font-size: 0.9rem; transition: all 0.3s ease; display: inline-flex; align-items: center; }

.read-more:hover { color: #000000 !important; transform: translateX(5px); }

.read-more i { margin-left: 5px; }

/* --- BANNIERE ARTISTE --- */ .artist-banner { background-color: #ffffff; padding: 20px 0; border-bottom: 4px solid #D4AF37; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }

.banner-content { display: flex; justify-content: flex-end; align-items: center; gap: 15px; }

.artist-info { text-align: right; }

.artist-label { display: block; color: #D4AF37; text-transform: uppercase; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; }

.artist-name { margin: 0; color: #0a0a0a; font-size: 1.8rem; font-weight: 900; line-height: 1; }

.artist-medal { width: 80px; height: 80px; border-radius: 50%; border: 3px solid #D4AF37; overflow: hidden; box-shadow: 0 0 10px rgba(212, 175, 55, 0.4); }

.artist-medal img { width: 100%; height: 100%; object-fit: cover; }

/* --- CORRECTION BANDE DEFILANTE --- */

.hero-section { position: relative; }

.news-ticker-bar { position: absolute; bottom: 0; left: 0; width: 100%; height: 40px; /* Hauteur fixe pour être sur qu'elle s'affiche / background-color: #000000; overflow: hidden; / Cache ce qui dépasse / border-top: 1px solid #D4AF37; z-index: 10; display: flex; align-items: center; / Centre le texte en hauteur */ }

.ticker-text { white-space: nowrap; /* Empêche le texte de passer à la ligne */ color: #D4AF37; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px;

/* L'animation : dure 25 secondes, vitesse constante, tourne en boucle */ animation: scroll-text 25s linear infinite; }

/* DEFINITION DU MOUVEMENT / @keyframes scroll-text { 0% { transform: translateX(100vw); / Départ : à droite hors de l'écran / } 100% { transform: translateX(-100%); / Fin : à gauche hors de l'écran */ } }
ticker-text { white-space: nowrap; color: #D4AF37; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; line-height: 40px; padding-left: 100%; display: inline-block; animation: defilement 20s linear infinite; }

@keyframes defilement { 0% { transform: translate(0, 0); } 100% { transform: translate(-100%, 0); } }
/* --- BANNIERE PERSONNALITE (NOIRE) --- */ .personality-banner { background-color: #000000; padding: 40px 0; border-top: 2px solid #D4AF37; border-bottom: 2px solid #D4AF37; }

.personality-content { display: flex; align-items: center; justify-content: flex-start; /* Aligne tout à gauche */ gap: 25px; }

.personality-medal { width: 110px; height: 110px; border-radius: 50%; border: 3px solid #D4AF37; overflow: hidden; box-shadow: 0 0 15px rgba(212, 175, 55, 0.5); flex-shrink: 0; }

.personality-medal img { width: 100%; height: 100%; object-fit: cover; }

.personality-info { text-align: left; }

.personality-label { display: block; color: #D4AF37; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; font-weight: 700; }

.personality-name { color: #ffffff; font-size: 2rem; font-weight: 900; margin: 0; line-height: 1.1; }

/* Version Mobile */ @media (max-width: 768px) { .personality-content { flex-direction: column; text-align: center; } .personality-info { text-align: center; } }

/* --- SECTION PARTENAIRES --- */ .partners-section { background-color: #ffffff; padding: 50px 0; text-align: center; border-top: 1px solid #eee; }

.partners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 30px; align-items: center; justify-items: center; margin-top: 40px; }

.partner-logo { max-width: 100%; max-height: 70px; /* C'est ici qu'on force tous les logos à avoir la même hauteur visuelle / width: auto; height: auto; filter: grayscale(100%); / Optionnel : rend les logos en noir et blanc pour l'élégance */ opacity: 0.7; transition: all 0.3s ease; }

.partner-logo:hover { filter: grayscale(0%); /* La couleur revient au survol */ opacity: 1; transform: scale(1.1); }

/* Ajustement mobile / @media (max-width: 768px) { .partners-grid { grid-template-columns: repeat(3, 1fr); / 3 logos par ligne sur mobile */ gap: 15px; } .partner-logo { max-height: 50px; } }
partners-section .section-title { color: #000000; }


}