/* =============================================================================
   TREEKY RECORDS - CSS PRINCIPAL
   Couleurs: bleu pétrole (#40A9BF), fond noir (#000000)
   Design: épuré, contemporain, novateur
============================================================================= */

/* Variables CSS */
:root {
    --primary-color: #40A9BF;      /* Bleu pétrole */
    --secondary-color: #2E8AA3;    /* Bleu pétrole foncé */
    --accent-color: #52C7DB;       /* Bleu pétrole clair */
    --background-color: #000000;   /* Noir */
    --surface-color: #111111;      /* Noir légèrement gris */
    --text-primary: #ffffff;       /* Blanc */
    --text-secondary: #a3a3a3;     /* Gris clair */
    --text-muted: #737373;         /* Gris */
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --border-radius: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 25px rgba(64, 169, 191, 0.1);
    --shadow-lg: 0 20px 40px rgba(64, 169, 191, 0.15);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

/* Typographie */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* =============================================================================
   NAVIGATION
============================================================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
}

.nav-container {
    display: flex;
    align-items: center;
    min-height: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-left {
    flex: 1;
    padding: 0 2rem;
    margin-right: 2px;
}

.nav-right {
    flex: 2;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
}

.logo svg {
    transition: var(--transition);
}

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

.logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.footer-logo-img {
    height: 30px;
    width: auto;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-left,
    .nav-right {
        padding: 0 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        background: var(--surface-color);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        border-top: 1px solid rgba(64, 169, 191, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
}

/* =============================================================================
   HERO SECTION / CAROUSEL
============================================================================= */

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    width: 500%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    width: 20%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.1),
        rgba(64, 169, 191, 0.1)
    );
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
}

.carousel-btn {
    background: rgba(64, 169, 191, 0.2);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--background-color);
    transform: scale(1.1);
}

.carousel-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.hero-content {
    position: absolute;
    z-index: 10;
    bottom: 4rem;
    right: 8rem;
    text-align: right;
    max-width: 350px;
    padding: 1.4rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(64, 169, 191, 0.2);
}

.hero-title {
    font-size: clamp(2.1rem, 5.6vw, 4.2rem);
    font-weight: 700;
    margin-bottom: 0.7rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(0.84rem, 2.1vw, 1.4rem);
    color: var(--text-secondary);
    margin-bottom: 1.4rem;
}

.hero-wave {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 0 0 auto;   /* aligne à droite */
    border-radius: 2px;
}

/* =============================================================================
   SECTIONS GÉNÉRALES
============================================================================= */

section {
    position: relative;
    padding: 6rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* Section Connectors */
.section-connector {
    position: absolute;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 5;
}

.section-connector.top {
    top: -50px;
}

.section-connector.bottom {
    bottom: -50px;
}

.section-connector::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 48%,
        var(--primary-color) 49%,
        var(--primary-color) 51%,
        transparent 52%
    );
    opacity: 0.1;
}

/* =============================================================================
   SECTION ARTISTES
============================================================================= */

.artists-section {
    background: linear-gradient(135deg, var(--surface-color), var(--background-color));
    position: relative;
    overflow: hidden;
}

.artists-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(64, 169, 191, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(64, 169, 191, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(64, 169, 191, 0.01) 0%, transparent 30%);
    animation: floatParticles 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatParticles {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(90deg); }
    50% { transform: translateY(5px) rotate(180deg); }
    75% { transform: translateY(-5px) rotate(270deg); }
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.artist-card {
    background: rgba(64, 169, 191, 0.05);
    border: 1px solid rgba(64, 169, 191, 0.2);
    border-radius: var(--border-radius);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
}

.artist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(64, 169, 191, 0.1),
        transparent
    );
    transition: left 0.5s;
}

.artist-card:hover::before {
    left: 100%;
}

.artist-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.artist-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 50% 50%, transparent 30%, rgba(0, 0, 0, 0.1) 31%, transparent 32%),
        radial-gradient(circle at 50% 50%, transparent 40%, rgba(0, 0, 0, 0.05) 41%, transparent 42%),
        linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin: 20px auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid rgba(64, 169, 191, 0.3);
    box-shadow: 
        0 0 0 6px rgba(0, 0, 0, 0.8),
        0 0 0 7px rgba(64, 169, 191, 0.2),
        inset 0 0 0 20px rgba(0, 0, 0, 0.1),
        inset 0 0 20px rgba(64, 169, 191, 0.1);
    transition: var(--transition);
}

.artist-card:hover .artist-image {
    transform: rotate(45deg);
    box-shadow: 
        0 0 0 6px rgba(0, 0, 0, 0.8),
        0 0 0 7px rgba(64, 169, 191, 0.4),
        inset 0 0 0 20px rgba(0, 0, 0, 0.1),
        inset 0 0 30px rgba(64, 169, 191, 0.2),
        0 0 40px rgba(64, 169, 191, 0.3);
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: var(--transition);
}

.artist-card:hover .artist-image img {
    transform: rotate(-45deg);
}

.artist-name {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
    font-weight: 600;
}

.artist-genre {
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
}

.artist-description {
    font-size: 0.85rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =============================================================================
   SECTION LABEL
============================================================================= */

.label-section {
    background: var(--background-color);
}

.label-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.label-name {
    color: var(--text-primary); /* blanc */
    margin-bottom: 1.5rem;
    text-align: left;
}

.studio-name {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: left;
}

.label-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.label-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 1.1rem;
}

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

