
html {
    scroll-behavior: smooth;
}

:root {
    --orange-main: #FF8C00;
    --dark-bg: #1a1a1a;
    --white: #ffffff;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
}


.header-top {
    background: #111;
    color: #888;
    font-size: 0.75rem;
    padding: 5px 5%;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #222;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: #000;
}

.logo {
    height: 70px;
    border-radius: 10px; 
}

.home-icon {
    color: white;
    font-size: 1.2rem;
    background: var(--orange-main);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: 0.3s;
}

.home-icon:hover {
    background: white;
    color: var(--orange-main);
    transform: translateY(-2px);
}

/* Style BMG Logo */
.bmg-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.bmg-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    letter-spacing: -1px;
}

.bmg-full {
    font-size: 0.65rem;
    color: var(--orange-main);
    text-transform: uppercase;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
}
.nav-container {
    flex-grow: 1;
    display: flex;
    justify-content: center; /* Centre le menu par rapport au logo */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 35px; /* Augmente l'espace entre les mots */
    margin: 0;
    padding: 0;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #ffffff !important; /* Force le texte en blanc pur pour la visibilité */
    font-weight: 600;
    font-size: 1rem;
    transition: 0.3s;
}

nav a:hover {
    color: var(--orange-main) !important; /* Ton orange au survol */
}

/* Style spécifique pour l'icône de recherche */
.search-trigger {
    color: var(--orange-main) !important;
    font-size: 1.1rem;
    padding-left: 10px;
}

.hero {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/ton-fond.jpg');
    background-size: cover;
    color: white;
    min-height: 60vh;
}

.hero-content {
    flex: 1;
}

.subtitle {
    color: var(--orange-main);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
}

h1 {
    font-size: 4rem;
    margin: 10px 0;
}

.description {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 30px;
}

.btn-main {
    background-color: #E60000; 
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px; 
    font-weight: bold;
    transition: 0.3s;
}

.btn-main:hover {
    background-color: #e67e00;
}

.portfolio {
    padding: 60px 5%;
    background-color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}


.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* LES CARTES */
.card {
    background: #f9f9f9;
    border-radius: 15px; /* Notre fameux border-radius */
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px); /* Petit effet de soulèvement au survol */
}

.card-image {
    height: 250px;
    background-color: #ddd; /* Couleur grise en attendant tes photos */
    position: relative;
    background-size: cover;
    background-position: center;
}

/* STYLE DES BADGES ORANGES */
.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--orange-main);
    color: white;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 5px;
}

.card-info {
    padding: 20px;
}

.card-info h3 {
    margin: 0 0 10px 0;
    color: var(--dark-bg);
}

.rappeur { background-image: url('images/photo-scene.jpg'); }
.beatmaker { background-image: url('images/photo-studio1.jpg'); }
.manager { background-image: url('images/photo-bureau1.jpg'); }

.video-placeholder {
    background: #333;
    height: 200px; /* Force une hauteur pour que YouTube accepte de charger */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.video-placeholder iframe {
    width: 100%;
    height: 100%; /* La vidéo doit remplir tout le bloc noir */
    border: none;
}

.projects-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center; /* Pour centrer vos deux vidéos */
}

