@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@600;700&display=swap');

/* Animations et effets */
html {
    scroll-behavior: smooth;
}

/* Notes de musique flottantes */
.floating-notes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.note {
    position: absolute;
    font-size: 50px;
    color: rgba(212, 165, 116, 0.15);
    animation-duration: 15s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.note-1 {
    left: 5%;
    animation-name: float1;
    animation-delay: 0s;
}

.note-2 {
    left: 15%;
    animation-name: float2;
    animation-delay: 2s;
}

.note-3 {
    left: 30%;
    animation-name: float1;
    animation-delay: 4s;
}

.note-4 {
    left: 45%;
    animation-name: float2;
    animation-delay: 1s;
}

.note-5 {
    left: 60%;
    animation-name: float1;
    animation-delay: 3s;
}

.note-6 {
    left: 75%;
    animation-name: float2;
    animation-delay: 5s;
}

.note-7 {
    left: 85%;
    animation-name: float1;
    animation-delay: 2.5s;
}

.note-8 {
    left: 92%;
    animation-name: float2;
    animation-delay: 4.5s;
}

@keyframes float1 {
    0% {
        top: -10%;
        transform: translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 110%;
        transform: translateX(20px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes float2 {
    0% {
        top: -10%;
        transform: translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 110%;
        transform: translateX(-20px) rotate(-360deg);
        opacity: 0;
    }
}

/* Reset et base */

:root {
    --primary-bg: #1a2332;
    --secondary-bg: #263447;
    --accent-color: #d4a574;
    --accent-hover: #e5b883;
    --text-primary: #e8e8e8;
    --text-secondary: #b0c4de;
    --white: #ffffff;
    --soundcloud: #ff5500;
    --facebook: #1877f2;
    --youtube: #ff0000;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--primary-bg);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}
    z-index: 0;
}

body::after {
    content: '♪ ♫ ♩ ♬ 🎵 🎶';
    position: fixed;
    top: -50px;
    left: 0;
    width: 100%;
    height: 120%;
    font-size: 40px;
    color: rgba(212, 165, 116, 0.08);
    word-spacing: 150px;
    line-height: 200px;
    animation: floatingNotes 60s linear infinite;
    pointer-events: none;
    z-index: 1;
    white-space: pre-wrap;
}

@keyframes floatingNotes {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
    }
}

body > * {
    position: relative;
    z-index: 2;
}

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

/* Header - Navigation discrète */
header {
    background: #000000;
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 25px;
}

.logo img {
    height: 100px;
    width: auto;
    filter: brightness(1.15) drop-shadow(0 4px 15px rgba(212, 165, 116, 0.5));
    transition: transform 0.2s, filter 0.2s;
}

.logo img:hover {
    transform: scale(1.05);
    filter: brightness(1.25) drop-shadow(0 4px 20px rgba(212, 165, 116, 0.7));
}

.site-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--accent-color);
    margin: 0;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(212, 165, 116, 0.3);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-title .tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 5px 0 0 0;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 2px;
    opacity: 0.85;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.2s;
}

nav a:hover,
nav a.active {
    color: var(--accent-color);
}

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

/* Hero Section */
.hero {
    background: linear-gradient(180deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(212, 165, 116, 0.02) 100px,
            rgba(212, 165, 116, 0.02) 101px
        );
    animation: slideLines 20s linear infinite;
    pointer-events: none;
}

@keyframes slideLines {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100px);
    }
}

.hero-content {
    margin-bottom: 50px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #d4a574 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    letter-spacing: -0.5px;
    animation: fadeInUp 1s ease-out, gradientShift 4s ease infinite;
    filter: drop-shadow(0 2px 10px rgba(212, 165, 116, 0.3));
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(212, 165, 116, 0.3);
    }
    50% {
        text-shadow: 0 0 30px rgba(212, 165, 116, 0.6), 0 0 40px rgba(212, 165, 116, 0.4);
    }
}

.hero .subtitle {
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.email-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 1rem;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 2px;
    transition: opacity 0.2s;
}

.email-link:hover {
    opacity: 0.7;
}

