/* ===== STYLES GÉNÉRAUX ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body {
    font-family: 'Instrument Sans', sans-serif;
    background: #0A0A0F;
    color: #E8E8F0;
    line-height: 1.8;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: #FFFFFF;
    font-weight: 700;
}
a {
    color: #A855F7;
    text-decoration: none;
    transition: all 0.3s ease;
}
a:hover {
    color: #D8B4FE;
}

/* ===== NEON BORDERS (RGB style) ===== */
@keyframes rgb-border {
    0% { border-color: #A855F7; box-shadow: 0 0 10px rgba(168, 85, 247, 0.2); }
    25% { border-color: #EC4899; box-shadow: 0 0 15px rgba(236, 72, 153, 0.2); }
    50% { border-color: #06B6D4; box-shadow: 0 0 15px rgba(6, 182, 212, 0.2); }
    75% { border-color: #A855F7; box-shadow: 0 0 10px rgba(168, 85, 247, 0.2); }
    100% { border-color: #A855F7; box-shadow: 0 0 10px rgba(168, 85, 247, 0.2); }
}
.rgb-border {
    border: 2px solid rgba(168, 85, 247, 0.3);
    animation: rgb-border 4s ease-in-out infinite;
    transition: all 0.3s ease;
}
.rgb-border:hover {
    animation: rgb-border 2s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.15);
}

@keyframes rgb-border-subtle {
    0% { border-color: rgba(168, 85, 247, 0.15); }
    33% { border-color: rgba(236, 72, 153, 0.15); }
    66% { border-color: rgba(6, 182, 212, 0.15); }
    100% { border-color: rgba(168, 85, 247, 0.15); }
}
.rgb-border-subtle {
    border: 1px solid rgba(168, 85, 247, 0.1);
    animation: rgb-border-subtle 6s ease-in-out infinite;
}

/* ===== NEON GLOW TEXT ===== */
.neon-text {
    color: #A855F7;
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.3), 0 0 60px rgba(168, 85, 247, 0.1);
}
.neon-text-pink {
    color: #EC4899;
    text-shadow: 0 0 20px rgba(236, 72, 153, 0.3), 0 0 60px rgba(236, 72, 153, 0.1);
}
.neon-text-cyan {
    color: #06B6D4;
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.3), 0 0 60px rgba(6, 182, 212, 0.1);
}

/* ===== NAVBAR ===== */
#navbar {
    transition: all 0.4s ease;
    background: transparent;
    padding: 1.5rem 0;
}
.nav-scrolled {
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(168, 85, 247, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    padding: 0.8rem 0;
}
.nav-scrolled a {
    color: #FFFFFF !important;
}

@media (max-width: 768px) {
    
    #navbar {
        width: 83%;
        position: fixed!important;
    }
    
    #navbar .backdrop-blur-md {
        width: 100%;
        margin: 20px auto;
        transition: 0.7s!important;
    }
}

/* ===== HERO / SLIDER ===== */
.hero-slider {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0A0A0F;
    color: #FFFFFF;
    overflow: hidden;
}
.hero-slider .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 0;
}
.hero-slider .slide.active {
    opacity: 1;
    z-index: 1;
}
/* Image de fond avec zoom */
.hero-slider .slide .slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 12s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}
/* Le zoom est activé sur le slide actif */
.hero-slider .slide.active .slide-bg {
    transform: scale(1.3);
}
/* Pour forcer le démarrage immédiat du zoom sur le premier slide */
.hero-slider .slide.active .slide-bg.zoom-started {
    transform: scale(1.3);
}
.hero-slider .slide .overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.7) 0%, rgba(10, 10, 15, 0.9) 80%, rgba(10, 10, 15, 0.6) 100%);
}
.hero-slider .slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    padding: 2rem 1.5rem;
    text-align: center;
}
.hero-slider .slide-content h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 10vw, 6.5rem);
    line-height: 1.05;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 60px rgba(168, 85, 247, 0.15);
    color: #FFFFFF;
}
.hero-slider .slide-content h1 .highlight {
    color: #A855F7;
}
.hero-slider .slide-content h1 .highlight-pink {
    color: #EC4899;
}
.hero-slider .slide-content h1 .highlight-cyan {
    color: #06B6D4;
}
.hero-slider .slide-content p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.5);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SLIDE DOTS ===== */
.slide-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.slide-dot {
    width: 40px;
    height: 3px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}
.slide-dot.active {
    background: #A855F7;
    width: 60px;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
}

