
:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #151515;
    --tertiary-dark: #202020;
    --accent-gold: #d4af37;
    --accent-gold-light: #f4d03f;
    --accent-copper: #b87333;
    --accent-burgundy: #722f37;
    --text-light: #ffffff;
    --text-bright: #f8f9fa;
    --text-muted: #d0d0d0;
    --text-gold: #d4af37;
    --overlay-dark: rgba(0, 0, 0, 0.75);
    --overlay-darker: rgba(0, 0, 0, 0.85);
    --overlay-darkest: rgba(0, 0, 0, 0.9);
    --gradient-overlay: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.9) 100%);
    --text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
    --text-shadow-strong: 3px 3px 12px rgba(0,0,0,0.95);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

.navbar-logo {
    height: 100px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.8));
    max-width: 200px; /* Ajuste selon la largeur de ton logo */
}

.navbar-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(3px 3px 8px rgba(212, 175, 55, 0.6));
}

/* Pour navbar réduite au scroll */
.navbar-scrolled .navbar-logo {
    height: 40px;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .navbar-logo {
        height: 40px;
        max-width: 150px;
    }
    
    .navbar-scrolled .navbar-logo {
        height: 35px;
    }
}

/* Navigation améliorée */
.navbar-custom {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1050;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.navbar-scrolled {
    background: rgba(10, 10, 10, 0.98);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--accent-gold) !important;
    font-weight: 700;
    text-shadow: var(--text-shadow);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.navbar-brand:hover {
    color: var(--accent-gold-light) !important;
    transform: scale(1.05);
}

.navbar-brand i {
    margin-right: 0.75rem;
    font-size: 1.8rem;
    animation: pulse 2s infinite;
}

.navbar-nav {
    margin-left: auto;
}

.nav-link {
    color: var(--text-bright) !important;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    margin: 0 0.5rem;
    padding: 0.75rem 1.25rem !important;
    border-radius: 25px;
    text-shadow: var(--text-shadow);
}

.nav-link:hover {
    color: var(--accent-gold) !important;
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.nav-link.active {
    color: var(--accent-gold) !important;
    background: rgba(212, 175, 55, 0.15);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-gold-light));
    transition: all 0.4s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::before {
    width: 80%;
}

/* Burger menu amélioré */
.navbar-toggler {
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28212, 175, 55, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Slider avec photos de musiciens */
.hero-slider {
    height: 100vh;
    position: relative;
    margin-top: 0;
    overflow: hidden;
}

/* Carousel avec images PNG */
.carousel-item {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 2;
}

.carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    text-align: center;
}

/* Amélioration des contrôles */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    z-index: 4;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 30px 30px;
    width: 50px;
    height: 50px;
    background-color: rgba(212, 175, 55, 0.8);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: var(--accent-gold);
    transform: scale(1.1);
}

/* Indicateurs personnalisés */
.carousel-indicators {
    z-index: 4;
    margin-bottom: 2rem;
}

.carousel-indicators button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.5);
    border: 2px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: var(--accent-gold);
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-item {
        height: 70vh;
    }
}


.slide-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-shadow: var(--text-shadow-strong);
    letter-spacing: 4px;
    animation: slideInUp 1.2s ease-out;
}

.slide-title-accent {
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-gold-light));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.slide-subtitle {
    font-size: 1.6rem;
    color: var(--text-bright);
    margin-bottom: 2rem;
    font-weight: 400;
    text-shadow: var(--text-shadow-strong);
    animation: slideInUp 1.2s ease-out 0.3s both;
}

.slide-description {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.9;
    text-shadow: var(--text-shadow);
    animation: slideInUp 1.2s ease-out 0.6s both;
    font-weight: 400;
}

/* Boîte de contenu avec fond léger */
.hero-content-box {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.hero-content-box:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

/* Amélioration des textes dans la boîte */
.hero-content-box .hero-title {
    text-shadow: var(--text-shadow-strong);
    color: var(--text-bright);
}

.hero-content-box .hero-subtitle {
    text-shadow: var(--text-shadow);
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content-box {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        border-radius: 15px;
    }
}

@media (max-width: 576px) {
    .hero-content-box {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }
}


.btn-custom {
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--primary-dark);
    border: none;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    animation: slideInUp 1.2s ease-out 0.9s both;
    position: relative;
    overflow: hidden;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-custom:hover::before {
    left: 100%;
}

.btn-custom:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
    color: var(--primary-dark);
}

