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

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    background: #fff;
    margin: 0;
    padding: 0;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 40px;
    height: 1px;
    background: #000;
}

.navbar.menu-open {
    background: #000;
}

.logo {
    margin-left: -20px;
    height: fit-content;
    transition: all 0.5s ease;
}

.logo img {
    height: 100%;
}

.menu-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.5s ease;
}

.navbar.menu-open .menu-toggle {
    color: white;
}

.hamburger {
    margin-left: 15px;
    width: 24px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
    position: absolute;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.menu-open .hamburger span {
    background: white;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 1);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 80px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-item {
    color: white;
    font-size: 4rem;
    font-weight: 400;
    margin: 20px 0;
    cursor: pointer;
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.3s ease;
}

.menu-item:hover {
    color: #ff6b6b;
}

/* Hero Section */
.hero-section {
    margin-top: 80px;
    height: 90vh;
    display: flex;
    background: white;
}

.hero-image {
    flex: 1;
    background: url('../assets/entetes/entete2.png') center/cover;
    background-position: center center;
    position: relative;
    min-height: 400px;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.hero-text {
    max-width: 500px;
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.1;
    font-family: 'Montserrat', sans-serif;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ff9a56;
    font-weight: 600;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-date {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.hero-time {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.hero-button {
    margin-top: 20px;
    padding: 18px 40px;
    background: transparent;
    border: 2px solid #000;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.hero-button:hover {
    background: #000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Content Sections */
.content-section {
    padding: 80px 80px;
    background: white;
    margin-bottom: 0;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
}

.section-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}

.section-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.section-time {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    color: #666;
    font-weight: 600;
    font-size: 1rem;
}

.time-icon {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

.section-text p {
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 10px;
    flex-grow: 1;
    position: relative;
}

/* Pseudo-element pour les ellipsis propres - seulement sur mobile */
.section-text p::after {
    display: none;
}

.discover-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: underline;
    font-weight: 700;
    font-size: 1rem;
    margin-top: auto;
    transition: all 0.3s ease;
    cursor: pointer;
}

.discover-more:hover {
    color: #ff9a56;
    transform: translateX(5px);
}

.discover-arrow {
    width: 18px;
    height: 18px;
    color: #333;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.discover-more:hover .discover-arrow {
    transform: translateX(4px);
    color: #ff9a56;
}

.section-image {
    height: 400px;
    background: #f0f0f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.2rem;
    font-weight: 600;
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Image Separators - Correction avec fallback */
.image-separator {
    width: 100%;
    height: 40px;
    background: url('../assets/pattern/separateur-vert.png') center/cover;
    background-color: #ffffff; /* Fond blanc */
    margin: 0;
    position: relative;
    overflow: hidden;
}

.image-separator:nth-child(even) {
    background: url('../assets/pattern/separateur-vert.png') center/cover;
    background-color: #ffffff; /* Fond blanc */
}

/* Footer Partners Image */
.footer-partners-image {
    height: 32px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 4px;
}

.footer-partners-image:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Partners Popup */
.partners-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.partners-popup.active {
    display: flex;
}

.partners-popup-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.partners-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #333;
    font-weight: 300;
}

.partners-popup-close:hover {
    color: #000;
}

.partners-popup h2 {
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partners-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.partner-item {
    background: #f8f8f8;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #333;
    transition: all 0.3s ease;
    cursor: pointer;
}

.partner-item:hover {
    background: #333;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.partner-item a {
    text-decoration: none;
    color: inherit;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    display: block;
}

@media (max-width: 768px) {
    .partners-popup-content {
        padding: 20px 15px;
        width: 95%;
        max-width: 90vw;
        max-height: 85vh;
        margin: 10px;
        border-radius: 10px;
    }

    .partners-popup h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .partners-popup-close {
        top: 10px;
        right: 15px;
        font-size: 24px;
    }

    .partners-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .partner-item {
        padding: 10px 12px;
        font-size: 14px;
        border-radius: 6px;
    }

    .partner-item a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .partners-popup-content {
        padding: 15px 10px;
        width: 98%;
        max-width: 95vw;
        margin: 5px;
    }

    .partners-popup h2 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .partners-list {
        gap: 6px;
    }

    .partner-item {
        padding: 8px 10px;
        font-size: 13px;
    }

    .partner-item a {
        font-size: 13px;
    }
}

/* Nouveau Footer */
.footer {
    background: #e8e8e8;
    color: #333;
    padding: 0;
    margin: 0;
    width: 100%;
    padding: 60px 80px 0 80px;
    box-sizing: border-box;
}
.footer-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    border-top: 2px solid #222;
    border-bottom: 2px solid #222;
    min-height: 70px;
    background: #e8e8e8;
    margin-bottom: 0;
    box-sizing: border-box;
}
.footer-socials {
    display: flex;
    gap: 30px;
    align-items: center;
}
.footer-social-icon {
    width: 32px;
    height: 32px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
    transition: background 0.2s;
    overflow: hidden;
}
.social-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.footer-social-icon:hover {
    background: #4CAF50;
}
.footer-partners {
    display: flex;
    align-items: center;
    gap: 30px;
}
.footer-partner-icon {
    height: 30px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.footer-partner-icon:hover {
    opacity: 1;
}
.footer-copyright {
    text-align: center;
    padding: 30px 0 20px 0;
    color: #666;
    font-size: 14px;
    border-top: 1px solid #ccc;
    background: #e8e8e8;
    margin: 0 60px;
}

/* Suppression de l'ancien social-bar et footer */
.social-bar, .footer-bottom, .footer-newsletter, .footer-col, .footer-member-section { display: none !important; }

/* Responsive Footer */
@media (max-width: 900px) {
    .footer {
        padding: 40px 30px 0 30px;
    }
    .footer-top {
        padding-left: 30px;
        padding-right: 30px;
    }
    .footer-copyright {
        margin: 0 30px;
    }
}
@media (max-width: 600px) {
    .footer {
        padding: 20px 15px 0 15px;
    }
    .footer-top {
        padding-left: 15px;
        padding-right: 15px;
        flex-direction: column;
        gap: 15px;
        min-height: 0;
        padding-top: 15px;
        padding-bottom: 15px;
        margin-top: 20px;
    }
    .footer-socials {
        gap: 20px;
    }
    .footer-partners {
        gap: 20px;
    }
    .footer-partners-image {
        height: 18px;
        max-width: 90%;
    }
    .footer-copyright {
        margin: 0 15px;
    }
}

/* Tablette Portrait */
@media (max-width: 900px) and (min-width: 769px) {
    .artist-bio-section {
        margin: 0 30px;
        padding: 60px 40px;
        background: #fff;
        height: auto;
        max-height: none;
    }

    .artist-bio-container {
        grid-template-columns: 250px 1fr;
        gap: 40px;
    }

    .artist-bio-image {
        border: 3px solid #000;
      
    }

    .artist-bio-image img {
        min-height: 350px;
        
    }

    .artist-bio-header h2 {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .artist-bio-subtitle {
        font-size: 1rem;
    }

    .artist-identity-card {
        padding: 20px;
        border: 3px solid #000;
        gap: 12px;
    }

    .identity-item {
        padding: 10px 0;
    }

    .identity-label {
        font-size: 0.85rem;
        width: 90px;
    }

    .identity-value {
        font-size: 0.9rem;
    }

    .artist-story {
        padding: 20px;
        border: 3px solid #000;
    }

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

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

    .artist-faq {
        padding: 20px;
        border: 3px solid #000;
    }

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

    .faq-question {
        font-size: 0.9rem;
    }

    .faq-answer p {
        font-size: 0.85rem;
    }
}

/* Responsive Mobile */
@media (max-width: 768px) {
    /* Force mobile styles for artist bio */
    body .artist-bio-section {
        margin: 0 15px !important;
        padding: 20px 15px !important;
        border: 3px solid #000 !important;
        background: #fff !important;
        height: auto !important;
        max-height: none !important;
    }

    body .artist-bio-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        max-width: 100% !important;
        height: auto !important;
    }

    body .artist-bio-image {
        width: 100% !important;
        height: 300px !important;
        border: 2px solid #000 !important;
        margin-bottom: 0 !important;
        order: 2 !important;
        position: relative !important;
    }

    body .artist-bio-image img {
        height: 300px !important;
        width: 100% !important;
        object-fit: contain !important;
    }

    body .artist-bio-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        height: auto !important;
        overflow-y: visible !important;
        padding-right: 0 !important;
        order: 3 !important;
    }

    body .artist-bio-header {
        order: 1 !important;
        text-align: center !important;
        margin-bottom: 15px !important;
    }

    /* Mobile specific identity card */
    body .identity-item {
        display: block !important;
        padding: 8px 0 !important;
        border-bottom: 1px solid #ddd !important;
    }

    body .identity-label {
        font-size: 0.75rem !important;
        font-weight: 800 !important;
        text-transform: uppercase !important;
        color: #000 !important;
        display: block !important;
        margin-bottom: 3px !important;
    }

    body .identity-value {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
        color: #333 !important;
        display: block !important;
    }

    /* Navbar Mobile */
    .navbar {
        padding: 0 15px;
        height: 60px;
    }

    .navbar::after {
        left: 15px;
        right: 15px;
    }

    .logo {
        height: 50px;
        margin-left: 5px;
    }

    .logo img {
        height: 100%;
    }

    #menuText {
        display: none;
    }

    .hamburger {
        margin-left: 0;
        width: 28px;
        height: 22px;
    }

    .hamburger span {
        height: 3px;
    }

    .menu-overlay {
        padding-left: 30px;
    }

    .menu-item {
        font-size: 2rem;
        margin: 12px 0;
    }

    /* Hero Section Mobile */
    .hero-section {
        margin-top: 60px;
        flex-direction: column;
        height: auto;
        min-height: auto;
        max-height: none;
    }

    .hero-image {
        flex: none;
        width: 100%;
        height: 50vh;
        min-height: 300px;
        order: 1;
        background-size: cover;
        background-position: center;
    }

    .hero-content {
        flex: none;
        width: 100%;
        padding: 30px 20px;
        order: 2;
    }

    .hero-text {
        max-width: none;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 25px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        letter-spacing: 1px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
        line-height: 1.6;
        text-align: left;
    }

    .hero-date {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .hero-time {
        font-size: 1rem;
    }

    .hero-button {
        margin-top: 30px;
        padding: 18px 40px;
        font-size: 14px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }

    /* Content Sections Mobile */
    .content-section {
        padding: 40px 15px;
    }

    .section-container {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        max-width: 100%;
    }

    .section-text {
        min-height: auto;
        padding: 10px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .section-text h2 {
        font-size: 1.4rem;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .section-time {
        margin-bottom: 15px;
        font-size: 0.8rem;
    }

    .time-icon {
        width: 14px;
        height: 14px;
    }

    .section-text p {
        font-size: 0.7rem;
        margin-bottom: 8px;
        /* Limitation de hauteur seulement sur mobile */
        --lines: 4;
        --line-height: 1.4;
        max-height: calc(var(--lines) * var(--line-height) * 1em);
        overflow: hidden;
    }

    /* Pseudo-element pour les ellipsis propres - seulement sur mobile */
    .section-text p::after {
        content: '...';
        position: absolute;
        bottom: 0;
        right: 0;
        background: linear-gradient(to right, transparent, white 50%);
        padding-left: 1em;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.2s ease;
        display: block;
    }

    /* Activation des ellipsis seulement quand nécessaire */
    .section-text p.text-overflow::after {
        opacity: 1;
    }

    .discover-more {
        font-size: 0.8rem;
        margin-top: 15px;
    }

    .discover-arrow {
        width: 16px;
        height: 16px;
    }

    .section-image {
        height: 300px;
        border-radius: 6px;
    }

    /* Image Separators Mobile */
    .image-separator {
        height: 30px;
    }

    /* Action Buttons Mobile */
    .action-buttons {
        padding: 40px 20px 60px 20px;
    }

    .action-btn {
        width: 100%;
        max-width: none;
        padding: 18px 30px;
        font-size: 14px;
    }

    /* Footer Mobile - Style Accordion */
    .footer {
        padding: 40px 20px 0 20px;
    }

    .footer-top {
        padding: 20px 0;
        flex-direction: column;
        gap: 20px;
        min-height: auto;
    }

    .footer-socials {
        gap: 20px;
    }

    .footer-bottom {
        padding: 40px 0 20px 0;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .footer-col {
        border-bottom: 1px solid #ccc;
        min-width: auto;
        max-width: none;
    }

    .footer-col:last-child {
        border-bottom: none;
    }

    .footer-col h4 {
        font-size: 1.1rem;
        margin: 0;
        padding: 20px 0;
        cursor: pointer;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-col h4::after {
        content: '+';
        font-size: 1.5rem;
        font-weight: 300;
        transition: transform 0.3s ease;
    }

    .footer-col.active h4::after {
        transform: rotate(45deg);
    }

    .footer-col-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }

    .footer-col.active .footer-col-content {
        max-height: 500px;
        padding-bottom: 20px;
    }

    .footer-col p {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .footer-member-section {
        margin-top: 20px;
        padding-top: 20px;
    }

    .footer-member-section h4 {
        font-size: 1rem;
        margin-bottom: 15px;
        padding: 0;
        cursor: default;
        justify-content: flex-start;
    }

    .footer-member-section h4::after {
        display: none;
    }

    .footer-copyright {
        margin: 0;
        padding: 20px 0 15px 0;
        font-size: 12px;
    }

    /* Sticky Member Button Mobile - EXACT copy from index */
    .sticky-member {
        width: 100px;
        height: 100px;
        bottom: -15px;
        right: -15px;
        font-size: 11px;
    }

    /* Artist Bio Section Mobile */
    .artist-bio-section {
        margin: 0 15px !important;
        padding: 20px 15px !important;
        border: 3px solid #000 !important;
        background: #fff !important;
        height: auto !important;
        max-height: none !important;
    }

    .artist-bio-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        max-width: 100% !important;
        height: auto !important;
    }

    .artist-bio-image {
        width: 100%;
        height: 250px;
        border: 2px solid #000;
        margin-bottom: 0;
        order: 1;
    }

    .artist-bio-image img {
        height: 250px;
        width: 100%;
        object-fit: contain;
    }

    .artist-bio-overlay {
        padding: 12px;
        border-top: 2px solid #fff;
        background: #EE740F;
    }

    .artist-bio-overlay h3 {
        font-size: 1rem;
        margin-bottom: 3px;
        letter-spacing: 0.5px;
        color: white;
    }

    .artist-bio-overlay p {
        font-size: 0.8rem;
        color: white;
        opacity: 0.9;
    }

    .artist-bio-content {
        display: flex;
        flex-direction: column;
        gap: 15px;
        height: auto;
        overflow-y: visible;
        padding-right: 0;
        order: 2;
    }

    .artist-bio-header {
        text-align: center;
        margin-bottom: 15px;
    }

    .artist-bio-header h2 {
        font-size: 1.4rem;
        letter-spacing: 0.5px;
        margin-bottom: 5px;
        line-height: 1.1;
    }

    .artist-bio-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0;
    }

    .artist-identity-card {
        padding: 15px;
        border: 2px solid #000;
        margin-bottom: 0;
    }

    .identity-item {
        display: block;
        padding: 8px 0;
        border-bottom: 1px solid #ddd;
    }

    .identity-item:last-child {
        border-bottom: none;
    }

    .identity-label {
        font-size: 0.75rem;
        font-weight: 800;
        text-transform: uppercase;
        color: #000;
        display: block;
        margin-bottom: 3px;
    }

    .identity-value {
        font-size: 0.8rem;
        line-height: 1.3;
        color: #333;
        display: block;
    }

    .artist-story {
        padding: 15px;
        border: 2px solid #000;
        margin-bottom: 0;
    }

    .artist-story h3 {
        font-size: 1rem;
        margin-bottom: 10px;
        letter-spacing: 0.5px;
    }

    .artist-story-content {
        position: relative;
    }

    .artist-story-content.collapsed {
        max-height: 120px;
        overflow: hidden;
    }

    .artist-story-content.collapsed::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 30px;
        background: linear-gradient(transparent, white);
        pointer-events: none;
    }

    .artist-story p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .artist-story p:last-child {
        margin-bottom: 0;
    }

    .story-toggle-btn {
        background: none;
        border: none;
        color: #4da86a;
        font-weight: 700;
        font-size: 0.8rem;
        cursor: pointer;
        padding: 10px 0 0 0;
        text-decoration: underline;
        text-align: center;
        width: 100%;
        transition: all 0.3s ease;
    }

    .story-toggle-btn:hover {
        color: #000;
    }

    .artist-faq {
        padding: 15px;
        border: 2px solid #000;
    }

    .artist-faq h3 {
        font-size: 1rem;
        margin-bottom: 10px;
        letter-spacing: 0.5px;
    }

    .faq-item {
        margin-bottom: 10px;
        border-bottom: 1px solid #ddd;
    }

    .faq-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .faq-question {
        font-size: 0.8rem;
        padding: 10px 0;
        line-height: 1.3;
        font-weight: 600;
        border-bottom: 1px solid #ccc;
    }

    .faq-question:active {
        background: rgba(0, 0, 0, 0.05);
    }

    .faq-icon {
        font-size: 1.1rem;
        margin-left: 8px;
    }

    .faq-answer {
        padding: 0 0 10px 0;
    }

    .faq-answer p {
        font-size: 0.75rem;
        padding-right: 0;
        line-height: 1.4;
        margin: 0;
        color: #444;
    }
}

/* Très petit mobile */
@media (max-width: 480px) {
    /* Force mobile styles for artist bio - very small */
    body .artist-bio-section {
        margin: 0 10px !important;
        padding: 15px 10px !important;
        border: 2px solid #000 !important;
        background: #fff !important;
        height: auto !important;
        max-height: none !important;
    }

    body .artist-bio-image {
        height: 260px !important;
        border: 2px solid #000 !important;
        margin-bottom: 0 !important;
        order: 2 !important;
    }

    body .artist-bio-image img {
        height: 260px !important;
        object-fit: contain !important;
    }

    body .artist-bio-header {
        order: 1 !important;
        text-align: center !important;
        margin-bottom: 15px !important;
    }

    body .artist-bio-content {
        order: 3 !important;
    }

    .navbar {
        padding: 0 10px;
    }

    .navbar::after {
        left: 10px;
        right: 10px;
    }

    .logo {
        height: 45px;
        margin-left: 2px;
    }

    .hamburger {
        width: 26px;
        height: 20px;
    }

    .menu-overlay {
        padding-left: 20px;
    }

    .menu-item {
        font-size: 1.8rem;
        margin: 10px 0;
    }

    .hero-section {
        height: fit-content;
    }

    .hero-image {
        flex: 0 0 55%;
    }

    .hero-content {
        flex: 0 0 45%;
        padding: 12px 8px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .hero-description {
        font-size: 0.75rem;
    }

    .content-section {
        padding: 30px 10px;
    }

    .section-container {
        gap: 10px;
    }

    .section-text {
        padding: 5px;
    }

    .section-text h2 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .section-time {
        font-size: 0.7rem;
        margin-bottom: 12px;
    }

    .time-icon {
        width: 12px;
        height: 12px;
    }

    .section-text p {
        font-size: 0.7rem;
        margin-bottom: 8px;
        /* Réduire à 3 lignes pour très petit mobile */
        -webkit-line-clamp: 3;
    }

    .discover-more {
        font-size: 0.7rem;
        margin-top: 12px;
    }

    .section-image {
        height: 220px;
        border-radius: 4px;
    }

    .discover-arrow {
        width: 14px;
        height: 14px;
    }

    .action-buttons {
        padding: 30px 15px 50px 15px;
    }

    /* Artist Bio Section Very Small Mobile */
    .artist-bio-section {
        margin: 0 10px;
        padding: 15px 10px;
        border: 2px solid #000;
        background: #fff;
        height: auto;
        max-height: none;
    }

    .artist-bio-image {
        height: 220px;
        border: 2px solid #000;
        margin-bottom: 0;
    }

    .artist-bio-image img {
        height: 220px;
        object-fit: contain;
    }

    .artist-bio-overlay {
        padding: 10px;
        background: #4da86a;
        border-top: 2px solid #fff;
    }

    .artist-bio-overlay h3 {
        font-size: 0.9rem;
        margin-bottom: 2px;
        letter-spacing: 0.5px;
        color: white;
    }

    .artist-bio-overlay p {
        font-size: 0.7rem;
        color: white;
        opacity: 0.9;
    }

    .artist-bio-header {
        margin-bottom: 12px;
    }

    .artist-bio-header h2 {
        font-size: 1.2rem;
        margin-bottom: 3px;
        line-height: 1.1;
        letter-spacing: 0.5px;
    }

    .artist-bio-subtitle {
        font-size: 0.8rem;
    }

    .artist-identity-card {
        padding: 12px;
        border: 2px solid #000;
        margin-bottom: 0;
    }

    .identity-item {
        padding: 6px 0;
    }

    .identity-label {
        font-size: 0.7rem;
        margin-bottom: 2px;
    }

    .identity-value {
        font-size: 0.75rem;
        line-height: 1.2;
    }

    .artist-story {
        padding: 12px;
        border: 2px solid #000;
        margin-bottom: 0;
    }

    .artist-story h3 {
        font-size: 0.9rem;
        margin-bottom: 8px;
        letter-spacing: 0.5px;
    }

    .artist-story-content.collapsed {
        max-height: 100px;
        overflow: hidden;
    }

    .artist-story p {
        font-size: 0.75rem;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .artist-story p:last-child {
        margin-bottom: 0;
    }

    .story-toggle-btn {
        font-size: 0.75rem;
        padding: 8px 0 0 0;
    }

    .artist-faq {
        padding: 12px;
        border: 2px solid #000;
    }

    .artist-faq h3 {
        font-size: 0.9rem;
        margin-bottom: 8px;
        letter-spacing: 0.5px;
    }

    .faq-item {
        margin-bottom: 8px;
    }

    .faq-question {
        font-size: 0.75rem;
        padding: 8px 0;
        line-height: 1.2;
        font-weight: 700;
        border-bottom: 1px solid #ccc;
    }

    .faq-question:active {
        background: rgba(0, 0, 0, 0.05);
    }

    .faq-icon {
        font-size: 1rem;
        margin-left: 6px;
    }

    .faq-answer {
        padding: 0 0 8px 0;
    }

    .faq-answer p {
        font-size: 0.7rem;
        padding-right: 0;
        line-height: 1.3;
        color: #444;
    }
}

/* Artist Bio Section - Desktop First */
.artist-bio-section {
    background: #fff;
    padding: 30px;
    margin: 80px auto 0 auto;
    border: 4px solid #000;
    position: relative;
    max-width: 1100px;
    max-height: 90vh;
    height: 90vh;
    overflow: hidden;
}

.artist-bio-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 30px;
    height: 100%;
    max-width: 100%;
    margin: 0 auto;
    grid-template-areas: 
        "image header"
        "image content";
}

.artist-bio-image {
    grid-area: image;
    position: relative;
    border: 4px solid #000;
    background: #fff;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-bio-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.artist-bio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #4da86a;
    color: white;
    padding: 15px;
    text-align: center;
    border-top: 2px solid #fff;
}

.artist-bio-overlay h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.artist-bio-overlay p {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
    font-style: italic;
    margin: 0;
}

.artist-bio-header {
    grid-area: header;
    color: #000;
}

.artist-bio-content {
    grid-area: content;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: #000;
    height: 100%;
    overflow-y: auto;
    padding-right: 10px;
}

.artist-bio-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    line-height: 1.1;
}

.artist-bio-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.8);
    font-style: italic;
    margin-bottom: 15px;
}

.artist-identity-card {
    background: #fff;
    border: 3px solid #000;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.identity-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
}

.identity-item:last-child {
    border-bottom: none;
}

.identity-label {
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #000;
    flex-shrink: 0;
    width: 80px;
}

.identity-value {
    font-weight: 500;
    font-size: 0.85rem;
    line-height: 1.3;
    color: #333;
}

.artist-story {
    background: #fff;
    border: 3px solid #000;
    padding: 15px;
}

.artist-story h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.artist-story p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #333;
}

.artist-story p:last-child {
    margin-bottom: 0;
}

.story-toggle-btn {
    display: none; /* Masqué sur desktop */
}

.artist-faq {
    background: #fff;
    border: 3px solid #000;
    padding: 15px;
}

.artist-faq h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 6px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    cursor: pointer;
    color: #000;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #4da86a;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 800;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    color: #000;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 0 0 8px 0;
}

.faq-item.active .faq-answer {
    max-height: 150px;
    opacity: 1;
}

.faq-answer p {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #333;
    margin: 0;
    padding-right: 20px;
}

/* Sticky Member Button */
.sticky-member {
    position: fixed;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    z-index: 900;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.sticky-member:hover {
    animation: epileptic-effect 0.50s infinite;
}

@keyframes epileptic-effect {
    0% { background: #000; color: white; }
    25% { background: #ff0000; color: black; }
    50% { background: #00ff00; color: white; }
    75% { background: #0000ff; color: yellow; }
    100% { background: #ffff00; color: black; }
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 80px 0;
    background: #ffffff;
}

.action-btn {
    padding: 20px 40px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    width: 300px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    line-height: 1.2;
    position: relative;
    z-index: 10;
}

.action-btn.primary {
    background: #000;
    color: white;
}

.action-btn.secondary {
    background: white;
    color: #000;
    border: 2px solid #000;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.action-btn:focus {
    outline: 2px solid #4CAF50;
    outline-offset: 2px;
}

/* Page-specific styles for Sono Mondiale */
.sono-mondiale-page .hero-image {
    background: url('../assets/entetes/entete1.png') center/cover;
}

.sono-mondiale-page .image-separator {
    background: url('../assets/pattern/séparateur1.png') center/cover;
}

.sono-mondiale-page .image-separator:nth-child(even) {
    background: url('../assets/pattern/séparateur1.png') center/cover;
}

.sono-mondiale-page .artist-bio-overlay {
    background: #f86f43;
}

.sono-mondiale-page .faq-question:hover {
    color: #f86f43;
}

.sono-mondiale-page .story-toggle-btn {
    color: #f86f43;
}

/* Page-specific styles for Groove to House Music */
.groove-house-page .hero-image {
    background: url('../assets/entetes/entete4.png') center/cover;
}

.groove-house-page .image-separator {
    background: url('../assets/pattern/séparateur-Rose.png') center/cover;
}

.groove-house-page .image-separator:nth-child(even) {
    background: url('../assets/pattern/séparateur-Rose.png') center/cover;
}

.groove-house-page .artist-bio-overlay {
    background: #ec356e;
}

.groove-house-page .faq-question:hover {
    color: #ec356e;
}

.groove-house-page .story-toggle-btn {
    color: #ec356e;
}

/* Page-specific styles for Techno to Hardcore */
.techno-hardcore-page .hero-image {
    background: url('../assets/entetes/entete3.png') center/cover;
}

.techno-hardcore-page .image-separator {
    background: url('../assets/pattern/séparateur-bleu.png') center/cover;
}

.techno-hardcore-page .image-separator:nth-child(even) {
    background: url('../assets/pattern/séparateur-bleu.png') center/cover;
}

.techno-hardcore-page .artist-bio-overlay {
    background: #4c4a9d;
}

.techno-hardcore-page .faq-question:hover {
    color: #4c4a9d;
}

.techno-hardcore-page .story-toggle-btn {
    color: #4c4a9d;
}

/* Page-specific styles for Festival Reporté */
.festival-reporte-page .hero-image {
    background: url('../assets/images/festivalclose.webp') center/cover !important;
    background-position: center center !important;
}

.festival-reporte-page .image-separator {
    background: url('../assets/pattern/séparateur1.png') center/cover;
    background-color: #ffffff;
}

.festival-reporte-page .image-separator:nth-child(even) {
    background: url('../assets/pattern/séparateur1.png') center/cover;
    background-color: #ffffff;
}

/* Mobile responsiveness for festival reporté */
@media (max-width: 768px) {
    .festival-reporte-page .content-section {
        padding: 40px 20px !important;
    }
    
    .festival-reporte-page .content-section > div {
        max-width: 100% !important;
    }
    
    .festival-reporte-page .content-section h2 {
        font-size: 1.8rem !important;
        margin-bottom: 25px !important;
    }
    
    .festival-reporte-page .content-section div[style*="text-align: left"] {
        font-size: 1rem !important;
    }
    
    .festival-reporte-page .content-section p {
        margin-bottom: 20px !important;
    }
    
    .festival-reporte-page .content-section p[style*="font-size: 1.2rem"] {
        font-size: 1.1rem !important;
    }
    
    .festival-reporte-page .content-section p[style*="font-size: 1.3rem"] {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    .festival-reporte-page .content-section {
        padding: 30px 15px !important;
    }
    
    .festival-reporte-page .content-section h2 {
        font-size: 1.5rem !important;
        margin-bottom: 20px !important;
    }
    
    .festival-reporte-page .content-section div[style*="text-align: left"] {
        font-size: 0.9rem !important;
    }
    
    .festival-reporte-page .content-section p[style*="padding: 20px"] {
        padding: 15px !important;
        font-size: 1rem !important;
    }
    
    /* Adaptation mobile pour la flèche */
    .festival-reporte-page .arrow-circle {
        width: 50px;
        height: 50px;
        border: 2px solid #000;
    }
    
    .festival-reporte-page .arrow-circle div {
        font-size: 1.2rem !important;
    }
}

/* Désactiver les liens du menu pour la page festival reporté */
.festival-reporte-page .menu-item {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
}

.festival-reporte-page .menu-item:hover {
    color: rgba(255, 255, 255, 0.5);
    transform: none;
}

.festival-reporte-page .logo {
    cursor: default;
    pointer-events: none;
}

/* Animation pour la flèche vers le bas */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Cercle pour la flèche - style cohérent avec la DA */
.arrow-circle {
    width: 60px;
    height: 60px;
    border: 3px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arrow-circle:hover {
    background: #000;
    transform: translateY(-2px);
}

.arrow-circle:hover div {
    color: white !important;
}