.gallery-item {
    aspect-ratio: 1;
    background: var(--surface-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        transparent,
        rgba(64, 169, 191, 0.3)
    );
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .label-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* =============================================================================
   SECTION LOCALISATION
============================================================================= */

.location-section {
    background: linear-gradient(135deg, var(--surface-color), var(--background-color));
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.location-details {
    margin-top: 2rem;
}

.detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.detail-icon {
    font-size: 1.5rem;
}

.location-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-color) 0%, var(--background-color) 70%);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-pin {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    animation: pulse 2s infinite;
}

.map-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 20px;
    height: 20px;
    background: var(--background-color);
    border-radius: 50%;
}

@keyframes pulse {
    0% { transform: rotate(-45deg) scale(1); }
    50% { transform: rotate(-45deg) scale(1.1); }
    100% { transform: rotate(-45deg) scale(1); }
}

@media (max-width: 768px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-placeholder {
        width: 250px;
        height: 250px;
    }
}

/* =============================================================================
   SECTION FONDATEURS
============================================================================= */

.founders-section {
    background: var(--background-color);
    position: relative;
}

.founders-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(64, 169, 191, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(64, 169, 191, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.founder-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(64, 169, 191, 0.1);
    border-radius: var(--border-radius);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.founder-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.founder-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--background-color);
}

.founder-name {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.founder-role {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-style: italic;
}

/* =============================================================================
   SECTION CONTACT
============================================================================= */

.contact-section {
    background: linear-gradient(135deg, var(--surface-color), var(--background-color));
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(64, 169, 191, 0.05);
    border: 1px solid rgba(64, 169, 191, 0.2);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--primary-color);
    background: rgba(64, 169, 191, 0.1);
}

.contact-icon {
    font-size: 1.5rem;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
  text-decoration: none;
}

.contact-link:hover {
  color: var(--primary-color);
}

.contact-link img {
  width: 24px;
  height: 24px;
  filter: invert(0); /* garde l'icône blanche sur fond noir */
}
/* =============================================================================
   FOOTER
============================================================================= */

.footer {
    background: var(--background-color);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(64, 169, 191, 0.1);
    position: relative;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.footer-info {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

/* =============================================================================
   MODAL
============================================================================= */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--surface-color);
    border: 1px solid rgba(64, 169, 191, 0.2);
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 2rem;
}

/* =============================================================================
   CANVAS THREE.JS
============================================================================= */

#audio-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

/* =============================================================================
   RESPONSIVE
============================================================================= */

@media (max-width: 1024px) {
    section {
        padding: 4rem 0;
    }
    
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        bottom: 2rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
        padding: 1.5rem;
        text-align: center;
    }
    
    .carousel-controls {
        padding: 0 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 600px;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }
    
    .contact-details {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .nav-left,
    .nav-right {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .artists-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 300px;
    }
}

/* Animations et effets */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scrollbar personnalisée */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--background-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* =============================================================================
   STYLES SUPPLÉMENTAIRES POUR LES MODALES ET INTERACTIONS
============================================================================= */

/* Styles pour les modales d'artistes */
.modal-artist {
    padding: 1rem;
}

.modal-artist-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: center;
}

.modal-artist-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-artist-image span {
    font-size: 3rem;
    color: var(--background-color);
}

.modal-artist-info h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.modal-artist-info h3 {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-style: italic;
}

.modal-artist-bio,
.modal-artist-albums,
.modal-artist-tracks,
.modal-artist-social {
    margin-bottom: 2rem;
}

.modal-artist-bio h4,
.modal-artist-albums h4,
.modal-artist-tracks h4,
.modal-artist-social h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(64, 169, 191, 0.2);
    padding-bottom: 0.5rem;
}

.albums-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.album-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: rgba(64, 169, 191, 0.05);
    border-radius: 4px;
    border-left: 3px solid var(--primary-color);
}

.album-title {
    font-weight: 500;
}

.album-year {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.tracks-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.track-item {
    padding: 0.5rem;
    background: rgba(64, 169, 191, 0.05);
    border-radius: 4px;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--background-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.social-icon {
    margin-right: 0.5rem;
    font-size: 1em;
}

.social-link.spotify:hover { background: #1db954; }
.social-link.instagram:hover { background: #e4405f; }
.social-link.youtube:hover { background: #ff0000; }
.social-link.linktr:hover { background: #39e09b; }

/* Styles pour la galerie du studio */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8),
        rgba(64, 169, 191, 0.3)
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    text-align: center;
    padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Styles pour les fondateurs */
.founder-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.skill-tag {
    padding: 0.25rem 0.5rem;
    background: rgba(64, 169, 191, 0.1);
    border: 1px solid rgba(64, 169, 191, 0.3);
    border-radius: 12px;
    font-size: 0.8rem;
    color: var(--primary-color);
}

.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Responsive pour les modales */
@media (max-width: 768px) {
    .modal-artist-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .modal-artist-image {
        width: 100px;
        height: 100px;
    }
    
    .social-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .albums-list,
    .tracks-list {
        gap: 0.25rem;
    }
    
    .founder-expertise {
        justify-content: center;
    }
}

/* Animations d'entrée améliorées */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slideInFromLeft 0.6s ease forwards;
}

.slide-in-right {
    animation: slideInFromRight 0.6s ease forwards;
}

/* Loading state */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

.loaded {
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* Amélioration des focus states pour l'accessibilité */
.nav-link:focus,
.carousel-btn:focus,
.artist-card:focus,
.gallery-item:focus,
.founder-card:focus,
.social-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Performance optimizations */
.artist-card,
.gallery-item,
.founder-card {
    will-change: transform;
}

.carousel-slide {
    will-change: transform;
    backface-visibility: hidden;
}

/* Styles pour les erreurs d'images */
.image-error {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-color);
    font-size: 2rem;
} 
/* Icônes des réseaux sociaux dans la bio artiste */
.icon-img {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    filter: invert(1);
}