/* Import de la police personnalisée - multiples formats pour compatibilité */
@font-face {
    font-family: 'Blade Rounded';
    src: url('fonts/BladeRounded.woff2') format('woff2'),
         url('fonts/BladeRounded.woff') format('woff'),
         url('fonts/BladeRounded.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fira Sans';
    src: url('fonts/Fira_Sans/FiraSans-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Réinitialisation basique */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Style général du body */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #101010;
}

/* HEADER HERO AVEC IMAGE DE FOND */
.hero {
    position: relative;
    height: 100vh;
    background-image: url('images/header-background.jpg');
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay pour assombrir l'image de fond */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

/* Contenu du hero au-dessus de l'overlay */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

/* Titre principal avec la police Blade Rounded */
.main-title {
    font-family: 'Blade Rounded', Arial, sans-serif;
    font-size: 8rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Liste horizontale des icônes réseaux sociaux */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-links a {
    color: white;
    font-size: 2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #e74c3c;
}

/* SECTION BIOGRAPHIE */
.bio {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    background-color: transparent;
    border-left: 3px solid #e74c3c;
    color: white;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: left;
}

/* SECTION VIDÉO YOUTUBE */
.video-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background-color: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* SECTIONS GÉNÉRALES */
section {
    max-width: 1100px;
    margin: 5rem auto;
    padding: 2rem;
    background-color: transparent;
}

section h2 {
    font-family: 'Blade Rounded', Arial, sans-serif;
    color: white;
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 0.8rem;
}

section h3 {
    color: white;
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* STATISTIQUES */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background-color: transparent;
    border-top: 2px solid #e74c3c;
}

.stat-number {
    font-family: 'Blade Rounded', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: normal;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #999;
    font-size: 0.9rem;
}

/* MÉDIAS */
.medias {
    background-color: transparent;
}

.media-item h3 {
    color: white;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* DISCOGRAPHIE */
.disco-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.disco-item {
    background-color: transparent;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.disco-item:hover {
    transform: translateY(-5px);
}

.disco-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.disco-item img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #333;
}

.disco-info {
    padding: 1rem 0;
    color: white;
}

.disco-info h3 {
    color: white;
    margin: 0.5rem 0;
    font-size: 1.2rem;
}

.disco-info p {
    color: #999;
    font-size: 0.85rem;
}

/* CONCERTS */
.concerts {
    background-color: transparent;
    color: white;
}

.concert-list {
    list-style: none;
    margin: 1.5rem 0;
}

.concert-list li {
    padding: 1rem 0;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid #222;
}

.concert-list.past li {
    opacity: 0.6;
}

.lineup {
    color: #666;
    font-size: 0.85rem;
    font-style: italic;
}

/* PHOTOS DE PRESSE */
.press-photos {
    background-color: transparent;
    color: white;
}

.credit-text {
    text-align: left;
    color: #999;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.credit-text a {
    color: #e74c3c;
    text-decoration: none;
}

.credit-text a:hover {
    text-decoration: underline;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.photos-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid #222;
}

.download-btn {
    display: inline-block;
    background-color: transparent;
    color: #e74c3c;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border: 2px solid #e74c3c;
    font-weight: normal;
    transition: all 0.3s ease;
    margin: 2rem 0;
    display: block;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.download-btn:hover {
    background-color: #e74c3c;
    color: white;
}

.download-btn i {
    margin-right: 0.5rem;
}

/* CONTACT */
.contact {
    background-color: transparent;
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.contact-item {
    background-color: transparent;
    padding: 1.5rem 0;
    border-top: 2px solid #e74c3c;
}

.contact-item h3 {
    margin-top: 0;
}

.contact-item p {
    margin: 0.5rem 0;
    color: #999;
}

.contact-item a {
    color: #e74c3c;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* FOOTER */
footer {
    background-color: transparent;
    color: #555;
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid #222;
}

/* RESPONSIVE - TABLETTES */
@media (max-width: 768px) {
    .main-title {
        font-size: 4rem;
    }
    
    .stats-grid,
    .disco-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .photos-grid {
        grid-template-columns: 1fr;
    }
}

/* RESPONSIVE - MOBILES */
@media (max-width: 480px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-links a {
        font-size: 1.8rem;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
    
    .photos-grid {
        grid-template-columns: 1fr;
    }
}