/* SECTION CONTACT */
.contact-section { padding: 60px 5%; background-color: var(--dark-bg); color: white; }
.contact-form { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.contact-form input, .contact-form textarea { padding: 15px; border-radius: 8px; border: none; font-family: 'Inter', sans-serif; }
.contact-form textarea { height: 150px; }

footer {
    background-color: #111;
    color: white;
    padding: 40px 5%;
    text-align: center;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.social-links {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 30px; /* Espace entre les icônes */
}

.social-links a {
    color: #E60000; /* Ton rouge Blaka Recordz */
    font-size: 2rem; /* Taille de l'icône */
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    color: white;
    transform: translateY(-5px); /* Petit effet de saut au survol */
}

/* OPTIMISATION MOBILE */
@media (max-width: 768px) {
    /* On empile les éléments au lieu de les mettre côte à côte */
    .nav-links {
        display: none; /* Cache le menu texte pour l'instant (on pourra faire un menu burger plus tard) */
    }

    .hero {
        text-align: center;
        padding: 60px 5%;
        height: auto;
        min-height: 80vh;
    }

    .hero-content h1 {
        font-size: 2.5rem; /* Réduit la taille du titre Bigi Blaka sur mobile */
    }

    /* Les boîtes de services (Rappeur, Manager) s'empilent */
    .projects-container, .services-container {
        grid-template-columns: 1fr; /* Une seule colonne sur mobile */
        gap: 20px;
    }

    .project-item {
        margin-bottom: 20px;
    }

    /* Le formulaire de contact prend toute la largeur */
    .contact-form {
        width: 100%;
        padding: 0 10px;
    }
}

.faq-section {
    padding: 60px 5%;
    background-color: #1a1a1a;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid #333;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background-color: #000;
    color: white;
    text-align: left;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.faq-question:hover {
    color: #E60000; /* Ton rouge Blaka */
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    background-color: #111;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 20px 0;
    color: #ccc;
}

/* Classe pour l'ouverture via JavaScript */
.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question {
    color: #E60000;
}

.privacy-note {
    font-size: 0.85rem;
    color: #888;
    margin-top: 15px;
    text-align: center;
    font-style: italic;
}

.privacy-note i {
    color: #E60000; /* Le rouge de ton logo pour l'icône cadenas */
    margin-right: 5px;
}

.donation-section {
    padding: 60px 5%;
    background-color: #0a0a0a;
    text-align: center;
    border-top: 1px solid #333;
}

.donation-content h2 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 2rem;
}

.donation-content p {
    color: #ccc;
    margin-bottom: 30px;
}

.btn-donate {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #E60000; /* Ton rouge */
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-donate:hover {
    background-color: #ff0000;
    transform: scale(1.05);
}

.btn-donate i {
    font-size: 1.2rem;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #E60000; /* Ton rouge */
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0; /* Caché par défaut */
    visibility: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #ff0000;
    transform: translateY(-5px);
}

html {
    scroll-behavior: smooth;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px; /* À gauche pour ne pas gêner le bouton "Retour en haut" */
    background-color: #25d366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    background-color: #128c7e;
}

/* --- AJOUTS POUR LES CARTES CLIQUABLES --- */

/* On s'assure que le lien ne change pas la couleur du texte et n'ajoute pas de soulignement */
.grid-container a.card {
    text-decoration: none; 
    color: inherit; 
    display: flex;
    flex-direction: column;
}

/* On garde l'effet de survol (hover) que tu avais déjà, mais on peut le rendre plus fluide */
.card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.2); /* Ombre un peu plus forte au survol */
}

/* Pour que les images s'adaptent bien si tu changes de format */
.card-image {
    background-size: cover;
    background-position: center;
    width: 100%;
}

        /* Styles spécifiques pour la page vidéo */
.video-grid {
    display: grid;
    /* Aligne 3 vidéos par ligne sur PC, s'adapte sur mobile */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 5%;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch; /* Force les cartes à avoir la même hauteur sur une ligne */
}

.video-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column; /* Organise le contenu verticalement */
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    height: 0;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-details {
    padding: 15px;
    flex-grow: 1; /* Permet au texte de prendre l'espace restant pour aligner le bas des cartes */
}

.video-details h3 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    line-height: 1.3;
}

.video-details p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

        .back-link {
            display: inline-block;
            margin: 20px 5%;
            color: var(--orange-main);
            text-decoration: none;
            font-weight: bold;
        }

        .collab-text {
    max-width: 700px;
    margin: 20px auto;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bbb; /* Un gris clair pour ne pas jurer avec le noir du footer */
    font-style: italic;
}

.collab-text strong {
    color: var(--orange-main); /* On met en avant les noms de boîtes avec ton orange */
    font-weight: 700;
}

.beats-page { padding: 40px 5%; max-width: 1000px; margin: 0 auto; }

.beat-item {
    background: white;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    gap: 20px;
}

.beat-info { flex: 1; }
.beat-info h3 { margin: 5px 0; font-size: 1.2rem; }

audio { 
    height: 40px; 
    filter: sepia(20%) saturate(70%) grayscale(1) contrast(99%) invert(12%); /* Pour donner un look sombre au lecteur */
}

.btn-wa {
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-wa:hover { background-color: #128C7E; transform: scale(1.05); }

/* Mobile */
@media (max-width: 768px) {
    .beat-item { flex-direction: column; text-align: center; }
    audio { width: 100%; }
}

.about-label {
    padding: 60px 5%;
    text-align: center;
    background: #f9f9f9; /* Un fond gris très léger pour détacher la section */
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.announcement-banner {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--orange-main);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(255, 69, 0, 0.2);
    animation: pulse 2s infinite; /* Petit effet d'animation */
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}