/* ===== BOUTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #A855F7, #7C3AED);
    color: #FFFFFF;
    padding: 0.85rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.15);
    min-width: 160px;
    position: relative;
    overflow: hidden;
    width: 30%;
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(90deg, #A855F7, #EC4899, #06B6D4, #A855F7);
    background-size: 300% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rgb-border-btn 3s linear infinite;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.btn-primary:hover::before {
    opacity: 1;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(168, 85, 247, 0.25);
}
@keyframes rgb-border-btn {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #a955f713;
    color: #FFFFFF;
    padding: 0.85rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    border: 1px solid #ffffff;
    box-shadow: 0 0 40px rgba(169, 85, 247, 0.055);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    width: 30%;
}
.btn-outline:hover {
    background: rgba(168, 85, 247, 0.05);
    border-color: #A855F7;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.1);
}
.btn-ticket {
    display: inline-block;
    background: rgba(255, 255, 255, 0.02);
    color: #E8E8F0;
    padding: 0.4rem 3rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #ffffff65;
    box-shadow: 0 0 40px rgba(169, 85, 247, 0.055);
}
.btn-ticket:hover {
    background: rgba(168, 85, 247, 0.05);
    border-color: #A855F7;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.1);
}

@media (max-width: 768px) {
    .btn-primary,.btn-outline{
        width: 90%;
        margin-top: 5px;
        text-align:center;
    }
    
    .btn-ticket {
        width: 90%;
        margin-left:5%;
        margin-top:40px;
        margin-bottom:40px;
        text-align:center;
        padding: 10px 0;
       
    }
    
}

/* ===== SECTIONS ===== */

section{
    border-top:1px solid #3c076d31!important;
    box-shadow: 0 0 5px rgba(169, 85, 247, 0.123);
}

.section-spacing {
    padding: 7rem 0;
}

@media (max-width: 768px) {
    .section-spacing {
        padding: 3rem 0;
    }
}

.section-title {
    font-size: 3.7rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    text-transform: uppercase;
}


.section-title span {
    color: #A855F7;
}
.section-title .pink {
    color: #EC4899;
}
.section-title .cyan {
    color: #06B6D4;
}
.section-subtitle {
    text-align: center;
    color: #8A8A9A;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}
.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #A855F7, #EC4899, #06B6D4);
    margin: 1rem auto 2.5rem;
    border-radius: 2px;
}

/* ===== STATS ===== */
.stat-item {
    padding: 1.5rem;
    border: 1px solid #a955f718;
    border-radius: 5px;
    box-shadow: 0 12px 20px rgba(40, 6, 71, 0.178);
    padding: 30px 60px;
}
.stat-item:last-child {
    border-right: none;
}
.stat-item p {
    margin-top: 15px;
    margin-bottom: 0;
}
.stat-number {
    font-size: 3.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    background: linear-gradient(135deg, #A855F7, #EC4899, #06B6D4);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rgb-stat 4s ease-in-out infinite;
}
@keyframes rgb-stat {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@media (max-width: 768px) {
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(168, 85, 247, 0.04);
        padding: 1.5rem 1rem 3rem;
        margin-top:20px;
    }
    .section-title {
        font-size: 2rem;
    }
    .stat-item {
        display:block!important;
        width:100%;
    }
    
    .stat-item p {
        font-size:12px;
    }
    .stat-number {
        font-size:40px !important;
    }
}

/* ===== TOUR DATES ===== */

.tour-section{
    background:linear-gradient(135deg, rgba(10, 10, 15, 0.9) 20%, rgba(10, 10, 15, 1.0) 40%, rgba(10, 10, 15, 1.0) 60%,rgba(10, 10, 15, 1.0) 80%, rgba(10, 10, 15, 0.9) 100%),url('../assets/img/tournees.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.tour-card{
    border: 1px solid #a955f73b;
    border-radius: 5px;
    box-shadow: 0 12px 20px rgba(40, 6, 71, 0.3);
    padding: 40px 20px;
}
.tour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(169, 85, 247, 0.205);
    flex-wrap: wrap;
}
.tour-item:last-child {
    border-bottom: none;
}
.tour-item .date {
    font-weight: 700;
    color: #A855F7;
    min-width: 100px;
}
.tour-item .city {
    font-weight: 600;
    color: #FFFFFF;
    flex: 1;
    padding: 0 1rem;
}
.tour-item .country {
    color: #8A8A9A;
    font-size: 0.9rem;
    flex: 1;
}

/* ===== ALBUMS ===== */
.album-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid #a955f73b;
    box-shadow: 0 12px 20px rgba(40, 6, 71, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: 0.7s!important;
    text-align: center;
    padding-bottom:20px;
}
.album-card:hover {
    border-color: rgba(169, 85, 247, 0.671);
    box-shadow: 0 0 40px rgba(169, 85, 247, 0.055);
}
.album-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.album-card .album-info {
    padding: 1.5rem;
}
.album-card .album-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: #FFFFFF;
    text-transform: uppercase;
}
.album-card .album-info p {
    color: #8A8A9A;
    font-size: 0.9rem;
    margin-top: 15px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #a955f750;
}
.album-card .album-info span {
    background: rgba(169, 85, 247, 0.027);
    border: 1px solid rgba(169, 85, 247, 0.466);
    padding: 15px 10px;
    width: 50%;
    display: block;
    margin: auto;
    text-align: center;
    border-radius: 100px;
    color: #A855F7;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}
.album-card .album-info span:hover {
    background: #A855F7;
    color: #0A0A0F;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.15);
}

/* ===== ARTISTES ===== */
.artiste-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid #a955f73b;
    box-shadow: 0 12px 20px rgba(40, 6, 71, 0.3);
    border-radius: 8px;
    overflow: hidden;
    padding: 20px 10px;
    transition: all 0.4s ease!important;
}
.artiste-card:hover {
    border-color: rgba(169, 85, 247, 0.671);
    box-shadow: 0 0 40px rgba(169, 85, 247, 0.055);
}
.artiste-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 2px solid rgba(168, 85, 247, 0.08);
    transition: all 0.4s ease;
}
.artiste-card:hover img {
    border-color: rgba(169, 85, 247, 0.671);
    box-shadow: 0 0 40px rgba(169, 85, 247, 0.055);
}
.artiste-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-top: 0.5rem;
}
.artiste-card .genre {
    font-size: 0.8rem;
    font-weight: 600;
    background: linear-gradient(90deg, #A855F7, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 20px;
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid #a955f725;
}

/* ===== BLOG ===== */
.post-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid #a955f73b;
    box-shadow: 0 12px 20px rgba(40, 6, 71, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: 0.7s!important;
    text-align: center;
    padding-bottom:20px;
}
.post-card:hover {
    border-color: rgba(169, 85, 247, 0.671);
    box-shadow: 0 0 40px rgba(169, 85, 247, 0.055);
}
.post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.post-card .post-content {
    padding: 1.5rem;
}
.post-card .post-content .post-meta {
    font-size: 0.8rem;
    color: #8A8A9A;
    margin-bottom: 0.5rem;
}
.post-card .post-content h3 {
    font-size: 1.4rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    text-transform: uppercase;
}
.post-card .post-content p {
    color: #8A8A9A;
    font-size: 0.9rem;
    margin-top: 15px;
    border-bottom: 1px solid rgba(169, 85, 247, 0.268);
    padding-bottom:40px!important;
    margin-bottom:30px!important;
}
.post-card .post-content .read-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: #A855F7;
}
.post-card .post-content .read-link:hover {
    color: #D8B4FE;
}