.hero-image {
    margin-top: 40px;
}

.hero-image {
    position: relative;
    perspective: 1000px;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 12px;
    animation: soundWave 2s ease-out infinite;
}

@keyframes soundWave {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.8;
    }
    100% {
        width: 110%;
        height: 110%;
        opacity: 0;
    }
}

.hero-image img {
    max-width: 900px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 20px 80px rgba(212, 165, 116, 0.2);
    border: 2px solid rgba(212, 165, 116, 0.25);
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
}

.hero-image:hover img {
    transform: translateY(-10px) scale(1.02);
}

/* Social Links Section */
.social-links {
    padding: 60px 20px;
    background: var(--secondary-bg);
}

.social-links h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--white);
    font-weight: 600;
    position: relative;
    display: inline-block;
    width: 100%;
}

.social-links h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    animation: expandLine 2s ease-out forwards;
}

@keyframes expandLine {
    to {
        width: 120px;
    }
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-social {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-social::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-social:hover::before {
    width: 300px;
    height: 300px;
}

.btn-social:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    animation: pulse 0.5s ease;
}

@keyframes pulse {
    0%, 100% {
        transform: translateY(-2px) scale(1.05);
    }
    50% {
        transform: translateY(-2px) scale(1.08);
    }
}

.btn-social.soundcloud {
    background-color: var(--soundcloud);
}

.btn-social.facebook {
    background-color: var(--facebook);
}

.btn-social.youtube {
    background-color: var(--youtube);
}

/* About Preview Section */
.about-preview {
    padding: 100px 20px;
    text-align: center;
    background: var(--primary-bg);
    position: relative;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--accent-color), transparent);
}

.about-preview h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--white);
    font-weight: 600;
    animation: fadeInUp 0.8s ease-out;
}

.about-preview p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 40px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.4);
}

/* Content Sections */
.content-section {
    padding: 80px 20px;
    background: var(--secondary-bg);
}

.content-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--white);
    text-align: center;
    font-weight: 600;
    position: relative;
}

.content-section h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-color);
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin: 40px 0 20px;
    color: var(--accent-color);
    font-weight: 600;
}

.content-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Gallery Grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    background: rgba(38, 52, 71, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(212, 165, 116, 0.15);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(212, 165, 116, 0.15) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: all 0.6s;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212, 165, 116, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover::before {
    left: 100%;
}

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

.gallery-item:hover {
    transform: translateY(-12px) rotateX(5deg) scale(1.03);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 30px 60px rgba(212, 165, 116, 0.2),
        inset 0 0 60px rgba(212, 165, 116, 0.05);
    border-color: rgba(212, 165, 116, 0.5);
}

.gallery-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--accent-color);
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.gallery-item:hover h3 {
    transform: translateX(5px);
}

.gallery-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    max-width: 650px;
    margin: 0 auto;
    background: rgba(38, 52, 71, 0.7);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 165, 116, 0.15);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 13px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    background: rgba(26, 35, 50, 0.7);
    color: var(--white);
    transition: border-color 0.2s, background 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(26, 35, 50, 0.9);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.2);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 165, 116, 0.3);
}

/* Footer */
footer {
    background: rgba(26, 35, 50, 0.95);
    color: var(--text-secondary);
    padding: 40px 20px 25px;
    text-align: center;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

footer p {
    margin-bottom: 12px;
    font-size: 13px;
}

footer a {
    color: var(--accent-color);
    text-decoration: none;
    transition: opacity 0.2s;
}

footer a:hover {
    opacity: 0.7;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.footer-social a {
    color: var(--text-secondary);
    transition: color 0.2s, transform 0.2s;
    font-size: 18px;
}

.footer-social a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Bouton Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.6);
}

.scroll-top svg {
    animation: bounce 2s infinite;
}

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

/* Work Page - YouTube Videos */
.work-page .work-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 60px auto;
    padding: 30px;
    background: rgba(38, 52, 71, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.video-card {
    background: rgba(38, 52, 71, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 165, 116, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    text-decoration: none;
    display: block;
    position: relative;
}

.video-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 165, 116, 0.5);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.3);
}

