/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 0rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo h3 {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #7e6fd3, #91a5f4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.9;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    margin-left: 88px;
}

.logo-image {
    height: 53px;
    width: auto;
    display: block;
}

.viva-letter {
    font-weight: 700;
    font-size: 1.1em;
}

.viva-letter.v1 {
    color: #FF6B6B;
}

.viva-letter.v2 {
    color: #FF8E7E;
}

.viva-letter.v3 {
    color: #7BDBD4;
}

.viva-letter.v4 {
    color: #4ECDC4;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding-top: 50px;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    animation: fadeInUp 1s ease;
}

.hero-content h2 {
    font-size: 2rem;
    line-height: 1;
    margin: 0.2rem 0;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.hero-content .cta-button {
    margin: 0.6rem auto 0.3rem;
    display: inline-block;
}

.cta-button {
    display: inline-block;
    padding: 0.3rem 0.7rem;
    background: #4ECDC4;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    animation: fadeInUp 1s ease 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.cta-button:hover {
    transform: translateY(-3px);
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0.5rem auto 0;
    overflow: visible;
    height: 400px;
}

.carousel {
    position: relative;
    height: 400px;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.virtuality-preview {
    height: var(--carousel-height, 220px);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 0 0.5rem;
}

.virtuality-preview .virtuality-image {
    width: 100%;
    height: 105%;
    object-fit: cover;
    object-position: center -130px;
    transition: transform 0.3s ease;
    background-color: rgba(0, 0, 0, 0.6);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    z-index: 100;
}

.carousel-button:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.carousel-button.prev {
    left: -15px;
}

.carousel-button.next {
    right: -15px;
}

.carousel-button i {
    font-size: 1.5rem;
}

.carousel-progress {
    display: none;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(4, 280px);
    gap: 2rem;
    padding: 2rem;
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.2rem;
    text-align: center;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.info-card-image {
    position: relative;
    width: 100%;
    height: 130px;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.info-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.info-card:hover .info-card-image img {
    transform: scale(1.05);
}

.info-card-image i {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    z-index: 1;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.info-card p {
    font-size: 0.85rem;
    line-height: 1.3;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .info-cards {
        grid-template-columns: 1fr;
    }
}

/* Artists Section */
.artists {
    padding: 3rem 2rem;
    background: #f9f9f9;
    padding-top: 90px;
}

.artists h2, .contact h2 {
    text-align: center;
    font-size: 2.2rem;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.contact .social-links a:nth-child(1) i {
    color: #FF6B6B;
}

.contact .social-links a:nth-child(2) i {
    color: #FF8E7E;
}

.contact .social-links a:nth-child(3) i {
    color: #7BDBD4;
}

.contact .social-links a:nth-child(4) i {
    color: #4ECDC4;
}

.coming-soon-card p {
    opacity: 0.7;
    color: #333;
    font-size: 1rem;
    margin-top: 1rem;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(5, 355px);
    gap: 2rem;
    margin: 0 auto;
    justify-content: center;
}

.coming-soon {
    text-align: center;
    margin-top: 4rem;
}

.coming-soon h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.artist-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding-bottom: 1rem;
    text-align: center;
}

.artist-card h3 {
    font-size: 1.3rem;
    margin: 1rem 0 0.5rem;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.artist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.artist-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
}

.artist-card h3 {
    color: #333;
    font-size: 1.5rem;
}

.artist-image-container {
    position: relative;
}

.artist-card:not(.pioneer-artist) {
    filter: grayscale(0.8);
}

.artist-card > p {
    color: #666;
    margin: 0.2rem 0;
}

.artist-description {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #555;
    border-top: 1px solid #eee;
    text-align: center;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-1 { background: linear-gradient(45deg, #FF6B6B, #FFE66D); }
.placeholder-2 { background: linear-gradient(45deg, #4ECDC4, #556270); }
.placeholder-3 { background: linear-gradient(45deg, #6C5B7B, #C06C84); }

/* Album Styles */
.artist-discography {
    border-top: 1px solid #eee;
    margin-top: 1rem;
}

.album-info {
    display: flex;
    flex-direction: column;
}

.album-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.02);
    margin: 0;
}

.album-line p {
    padding: 0;
}

.album-line i {
    width: 16px;
    text-align: center;
}

.track-count {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #666;
    font-size: 0.9em;}

/* Coming Soon Section */
.coming-soon {
    text-align: center;
    margin-top: 4rem;
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background: #f9f9f9;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-icon {
    font-size: 1.5rem;
    color: #333;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #4ECDC4;
}

/* Home Button */
.home-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.home-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.home-button i {
    font-size: 1.5rem;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1rem;
}

footer .contact-email {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

footer .contact-email a {
    color: #4ECDC4;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Artist Cards */
.artist-image-container {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
}

.artist-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.pioneer-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.pioneer-badge i {
    font-size: 1.2rem;
}

/* Style du badge pioneer */
.pioneer-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.pioneer-badge i {
    font-size: 1.2rem;
}

/* Style de l'info-bulle personnalisée */
.pioneer-badge::after {
    content: attr(title);
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 14px;
    border-radius: 15px;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    color: white;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all 0.2s ease;
}

.pioneer-badge::before {
    content: '';
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    z-index: 1000;
    transition: all 0.2s ease;
}

.pioneer-badge:hover::before,
.pioneer-badge:hover::after {
    visibility: visible;
    opacity: 1;
}

.album-info {
    margin-top: 1rem;
    padding: 1rem 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.album-info p {
    font-size: 0.9rem;
    color: #4ECDC4;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.track-count {
    margin-left: 0.5rem;
    font-size: 0.85em;
    opacity: 0.9;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.track-count i {
    font-size: 0.9em;
}

.album-line {
    cursor: help;
    transition: opacity 0.3s ease;
}

.album-line:hover {
    opacity: 0.9;
}

.album-line.coming-soon {
    opacity: 0.6;
    font-style: italic;
}

.album-line.coming-soon:hover {
    opacity: 0.8;
}

.coming-soon-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.coming-soon-card .artist-image,
.coming-soon-card img {
    filter: grayscale(70%);
}

.info-card.coming-soon-card {
    opacity: 0.7;
    backdrop-filter: grayscale(70%);
    background: rgba(255, 255, 255, 0.08);
}

footer .contact-email a:hover {
    color: #fff;
}

.contact-icons i:nth-child(1) {
    color: #FF6B6B;
}

.contact-icons i:nth-child(2) {
    color: #FF8E7E;
}

.contact-icons i:nth-child(3) {
    color: #7BDBD4;
}

.contact-icons i:nth-child(4) {
    color: #4ECDC4;
}

/* About Section Styles */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0rem;
}

.about-content h2 {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.vision-section, .mission-section {
    margin: 2rem 0;
}

.approach-studio-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.approach-section, .studio-section {
    margin: 0;
}

.approach-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.approach-list li {
    display: flex;
    align-items: center;
    margin: 0.3rem 0;
    font-size: 1.1rem;
    color: #444;
}

.approach-list .emoji {
    margin-right: 1rem;
    font-size: 1.4rem;
}

.approach-list.centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.approach-list.centered li {
    justify-content: center;
}

.studio-intro {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
}

.studio-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.studio-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.studio-list .label {
    font-weight: 500;
    margin-right: 0.5rem;
    color: #4ECDC4;
}

.studio-list .heart {
    color: #FF6B6B;
    margin-left: 0.2rem;
}

.artist-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
    min-height: 280px;
}

.artist-content.flipped {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.card-front, .card-back {
    transform: rotateY(0deg);
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0.5rem 1rem 1rem;
}

.artist-description {
    margin-bottom: auto;
    padding-top: 0.5rem;
}

.artist-description p {
    line-height: 1.5;
    font-size: 1.05em;
}

.card-back {
    transform: rotateY(180deg);
    background: white;
}

.discography-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 1;
    margin: 1rem 0;
}

.flip-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: transform 0.3s, opacity 0.3s;
    width: 140px;
    margin: auto auto 0;
}

.flip-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.discography-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #444;
}

.discography-list li i {
    color: #4ECDC4;
}

.discography-list li.upcoming {
    opacity: 0.7;
    color: #666;
}

.discography-list li.upcoming i {
    color: #666;
}

.artist-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    height: 130px;
}

.artist-discography h4 {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.album-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.album-line.coming-soon {
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

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

/* Media Queries pour le responsive design */
@media (max-width: 768px) {
    .carousel-container {
        display: none;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding-bottom: 2rem;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .hero-content h2 {
        font-size: 1.4rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .info-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 20px;
    }

    .info-card {
        padding: 15px;
    }

    .info-card h3 {
        font-size: 1.1rem;
    }

    .info-card p {
        font-size: 0.9rem;
    }

    .nav-container {
        max-width: 100%;
        padding: 1rem;
        box-sizing: border-box;
        text-align: center;
    }

    .logo {
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
    }

    .logo h3 {
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .nav-links {
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
        margin: 0 auto;
    }

    .artists-grid {
        display: flex;
        flex-direction: column;
    }

    .pioneer-artist {
        order: -1;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 80px;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo h3 {
        display: none;
    }

    .artist-card {
        margin: 10px 0;
    }

    .artist-card h3 {
        font-size: 1.2rem;
    }

    .artist-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }

    .logo {
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }

    .logo h3 {
        display: block;
        margin-top: 0.5rem;
        font-size: 0.8rem;
        margin: -10px 0px;
    }

    .hamburger {
        position: static;
        margin: -3.5rem 38px 30px 20rem;
    }

    .nav-links {
        width: 100%;
        padding: 0;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        padding: 10px;
    }

    .logo {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .logo-text {
        display: block;
        margin: 0 65px;
    }
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 10;
    }
    
    .hamburger .bar {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #333;
        transition: all 0.3s ease-in-out;
    }

    .hamburger span {
        width: 100%;
        height: 3px;
        background: #4ECDC4;
        border-radius: 2px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        align-items: center;
    }

    .info-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .artists-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
  .approach-studio-container {
    flex-direction: column;
    display: block;
  }
}

@media (max-width: 768px) {
  .approach-section, .studio-section {
    display: block;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }

  .approach-section li, .studio-section li {
    font-size: 0.9rem;
  }
}

/* Responsive Design */
/* Resolution Settings */
:root {
    --max-width-content: 1400px;
    --max-width-about: 1000px;
    --artist-image-height: 320px;
    --description-height: 160px;
    --base-font-size: 16px;
    --spacing: 1.5rem;
    --hero-height: 100vh;
    --carousel-height: 400px;
    --card-width: 280px;
    --hero-padding-top: 80px;
}

/* Apply styles */
body {
    font-size: var(--base-font-size);
}

.hero-content,
.info-cards,
.artists-grid {
    max-width: var(--max-width-content);
    gap: var(--spacing);
    padding: calc(var(--spacing) * 0.75);
    margin: 0 auto;
}

.about-content {
    max-width: var(--max-width-about);
}

.artist-image {
    height: var(--artist-image-height, 300px);
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    width: 100%;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-links.active li {
    margin: 0.5rem 0;
}

.discography-list a {
    text-decoration: none;
    color: inherit;
}

.discography-list a:visited {
    color: inherit;
}

/* Retirer l'effet cliqué pour les liens avec la classe no-visited-effect */
.no-visited-effect,
.no-visited-effect:visited,
.no-visited-effect:hover,
.no-visited-effect:active {
    color: inherit !important;
    text-decoration: none !important;
}