/* Sections avec arrière-plans de musiciens */
.section {
    padding: 8rem 0;
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* Arrière-plans différents pour chaque section */
.about-section {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect width="1920" height="1080" fill="%23151515"/><g opacity="0.1"><rect x="100" y="200" width="60" height="200" rx="30" fill="%23d4af37"/><rect x="300" y="150" width="50" height="250" rx="25" fill="%23b87333"/><rect x="500" y="180" width="70" height="220" rx="35" fill="%23d4af37"/><rect x="700" y="160" width="55" height="240" rx="27" fill="%23b87333"/><rect x="900" y="190" width="65" height="210" rx="32" fill="%23d4af37"/><rect x="1100" y="170" width="45" height="230" rx="22" fill="%23b87333"/><rect x="1300" y="185" width="75" height="215" rx="37" fill="%23d4af37"/><rect x="1500" y="155" width="52" height="245" rx="26" fill="%23b87333"/></g></svg>');
}

.services-section {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect width="1920" height="1080" fill="%231a1a1a"/><g opacity="0.08"><circle cx="200" cy="200" r="80" fill="%23d4af37"/><circle cx="500" cy="300" r="60" fill="%23b87333"/><circle cx="800" cy="150" r="90" fill="%23d4af37"/><circle cx="1100" cy="250" r="70" fill="%23b87333"/><circle cx="1400" cy="180" r="85" fill="%23d4af37"/><circle cx="1700" cy="220" r="65" fill="%23b87333"/></g><g opacity="0.06"><rect x="150" y="400" width="100" height="20" rx="10" fill="%23d4af37"/><rect x="450" y="450" width="120" height="15" rx="7" fill="%23b87333"/><rect x="750" y="420" width="110" height="25" rx="12" fill="%23d4af37"/><rect x="1050" y="440" width="90" height="18" rx="9" fill="%23b87333"/><rect x="1350" y="410" width="130" height="22" rx="11" fill="%23d4af37"/></g></svg>');
}

.contact-section {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect width="1920" height="1080" fill="%23101010"/><g opacity="0.12"><path d="M200,300 Q400,200 600,300 T1000,300 T1400,300 T1800,300" stroke="%23d4af37" stroke-width="15" fill="none"/><path d="M150,400 Q350,300 550,400 T950,400 T1350,400 T1750,400" stroke="%23b87333" stroke-width="12" fill="none"/><path d="M100,500 Q300,400 500,500 T900,500 T1300,500 T1700,500" stroke="%23d4af37" stroke-width="10" fill="none"/></g></svg>');
}

/* Overlay pour chaque section */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-darkest);
    z-index: 1;
}

.section > .container {
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    text-shadow: var(--text-shadow-strong);
    font-weight: 400;
}

.section-title-accent {
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-gold-light));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 5rem;
    text-shadow: var(--text-shadow);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-gold-light));
    border-radius: 2px;
}

/* Cards améliorées avec meilleur contraste */
.enhanced-card {
    background: rgba(0, 0, 0, 0.85);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    padding: 3.5rem 2.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

.enhanced-card:hover {
    transform: translateY(-15px) rotate(1deg);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.3);
    background: rgba(0, 0, 0, 0.9);
}

.enhanced-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
    transition: left 0.8s ease;
}

.enhanced-card:hover::before {
    left: 100%;
}

.card-icon-enhanced {
    font-size: 4rem;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-gold-light));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    display: block;
    animation: iconFloat 4s ease-in-out infinite;
    text-shadow: none;
}

.card-title-enhanced {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: var(--text-shadow);
}

.card-text-enhanced {
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 1.1rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    font-weight: 400;
}

/* Section À propos avec contraste renforcé */
.about-card {
    background: rgba(0, 0, 0, 0.9);
    border-radius: 30px;
    padding: 4.5rem 3.5rem;
    backdrop-filter: blur(25px);
    border: 2px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 25px 50px rgba(0,0,0,0.9);
}

.about-text {
    font-size: 1.3rem;
    line-height: 2.1;
    color: var(--text-bright);
    text-align: justify;
    text-shadow: var(--text-shadow);
    font-weight: 400;
}

.about-highlight {
    color: var(--accent-gold);
    font-weight: 700;
    text-shadow: var(--text-shadow);
}

/* Services avec meilleur contraste */
.service-item {
    text-align: center;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.service-item:hover {
    transform: translateY(-8px);
}

.service-icon {
    font-size: 4.5rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    text-shadow: var(--text-shadow);
}

.service-item:hover .service-icon {
    transform: scale(1.15) rotate(8deg);
    color: var(--accent-gold-light);
}

/* Social links améliorés */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(45deg, #1877f2, #42a5f5);
    color: white;
    text-decoration: none;
    font-size: 2.5rem;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.5);
    position: relative;
    overflow: hidden;
}

.social-link::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.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    color: white;
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 20px 50px rgba(24, 119, 242, 0.7);
}

/* Footer avec meilleur contraste */
.footer {
    background: var(--primary-dark);
    padding: 4rem 0 2rem;
    border-top: 2px solid rgba(212, 175, 55, 0.4);
    text-align: center;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-darker);
}

.footer > .container {
    position: relative;
    z-index: 2;
}

.footer-text {
    color: var(--text-bright);
    font-size: 1.1rem;
    margin: 0;
    text-shadow: var(--text-shadow);
    font-weight: 500;
}

.footer-heart {
    color: var(--accent-gold);
    animation: pulse 2.5s infinite;
    margin: 0 0.8rem;
    font-size: 1.2rem;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 50px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* Scroll animations */
.fade-in-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive amélioré */
@media (max-width: 768px) {
    .slide-title {
        font-size: 3rem;
    }
    
    .slide-subtitle {
        font-size: 1.3rem;
    }
    
    .slide-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .enhanced-card {
        padding: 2.5rem 2rem;
    }
    
    .about-card {
        padding: 3rem 2.5rem;
    }

    .social-links {
        gap: 1.5rem;
    }

    .social-link {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .carousel-caption-custom {
        padding: 2rem;
    }

    .navbar-brand {
        font-size: 1.6rem;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.5rem 1rem !important;
    }
}

@media (max-width: 576px) {
    .slide-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .carousel-caption-custom {
        padding: 1.5rem;
        width: 95%;
    }
    
    .section {
        padding: 5rem 0;
    }
}
