/* ------------------------------------------- */
/* 1. IMPORTS & TYPOGRAPHIE */
/* ------------------------------------------- */

/* Importation des polices choisies (Sixtyfour, Tourney, Play) */
@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&family=Sixtyfour&family=Tourney:wght@400;700&display=swap');

/* Styles Généraux et Body (Fond de page) */
body {
    background-color: #000a1d; /* Bleu-gris foncé */
    font-family: 'Play', sans-serif; 
    color: #f8f9fa; /* Gris clair */
    /* L'ombrage garantit que le texte ressort sur les zones claires de l'image */
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5); 
}

/* Police pour les Titres (H1, H2, H3, etc.) */
h1, h2, h3, h4, .fw-bold {
    font-family: 'Tourney', sans-serif; 
    font-weight: 700;
    color: #ffffff; 
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Ombrage plus fort pour les titres */
}

/* Police spécifique pour le Nom d'Artiste (Sixtyfour) */
.hero-section h1 {
    font-family: 'Sixtyfour', sans-serif; 
    font-weight: 400; 
}

/* Police pour le Corps de Texte, Paragraphes, et Eléments par défaut */
p, .lead {
    font-family: 'Play', sans-serif; 
    font-weight: 400;
}


/* ------------------------------------------- */
/* 2. EFFET KEN BURNS (ZOOM IN/OUT CENTRÉ 4s) */
/* ------------------------------------------- */

/* Définition de l'animation Ken Burns */
@keyframes kenburns {
    0% {
        transform: scale(1.1); 
    }
    100% {
        transform: scale(1.15); 
    }
}

/* Style de la section principale (Header) */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden; 
    z-index: 1; 
}

/* Style de l'image de fond animée (::before) */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    transform-origin: 50% 50%; 
    background-image: url('images/fond_index.jpg'); 
    background-size: cover;
    background-position: center center;
    z-index: -1;
    
    /* Vitesse 4 secondes, Zoom In/Out très rapide */
    animation: kenburns 4s infinite alternate ease-in-out; 
}

/* Assombrissement pour lisibilité */
.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
    z-index: -1;
}

/* Contenu au-dessus de l'assombrissement */
.hero-section > .container {
    z-index: 2;
}


/* ------------------------------------------- */
/* 3. STYLES D'INTERACTION (BOUTONS & LIENS) */
/* ------------------------------------------- */

/* Styles des Liens Hypertextes Simples (Texte) */
a {
    color: #f8f9fa; 
    text-decoration: none; 
    transition: color 0.3s ease;
}

/* Lien au survol (Hover) : Magenta de votre logo (PLUS VIF) */
a:hover {
    color: #FC0088; 
    text-decoration: underline; 
}

/* Lien au clic/actif (Active/Focus) : Vert de votre logo (Base) */
a:active, a:focus {
    color: #009C1C;
}

/* Styles généraux du bouton */
.btn-lg {
    border-radius: 8px; 
    padding: 10px 30px;
    font-family: 'Play', sans-serif; 
    font-weight: 700;
    transition: all 0.3s ease; 
}

/* Bouton au repos (état initial) : Vert de votre logo (BASE) */
.btn-light {
    background-color: #009C1C; 
    color: #ffffff; 
    border: none;
    box-shadow: 0 0 10px rgba(0, 156, 28, 0.7); 
}

/* Bouton au survol (Hover) : Magenta de votre logo (PLUS VIF) */
.btn-light:hover {
    background-color: #FC0088; 
    color: #ffffff; 
    box-shadow: 0 0 15px rgba(252, 0, 136, 0.9), 0 0 25px rgba(252, 0, 136, 0.5); 
    transform: translateY(-2px); 
}

/* Bouton au clic (Active/Focus) : Magenta de votre logo (Vif pour le clic) */
.btn-light:active, .btn-light:focus {
    background-color: #FC0088 !important; 
    color: #ffffff !important;
    box-shadow: 0 0 15px rgba(252, 0, 136, 0.9);
    transform: translateY(0);
}


/* ------------------------------------------- */
/* 4. STYLES DE NAVIGATION */
/* ------------------------------------------- */
.navbar {
    z-index: 1000; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
}

/* Style pour l'image du logo */
.navbar-brand img {
    height: 50px; 
    max-width: 250px; 
    width: auto; 
}

/* Styles pour le sélecteur de langue */
.navbar-brand {
    margin-right: 1.5rem; 
}