/* ===== GALERIE ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.3em;
}
.gallery-grid .gallery-item {
    border-radius: 2px;
    overflow: hidden;
    border: 0.12em solid #a955f75e;
    box-shadow: 0 12px 20px rgba(40, 6, 71, 0.3);
    transition: all 0.7s ease!important;
}
.gallery-grid .gallery-item:hover {
    border: 0.12em solid rgb(182, 120, 240);
    box-shadow: 0 0 30px rgba(169, 85, 247, 0.419);
}
.gallery-grid .gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}
/* Fancybox overlay personnalisation */
.fancybox__container {
    background: rgba(10, 10, 15, 0.92) !important;
}

/* ===== FILTRES ===== */
.filter-btn {
    background: transparent;
    border: 1px solid rgba(168, 85, 247, 0.08);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #8A8A9A;
    cursor: pointer;
    transition: all 0.3s ease;
}
.filter-btn:hover {
    border-color: rgba(168, 85, 247, 0.2);
    color: #A855F7;
}
.filter-btn.active {
    background: linear-gradient(135deg, #A855F7, #7C3AED);
    color: #FFFFFF;
    border-color: transparent;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.1);
}

/* ===== CONTACT ===== */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(168, 85, 247, 0.04);
}
.contact-item:last-child {
    border-bottom: none;
}
.contact-item .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A855F7;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-item .icon i {
    font-size: 1.2rem;
}

/* ===== FOOTER ===== */
footer {
    background: #0A0A0F;
    color: rgba(255, 255, 255, 0.2);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(168, 85, 247, 0.04);
}
footer a {
    color: rgba(255, 255, 255, 0.2);
    transition: color 0.3s ease;
}
footer a:hover {
    color: #A855F7;
}
footer .footer-divider {
    border-top: 1px solid rgba(168, 85, 247, 0.04);
    margin: 2rem 0 1.5rem;
    padding-top: 1.5rem;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: #0A0A0F;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #A855F7, #EC4899);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #7C3AED;
}

/* ===== ANIMATION BOUNCE ===== */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.animate-bounce {
    animation: bounce 2s infinite;
}

/* ===== ANIMATION RGB GLOW ===== */
@keyframes rgb-glow {
    0% { text-shadow: 0 0 20px rgba(168, 85, 247, 0.2), 0 0 60px rgba(168, 85, 247, 0.05); }
    33% { text-shadow: 0 0 20px rgba(236, 72, 153, 0.2), 0 0 60px rgba(236, 72, 153, 0.05); }
    66% { text-shadow: 0 0 20px rgba(6, 182, 212, 0.2), 0 0 60px rgba(6, 182, 212, 0.05); }
    100% { text-shadow: 0 0 20px rgba(168, 85, 247, 0.2), 0 0 60px rgba(168, 85, 247, 0.05); }
}
.rgb-glow {
    animation: rgb-glow 4s ease-in-out infinite;
}
