/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Header principal */
.main-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 15px 20px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Logo */
.logo {
    position: absolute;
    top: 15px;
    left: 20px;
    z-index: 1000;
}

.logo-image {
    height: 75px; /* 3/4 de 100px */
    width: auto;
    max-width: 180px; /* 3/4 de 240px */
    object-fit: contain;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.1);
}

.logo a {
    text-decoration: none;
}

/* Menu hamburger pour mobile */
.mobile-menu-toggle {
    display: none;
    position: absolute;
    top: 25px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

/* Section droite */
.header-right {
    position: absolute;
    top: 15px;
    right: 20px;
    text-align: right;
}

/* Drapeaux */
.language-flags {
    margin-bottom: 8px;
}

.flag {
    font-size: 18px;
    margin: 0 4px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.flag:hover {
    transform: scale(1.2);
}

/* Lien vers réseaux sociaux */
.social-links-btn {
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 5px;
}

.social-links-btn:hover {
    background: #e74c3c;
    transform: translateY(-1px);
}

/* Nom de l'artiste */
.artist-name {
    text-align: center;
    margin: 15px 0 20px 0;
}

.artist-name h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Navigation principale */
.main-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 15px;
    padding-bottom: 10px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
}

.nav-link:hover {
    background: #e74c3c;
    transform: translateY(-2px);
}

.nav-link.active {
    background: #fffacc;
    color: #1a1a1a;
}

/* Menu mobile */
.mobile-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(231, 76, 60, 0.8);
}

/* Contenu principal */
.main-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Image d'accueil */
.home-image {
    text-align: center;
    margin: 60px 0;
}

.home-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Logo revient à sa taille normale sur mobile/tablette */
    .logo-image {
        height: 37px; /* 3/4 de 50px */
        max-width: 90px; /* 3/4 de 120px */
    }
    
    .artist-name h1 {
        font-size: 2rem;
    }
    
    .artist-name {
        margin: 10px 0 15px 0;
    }
    
    .main-nav {
        gap: 20px;
        margin-top: 10px;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 8px 15px;
    }
    
    .header-right {
        right: 15px;
        top: 12px;
    }
    
    .flag {
        font-size: 16px;
        margin: 0 3px;
    }
    
    .social-links-btn {
        font-size: 12px;
        padding: 4px 8px;
    }
}

@media (max-width: 480px) {
    .main-header {
        padding: 15px;
    }
    
    .logo {
        top: 15px;
        left: 15px;
    }
    
    .logo-image {
        height: 30px; /* 3/4 de 40px */
        max-width: 75px; /* 3/4 de 100px */
    }
    
    .mobile-menu-toggle {
        display: block;
        top: 20px;
        right: 15px;
    }
    
    .header-right {
        display: none;
    }
    
    .artist-name {
        margin: 10px 0 15px 0;
    }
    
    .artist-name h1 {
        font-size: 1.8rem;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-nav.active {
        display: flex;
    }
    
    .main-content {
        padding: 0 15px;
    }
}
