/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "BBH Hegarty", sans-serif;
    font-weight: 400; 
    font-style: normal;
}

:root {
    --primary-color: #FF0066;
    --secondary-color: #000000;
    --text-light: #ffffff;
    --text-dark: #333333;
    --overlay: rgba(0, 0, 0, 0.6);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Textes de base */
p, .description, .bio-text, .event-description {
    font-family: "Mozilla Text", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* Formulaires + liens du footer */
input, textarea, select, .footer li a {
    font-family: "Mozilla Text", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.highlight {
    font-family: "Yellowtail", sans-serif;
 /* -webkit-text-stroke: 5px black; */
    font-weight: 400;
    font-size: 240%;
    line-height: 0.3; 
    text-transform: lowercase;
    font-style: normal;
    display: inline-block;
    /*color: white; /* Optionnel : mettre en magenta */
}
.highlight::first-letter {
    text-transform: uppercase; 
}

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

/* HEADER FIXE */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: transparent;  /* ← Transparent par défaut */
    z-index: 1000;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 30px;
    transition: background 0.3s ease;
}
/* Header noir au scroll */
.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 5%;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: auto;
    height: 150px;
}

.logo-desktop {
    display: block;
}

.logo-mobile {
    display: none;
}

/* SPOTIFY FIXED EN BAS À GAUCHE (Desktop uniquement) */
.header-spotify {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 300px;
    height: 80px;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    overflow: hidden;

}

.header-spotify iframe {
    width: 100% !important;
    height: 80px !important;
    border-radius: 12px;
}
.header-spotify:hover {
    opacity: 1;
}

/* SPOTIFY DANS LE MENU MOBILE (caché par défaut) */
.mobile-spotify {
    display: none;
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
}

/* BURGER À DROITE */
.burger {
    grid-column: 3;
    justify-self: end;
    width: 30px;
    align-self: center;
    height: 25px;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.burger span {
    width: 100%;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* MENU NAVIGATION */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.4s ease;
    padding: 20px;
}

.nav-menu.active {
    right: 0;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

 .menu-logo {
        display: block;
        width: 200px;
        max-width: 80%;
        height: auto;
        margin: 20px auto 30px; /* Espace en haut et en bas */
        padding: 0;
    }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .header-spotify {
        display: none;    }
    .past-events {
        display: none;
    }
}

@media (max-width: 768px) {
    .header {
        grid-template-columns: auto 1fr auto;
        padding: 0 20px;
        height: 70px;
    }
    
    /* Cache Spotify du header sur mobile */
    .header-spotify {
        display: none;
    }
    
    /* Affiche Spotify dans le menu burger */
    .mobile-spotify {
        display: block !important;
        width: 100%;
        padding: 0 20px 20px 20px;
        margin-bottom: 30px;
    }
    
    .logo {
        position:absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1001;
        width: calc(100% - 40px);
        max-width: none;
    }
    
    .logo img {
        width: 100%;
        height: auto;
    }
    
    .logo-desktop {
        display: none;
    }
    
    .logo-mobile {
        display: block;
    }
    
   /* Burger fixe en bas à droite */
    .burger {
        position: fixed;
        bottom: 20px;
        right: 20px;
        top: auto; /* Annule le top du header */
        grid-column: auto; /* Annule le grid */
        justify-self: auto;
        width: 50px; /* Un peu plus gros pour être accessible */
        height: 50px;
        background: #000;
        border-radius: 50%; /* Cercle stylé */
        padding: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        z-index: 1002; /* Au-dessus de tout */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }
    
    .burger span {
        width: 26px;
        height: 3px;
        background: #fff;
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    
    /* Animation quand menu ouvert */
    .burger.active {
        background: var(--accent-color); /* Change la couleur */
    }
    
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
   
    .nav-menu {
        width: 100%;
        right: -100%;
        justify-content: flex-start;
        padding-top: 100px;
    }
    
    .nav-menu a {
        font-size: 22px;
       /* padding: 15px 20px;*/
    }
.logo-mobile.hide-logo {
    display: none !important;
}

    
    .mobile-spotify iframe {
        height: 152px;
    }
    
.video-header {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

    
}


/*@media (max-width: 480px) {
    .header {
        height: 60px;
        padding: 0 15px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .nav-menu a {
        font-size: 20px;
    }
}*/

/* VIDEO HEADER */
.video-header {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-header video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: var(--overlay);*/
}

/* NEXT EVENT SECTION */
.next-event {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    text-align: center;
}

.next-event h2 {
    color: var(--text-light);
    font-size: 3rem;
    margin-bottom: 50px;
    letter-spacing: 3px;
}


/* CARTE EVENT (SIMPLE ET CENTRÉE) */
.event-card {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 255, 0.3);
}

.event-image img {
    width: 100%;
    height: auto;
    display: block;
}

.event-info {
    padding: 30px;
    color: var(--text-light);
}

.event-info h3 {
    color: var(--accent-color); /* ← TON MAGENTA */
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.event-info p {
    font-size: 1.1rem;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.event-info i {
    color: var(--accent-color);
}

.event-cta {
    padding: 0 30px 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cta-btn {
    background: var(--accent-color);
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
}

.cta-btn:hover {
    transform: scale(1.05);
}

.cta-btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-btn-secondary:hover {
    background: var(--accent-color);
    color: #000;
}

/* BOUTON TICKETS MOBILE */
.mobile-tickets-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 80px; /* Distance depuis le bord droit */
    left: 20px; /* Distance depuis le bord gauche */
    max-width: 200px; /* Largeur maximale */
    z-index: 1001;
    padding: 10px 16px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s ease;
}

/* MOBILE */
@media (max-width: 768px) {
    
        .mobile-tickets-btn {
        display: block;
    }
    .nav-menu.active ~ .mobile-tickets-btn {
    opacity: 0;
    pointer-events: none;
    transform: translateX(20px);
}
}
    .event-cta {
        flex-direction: column;
    }
    
    .event-info h3 {
        font-size: 1.5rem;
    }
}

/* ABOUT US SECTION */
.about-us {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: var(--secondary-color);
    letter-spacing: 2px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
}

/* FLOATING IMAGES */
.floating-images {
    position: relative;
    width: 100%;
    height: 600px;
}

.float-img {
    position: absolute;
    width: 250px;
    height: 250px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.float-img.visible {
    opacity: 1;
    transform: translateY(0);
}

/* IMAGE 1 : ROND */
.float-1 {
    top: 0;
    left: 0;
    transition-delay: 0.1s;
    border-radius: 50%; /* Cercle parfait */
}

/* IMAGE 2 : CARRÉ */
.float-2 {
    top: 50px;
    right: 50px;
    transition-delay: 0.2s;
    border-radius: 15px; /* Coins légèrement arrondis */
}

/* IMAGE 3 : RECTANGLE HORIZONTAL */
.float-3 {
    bottom: 150px;
    left: 100px;
    transition-delay: 0.3s;
    width: 350px; /* Plus large */
    height: 200px; /* Moins haut */
    border-radius: 20px;
}
/* rond */
.float-4 {
    bottom: 0;
    right: 0;
    transition-delay: 0.1s;
    border-radius: 50%; /* Cercle parfait */
}

/* INSTAGRAM GALLERY */
.instagram-gallery {
    padding: 100px 0;
    background: #f9f9f9;
    text-align: center;
}

.instagram-gallery h2 {
    font-size: 3rem;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.instagram-feed {
    margin-bottom: 30px;
}

.instagram-feed iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.instagram-cta {
    display: inline-block;
    font-size: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.instagram-cta:hover {
    color: #ff3385;
}

/* CONTACT SECTION */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.contact h2 {
    color: var(--text-light);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #ff3385;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 102, 0.4);
}

/* FOOTER */
.footer {
    background: #000000;
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.footer-col p,
.footer-col ul li {
    margin-bottom: 10px;
    color: #999;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

/* RESPONSIVE DESIGN */
@media (min-width: 1024px) {
    
    .logo img {
        height: 250px;
    }
    
    .logo-mobile {
        display: none;
    }
    
    .logo-desktop {
        display: block;
    }
    
    .nav-menu {
        width: 400px;
    }
}

@media (max-width: 768px) {
    .next-event h2,
    .about-text h2,
    .instagram-gallery h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .floating-images {
        height: 400px;
    }
    
    .float-img {
        width: 150px;
        height: 150px;
    }
    
    .float-3 {
        bottom: 100px;
        left: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .nav-menu ul li a {
        font-size: 1.5rem;
    }
}

/* ============================================
   SECTION PAST EVENTS
   ============================================ */

.past-events {
    padding: 100px 0 0 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    text-align: center;
    overflow: hidden;
}

.past-events h2 {
    color: var(--text-light);
    font-size: 3rem;
    margin-bottom: 50px;
    letter-spacing: 3px;
}

/* GALERIE AVEC SCROLL HORIZONTAL */
.events-gallery {
    display: flex;
    gap: 0; /* Collées les unes aux autres */
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 20px 0;
    
    /* Cache la scrollbar mais garde le scroll */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.events-gallery::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* CHAQUE AFFICHE */
.event-poster {
    position: relative;
    flex: 0 0 auto;
    width: 300px;
    height: 450px;
    cursor: pointer;
    overflow: hidden;
}

.event-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

/* OVERLAY AU HOVER */
.poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-poster:hover .poster-overlay {
    opacity: 1;
}

.event-poster:hover img {
    transform: scale(1.05);
}

/* ICÔNE FACEBOOK */
.poster-overlay i {
    font-size: 3rem;
    color: var(--accent-color);
}

/* LIEN */
.poster-overlay a {
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 30px;
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.poster-overlay a:hover {
    background: var(--accent-color);
    color: #000;
}

/* MOBILE */
@media (max-width: 768px) {
    .past-events h2 {
        font-size: 2rem;
    }
    
    .event-poster {
        width: 250px;
        height: 375px;
    }
    
    .poster-overlay a {
        font-size: 0.9rem;
        padding: 12px 25px;
    }
}