.video-thumbnail {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
    opacity: 0.7;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(212, 165, 116, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button svg {
    color: var(--primary-bg);
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.video-card:hover .play-button {
    background: var(--accent-color);
    transform: translate(-50%, -50%) scale(1.15);
}

.video-card:hover .play-button svg {
    transform: scale(1.1);
}

.work-cta {
    text-align: center;
    padding: 60px 40px;
    background: rgba(38, 52, 71, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    margin-top: 60px;
}

.work-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.work-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        gap: 20px;
    }
    
    nav a {
        font-size: 12px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1rem;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .content-section h1 {
        font-size: 2rem;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .work-cta {
        padding: 40px 20px;
    }
    
    .logo-section {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .site-title h2 {
        font-size: 1.4rem;
    }
    
    .site-title .tagline {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    header .container {
        flex-direction: column;
        gap: 12px;
        padding: 10px;
    }
    
    nav ul {
        gap: 15px;
    }
    
    .hero {
        padding: 60px 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .social-links,
    .about-preview,
    .content-section {
        padding: 50px 15px;
    }
    
    .logo img {
        height: 80px;
    }
    
    .site-title h2 {
        font-size: 1.2rem;
    }
    
    .site-title .tagline {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
}
    
    .contact-form {
        padding: 25px;
    }
}

/* Styles spécifiques page À Propos */
.about-page {
    background: linear-gradient(180deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
}

.quote-hero {
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 80px;
    position: relative;
}

.quote-icon {
    color: var(--accent-color);
    opacity: 0.2;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

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

.quote-hero blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

.quote-hero blockquote p {
    margin-bottom: 15px;
}

.bio-section {
    margin-bottom: 100px;
}

.bio-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: var(--white);
    margin-bottom: 60px;
    position: relative;
}

.bio-section h1::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--accent-color), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 80px;
    animation: fadeInLeft 0.6s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-dot {
    position: absolute;
    left: 20px;
    top: 8px;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 4px solid var(--secondary-bg);
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.2);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.2);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(212, 165, 116, 0.4);
    }
}

.timeline-content {
    background: rgba(38, 52, 71, 0.6);
    backdrop-filter: blur(10px);
    padding: 25px 30px;
    border-radius: 12px;
    border: 1px solid rgba(212, 165, 116, 0.15);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(5px);
    border-color: rgba(212, 165, 116, 0.4);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
}

.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.timeline-content p:last-child {
    margin-bottom: 0;
}

.timeline-content strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* Bands Section */
.bands-section {
    margin-bottom: 80px;
}

.bands-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    text-align: center;
    color: var(--white);
    margin-bottom: 20px;
}

.intro-text {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.band-card {
    background: rgba(38, 52, 71, 0.6);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(212, 165, 116, 0.15);
    transition: all 0.3s ease;
}

.band-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 165, 116, 0.4);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.2);
}

.band-card.active {
    border-color: rgba(212, 165, 116, 0.4);
    background: rgba(38, 52, 71, 0.8);
}

.band-card.featured {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15), rgba(38, 52, 71, 0.8));
    border: 2px solid var(--accent-color);
}

.band-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.band-header h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-color);
    font-size: 1.5rem;
    margin: 0;
}

.band-years {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.band-style {
    color: var(--white);
    font-style: italic;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.band-members {
    list-style: none;
    padding: 0;
    margin: 0;
}

.band-members li {
    color: var(--text-secondary);
    padding: 6px 0;
    font-size: 0.95rem;
}

.band-members li::before {
    content: '♪';
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.band-description {
    color: var(--text-primary);
    margin: 20px 0;
    line-height: 1.6;
    font-size: 1.05rem;
}

.btn-contact {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 165, 116, 0.4);
}

/* Responsive pour page À Propos */
@media (max-width: 768px) {
    .quote-hero blockquote {
        font-size: 1.1rem;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-dot {
        left: 5px;
    }
    
    .bands-grid {
        grid-template-columns: 1fr;
    }
}
