/* RESET ET BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: white;
}

/* HEADER ET NAVIGATION */
header {
    background: #FFFFFF;
    color: black;
    padding: 1rem 0;
    border-bottom: 4px solid #FF6B35;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo-image {
    height: 150px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: #FF6B35;
}

/* HERO SECTIONS */
.hero, .page-hero {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('hero-image.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000000;
    height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 2rem;
}

.hero h1, .page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero p, .page-hero p {
    font-size: 1.3rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-weight: bold;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* BOUTONS */
.cta-button {
    background: #FF6B35;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-button:hover {
    background: #E55A2B;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #FF6B35;
    color: white;
}

.cta-button.secondary:hover {
    background: #FF6B35;
}

.cta-button.small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* CONTENU PRINCIPAL */
.presentation, .page-content {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.presentation {
    text-align: center;
}

.presentation h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #000000;
}

.presentation p {
    font-size: 1.2rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* HIGHLIGHTS ACCUEIL */
.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #FF6B35;
    text-align: center;
}

.highlight-card h3 {
    color: #000;
    margin-bottom: 1rem;
}

.highlight-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

/* MISE EN PAGE PHOTO + TEXTE (POUR ELANIA) */
.artist-image {
    float: left;
    width: 35%;
    margin-right: 3rem;
    margin-bottom: 2rem;
}

.artist-info {
    overflow: hidden;
}

.artist-photo {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* PROFIL ARTISTE STRUCTURÉ */
.artist-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.artist-info h2 {
    color: #000;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.artist-info h3 {
    color: #FF6B35;
    margin: 2rem 0 1rem 0;
}

.collaborations-list {
    list-style: none;
    margin: 1rem 0;
}

.collaborations-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

/* PAGE MUSIQUE */
.player-section, .platforms-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.music-player {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.music-player iframe {
    max-width: 600px;
    margin: 0 auto;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.platform-btn, .social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: #000;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.platform-btn:hover, .social-btn:hover {
    background: #FF6B35;
    transform: translateY(-3px);
    border-color: #000;
}

/* COULEURS PLATEFORMES */
.spotify { background: #1DB954; }
.apple { background: #FA243C; }
.bandcamp { background: #629AA9; }
.deezer { background: #FEAA2D; }
.tiktok { background: #000000; }
.amazon { background: #00A8E1; }
.facebook { background: #1877F2; }
.instagram { background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); }

/* PAGE CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: Arial, sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #FF6B35;
    outline: none;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.email-section {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #FF6B35;
}

/* PAGE CONSTRUCTION */
.construction-content {
    text-align: center;
    padding: 2rem;
}

.construction-content h2 {
    font-size: 2.5rem;
    color: #FF6B35;
    margin-bottom: 1rem;
}

.construction-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.construction-animation {
    margin-top: 2rem;
    font-size: 3rem;
}

.construction-animation span {
    display: inline-block;
    animation: bounce 2s infinite;
}

.construction-animation span:nth-child(2) {
    animation-delay: 0.5s;
}

.construction-animation span:nth-child(3) {
    animation-delay: 1s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* FOOTER */
footer {
    background: #000000;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 4px solid #FF6B35;
}

.credit {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #FF6B35;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-links li {
        margin: 0;
    }
    
    .hero h1, .page-hero h1 {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .platform-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .artist-profile {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .highlights {
        grid-template-columns: 1fr;
    }
    
    /* Mise en page mobile pour Elania */
    .artist-image {
        float: none;
        width: 100%;
        margin-right: 0;
        text-align: center;
    }
    
    .artist-info {
        overflow: visible;
    }
}

/* GALERIE POCHEttes */
.artist-gallery {
    margin-bottom: 4rem;
}

.artist-gallery h2 {
    color: #000;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 3px solid #FF6B35;
    padding-bottom: 0.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.cover-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    max-width: 250px;
}

.cover-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cover-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.cover-info {
    padding: 1rem;
    text-align: center;
}

.cover-info h3 {
    color: #000;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cover-info p {
    color: #666;
    font-size: 0.9rem;
}

/* POCHEttes CACHÉES */
.cover-item.hidden {
    opacity: 0.3;
    filter: grayscale(50%);
}

.cover-item.hidden .cover-info h3 {
    color: #999;
    font-style: italic;
}

/* RESPONSIVE GALERIE */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .cover-item {
        max-width: 100%;
    }
}