.nav-link {
    font-family: 'Tourney', sans-serif; 
    font-weight: 700;
    font-size: 1.1rem;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

/* Couleur du lien au survol (MAgenta pour le menu) */
.nav-link:hover {
    color: #FC0088 !important;
}

/* Style spécifique pour le bouton actif (Vert pour indiquer la page courante) */
.nav-link.active {
    color: #009C1C !important; 
}


/* ------------------------------------------- */
/* 5. FOOTER & ICONES SOCIALES */
/* ------------------------------------------- */

footer {
    background-color: #000a1d; 
    border-top: 1px solid rgba(255, 255, 255, 0.05); 
}

/* Style des liens dans le footer (Mentions Légales, Contact) */
.footer-link {
    font-family: 'Play', sans-serif;
    color: #f8f9fa; 
    transition: color 0.3s ease;
}

/* Les liens du footer utilisent le Vert du logo au survol (MAgenta VIF pour le survol) */
.footer-link:hover {
    color: #FC0088; 
}

/* Style des icônes sociales */
.social-icon {
    color: #f8f9fa; 
    font-size: 1.8rem; 
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Icônes au survol (Hover) : Magenta de votre logo (VIF) */
.social-icon:hover {
    color: #FC0088;
    transform: translateY(-5px); 
}

/* Style pour le texte de copyright */
.text-muted {
    color: rgba(255, 255, 255, 0.5) !important;
}


/* ------------------------------------------- */
/* 6. SECTION MUSIQUE & LIENS PLATEFORMES */
/* ------------------------------------------- */

/* Style pour la section Musique */
#music {
    min-height: 50vh;
    padding-top: 5rem;
}

/* Style des liens de plateformes (Spotify, Soundcloud, etc.) */
.platform-link {
    display: block;
    color: #f8f9fa; 
    transition: all 0.3s ease;
}

/* Icônes de plateformes au survol (Hover) : Magenta de votre logo */
.platform-link:hover {
    color: #FC0088;
    transform: translateY(-5px); 
}

/* Style spécifique pour le texte sous les icônes */
.platform-link p {
    font-family: 'Play', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #f8f9fa; 
    margin-top: 0.5rem;
}

/* Style des titres de section (H3) */
#music h3 {
    color: #ffffff;
}

/* ------------------------------------------- */
/* 7. SECTIONS BIO & EVENTS */
/* ------------------------------------------- */

/* Assurer que les sections ont un padding pour la lisibilité */
#bio, #events {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Style de la section Events pour la différencier (couleur de fond du body) */
.bg-darker {
    background-color: #000a1d; 
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Style de la carte d'événement */
.card {
    background-color: rgba(255, 255, 255, 0.05) !important; 
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Style des titres de carte (H3) */
.card-title {
    color: #FC0088; 
    font-family: 'Tourney', sans-serif;
    font-size: 1.5rem;
}

/* Style de la photo de profil dans la section BIO */
#bio img {
    box-shadow: 0 0 15px rgba(0, 156, 28, 0.5); 
}


/* ------------------------------------------- */
/* 8. CORRECTION LOGOS AUDIOMACK/TIDAL */
/* ------------------------------------------- */

/* Assurez-vous que les images s'alignent avec les icônes Font Awesome */
.platform-image {
    width: 80px;
    height: 80px;
}

/* FOOTER : Rendre les icônes Font Awesome génériques transparentes pour qu'elles s'alignent */
/* 🛑 CORRECTION : On cible SEULEMENT les liens qui utilisent les images (Audiomack & Tidal) */
.audiomack-icon .fab, .audiomack-icon .fas, 
.tidal-icon .fab, .tidal-icon .fas {
    opacity: 0; /* Rendre l'ancienne icône Font Awesome invisible si elle est encore présente */
    height: 0;
    width: 0;
}

/* Styles pour les logos images (Normal et Survol) */

/* --- TIDAL --- */
.tidal-icon:hover img {
    content: url('images/logo_tidal_active.png'); /* 🛑 CORRECTION INVERSION : Utiliser le MAGENTA (Active) au HOVER */
    transform: translateY(-5px); /* Garde l'effet de soulèvement */
}
.tidal-icon:active img {
    content: url('images/logo_tidal_hover.png'); /* 🛑 CORRECTION INVERSION : Utiliser le VERT (Hover) à l'ACTIVE */
}

/* --- AUDIOMACK --- */
.audiomack-icon:hover img {
    content: url('images/logo_audiomack_active.png'); /* 🛑 CORRECTION INVERSION : Utiliser le MAGENTA (Active) au HOVER */
    transform: translateY(-5px); 
}
.audiomack-icon:active img {
    content: url('images/logo_audiomack_hover.png'); /* 🛑 CORRECTION INVERSION : Utiliser le VERT (Hover) à l'ACTIVE */
}