/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease;
    animation: slideDown 1s ease-out;
}

/* Masquer la navbar au scroll vers le bas sur mobile uniquement */
@media (max-width: 768px) {
    .navbar.navbar-hidden {
        transform: translateY(-100%);
        opacity: 0;
    }
    
    .navbar.navbar-visible {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
}

.nav-logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 2px;
}

.logo-img {
    height: 220px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #F5F5F5;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Floating Translator Professionnel */
.floating-translator {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.floating-translator.hidden {
    left: -400px;
    opacity: 0;
}

.translator-toggle {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1A1A1A 0%, #2E2E2E 50%, #1A1A1A 100%);
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.translator-toggle::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.6s;
}

.translator-toggle:hover::before {
    left: 100%;
}

.translator-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.translate-icon {
    width: 28px;
    height: 28px;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.translator-toggle:hover .translate-icon {
    transform: rotate(5deg);
}

.translator-panel {
    position: absolute;
    left: 80px;
    top: 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #2E2E2E 100%);
    border: 2px solid #FFFFFF;
    border-radius: 20px;
    padding: 24px;
    min-width: 280px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    z-index: 1002;
}

.translator-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
}

.translator-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.translator-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.title-icon {
    width: 20px;
    height: 20px;
    color: #FFFFFF;
}

.translator-close {
    background: transparent;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.translator-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.translator-close svg {
    width: 18px;
    height: 18px;
}

.translator-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 16px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    padding: 16px 20px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.lang-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.lang-option:hover::before {
    left: 100%;
}

.lang-option:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.lang-option.active {
    background: linear-gradient(135deg, #FFFFFF, #F5F5F5);
    color: #000000;
    border-color: #FFFFFF;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.lang-flag {
    font-size: 24px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.lang-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lang-name {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.2;
}

.lang-code {
    font-weight: 500;
    font-size: 0.85rem;
    opacity: 0.7;
    letter-spacing: 1px;
}

.lang-check {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.lang-option.active .lang-check {
    opacity: 1;
}

.lang-check svg {
    width: 16px;
    height: 16px;
}

/* Zone de corbeille pour mobile */
.trash-zone {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF4444, #CC0000);
    border: 2px solid #FFFFFF;
    border-radius: 20px;
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(255, 68, 68, 0.4);
    z-index: 1001;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-50%) scale(0.8);
}

.trash-zone.active {
    display: flex;
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.trash-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.trash-icon svg {
    width: 24px;
    height: 24px;
    color: #FFFFFF;
}

.trash-text {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

/* Animations pour la zone de corbeille */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(255, 68, 68, 0.4);
    }
    100% {
        transform: scale(1.05);
        box-shadow: 0 12px 40px rgba(255, 68, 68, 0.6);
    }
}

@keyframes trashSuccess {
    0% {
        transform: scale(1);
        background: linear-gradient(135deg, #FF4444, #CC0000);
    }
    50% {
        transform: scale(1.2);
        background: linear-gradient(135deg, #00FF00, #00CC00);
    }
    100% {
        transform: scale(1);
        background: linear-gradient(135deg, #FF4444, #CC0000);
    }
}

/* Masquer le contenu du site par défaut pendant le chargement */
body {
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

/* Masquer le contenu par défaut au chargement initial */
.navbar,
.hero,
.ambiance-latino,
.soirees-inoubliables,
.programme,
.soirees,
.galerie,
.club,
.contact,
footer,
.floating-translator {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}

body.loading .navbar,
body.loading .hero,
body.loading .ambiance-latino,
body.loading .soirees-inoubliables,
body.loading .programme,
body.loading .soirees,
body.loading .galerie,
body.loading .club,
body.loading .contact,
body.loading footer,
body.loading .floating-translator {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}

/* Animation d'apparition du contenu après le chargement */
body:not(.loading) .navbar,
body:not(.loading) .hero,
body:not(.loading) .ambiance-latino,
body:not(.loading) .soirees-inoubliables,
body:not(.loading) .programme,
body:not(.loading) .soirees,
body:not(.loading) .galerie,
body:not(.loading) .club,
body:not(.loading) .contact,
body:not(.loading) footer,
body:not(.loading) .floating-translator {
    opacity: 1;
    visibility: visible;
    animation: contentFadeIn 0.8s ease-out;
}

/* Écran de chargement parfait */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 50%, #2E2E2E 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
    animation: loadingFadeIn 0.5s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.loading-logo-container {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-logo {
    width: 180px;
    height: 180px;
    object-fit: contain;
    animation: logoPulse 2s ease-in-out infinite;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.orbiting-sphere {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #FFFFFF, #E0E0E0);
    border-radius: 50%;
    box-shadow: 
        0 0 15px rgba(255, 255, 255, 0.8), 
        0 0 30px rgba(255, 255, 255, 0.4),
        inset 0 0 10px rgba(255, 255, 255, 0.3);
    animation: orbit 3s linear infinite, sphereGlow 2s ease-in-out infinite alternate;
    z-index: 1;
}

.loading-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.loading-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    letter-spacing: 0.1em;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

.loading-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #CCCCCC;
    text-align: center;
    margin: 0;
    opacity: 0.9;
}

.loading-dots {
    display: flex;
    gap: 0.5rem;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    background: #FFFFFF;
    border-radius: 50%;
    animation: dotPulse 1.4s ease-in-out infinite;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}


/* Animations */
@keyframes orbit {
    0% {
        transform: rotate(0deg) translateX(120px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(120px) rotate(-360deg);
    }
}


@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.6));
    }
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    100% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.3);
    }
}

@keyframes dotPulse {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes sphereGlow {
    0% {
        box-shadow: 
            0 0 15px rgba(255, 255, 255, 0.8), 
            0 0 30px rgba(255, 255, 255, 0.4),
            inset 0 0 10px rgba(255, 255, 255, 0.3);
    }
    100% {
        box-shadow: 
            0 0 25px rgba(255, 255, 255, 1), 
            0 0 50px rgba(255, 255, 255, 0.6),
            inset 0 0 15px rgba(255, 255, 255, 0.5);
    }
}

@keyframes loadingFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes dotPulse {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes sphereGlow {
    0% {
        box-shadow: 
            0 0 15px rgba(255, 255, 255, 0.8), 
            0 0 30px rgba(255, 255, 255, 0.4),
            inset 0 0 10px rgba(255, 255, 255, 0.3);
    }
    100% {
        box-shadow: 
            0 0 25px rgba(255, 255, 255, 1), 
            0 0 50px rgba(255, 255, 255, 0.6),
            inset 0 0 15px rgba(255, 255, 255, 0.5);
    }
}

@keyframes loadingFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes contentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive pour l'écran de chargement */
@media (max-width: 768px) {
    .loading-logo-container {
        width: 150px;
        height: 150px;
    }
    
    .loading-logo {
        width: 90px;
    }
    
    .orbiting-sphere {
        width: 16px;
        height: 16px;
    }
    
    @keyframes orbit {
        0% {
            transform: rotate(0deg) translateX(75px) rotate(0deg);
        }
        100% {
            transform: rotate(360deg) translateX(75px) rotate(-360deg);
        }
    }
    
    .loading-title {
        font-size: 1.5rem;
    }
    
    .loading-container {
        gap: 2rem;
    }
}

/* Bouton pour masquer le traducteur */
.hide-translator-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #FF4444, #CC0000);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    text-align: left;
    margin-top: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.hide-translator-btn:hover {
    background: linear-gradient(135deg, #FF6666, #DD2222);
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.3);
}

.hide-translator-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFFFFF, #F5F5F5);
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Ajustement pour mobile - compenser la hauteur de la navbar */
@media (max-width: 768px) {
    .hero {
        padding-top: 90px;
        height: 100vh;
        min-height: 100vh;
    }
    
    .hero-video {
        top: 90px;
        height: calc(100vh - 90px);
    }
    
    .hero-content {
        margin-top: -90px;
        padding-top: 90px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 80px;
        height: 100vh;
        min-height: 100vh;
    }
    
    .hero-video {
        top: 80px;
        height: calc(100vh - 80px);
    }
    
    .hero-content {
        margin-top: -80px;
        padding-top: 80px;
    }
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    /* Optimisations pour mobile */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* Forcer la lecture sur mobile */
    -webkit-playsinline: true;
    playsinline: true;
    -webkit-perspective: 1000;
    perspective: 1000;
    /* Masquer les contrôles */
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Masquer complètement les contrôles vidéo */
.hero-video::-webkit-media-controls {
    display: none !important;
}

.hero-video::-webkit-media-controls-panel {
    display: none !important;
}

.hero-video::-webkit-media-controls-play-button {
    display: none !important;
}

.hero-video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

/* Gestion des vidéos desktop et mobile */
.hero-video-desktop {
    display: block;
}

.hero-video-mobile {
    display: none;
}

@media (max-width: 768px) {
    .hero-video-desktop {
        display: none;
    }
    
    .hero-video-mobile {
        display: block;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23FFFFFF" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    text-align: center;
    z-index: 3;
    position: relative;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.neon-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.neon-letter.visible {
    opacity: 1;
    transform: translateY(0);
}

.neon-letter.neon-active {
    animation: neonFlicker 1.5s infinite ease-in-out;
}

.neon-space {
    width: 20px;
}

@keyframes neonFlicker {
    0%, 100% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.3),
                     0 0 10px rgba(255, 255, 255, 0.2);
        opacity: 0.4;
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 1),
                     0 0 30px rgba(255, 255, 255, 0.8),
                     0 0 40px rgba(255, 255, 255, 0.6);
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #F5F5F5;
    margin-bottom: 2rem;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button::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 ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background-color: #FFFFFF;
    color: #000000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Sections communes */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #FFFFFF;
    letter-spacing: 1px;
}

/* Programme Section */
.programme {
    padding: 100px 0;
    background-color: #1A1A1A;
}

/* ANCIEN SLIDER DÉSACTIVÉ - UTILISE slider-simple.css */
.programme-slider {
    /* margin-top: 2rem; */
}

/* ANCIEN SLIDER DÉSACTIVÉ - UTILISE slider-simple.css */
.programme-slider .slider-container {
    /* position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(135deg, #1A1A1A 0%, #2E2E2E 100%);
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 100%; */
}

/* ANCIEN SLIDER DÉSACTIVÉ - UTILISE slider-simple.css */
.programme-slider .slider-track {
    /* display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    justify-content: flex-start;
    width: auto;
    min-width: 100%; */
}

/* ANCIEN SLIDER DÉSACTIVÉ - UTILISE slider-simple.css */
.programme-slider .event-card {
    /* flex: 0 0 400px;
    width: 400px;
    background-color: #2E2E2E;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    min-width: 400px; */
}

/* ANCIEN SLIDER DÉSACTIVÉ - UTILISE slider-simple.css */
.programme-slider .event-card:hover {
    /* transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.15),
                0 0 20px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2); */
}

.programme-more {
    text-align: center;
    margin-top: 2rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.event-card {
    background-color: #2E2E2E;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.event-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.event-image {
    height: 250px;
    background-color: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
    border-radius: 0;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.event-card-large:hover .event-image img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Styles spécifiques pour les flyers du programme */
.programme-slider .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

.programme-slider .event-card:hover .event-image img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Animation hover pour les cartes dans le slider */
.programme-slider .event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.image-placeholder {
    color: #F5F5F5;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    padding: 20px;
    border: 2px dashed #F5F5F5;
    border-radius: 5px;
    width: 80%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-card:hover .image-placeholder {
    border-color: #FFFFFF;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.event-info {
    padding: 1.5rem;
}

.event-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.event-date, .event-dj, .event-theme {
    color: #F5F5F5;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.reserve-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 10px 25px;
    background: transparent;
    border: 1px solid #F5F5F5;
    color: #F5F5F5;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.reserve-btn:hover {
    background-color: #F5F5F5;
    color: #000000;
    box-shadow: 0 0 15px rgba(245, 245, 245, 0.3);
}

/* Soirées Section */
.soirees {
    padding: 100px 0;
    background-color: #000000;
}

.soirees-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.soirees-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.soirees-text p {
    color: #F5F5F5;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.soirees-list {
    list-style: none;
    margin-bottom: 2rem;
}

.soirees-list li {
    color: #F5F5F5;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
}

.soirees-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #FFFFFF;
    font-weight: bold;
}

.soirees-image {
    height: 400px;
    background-color: #1A1A1A;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Galerie Section */
.galerie {
    padding: 100px 0;
    background-color: #1A1A1A;
    min-height: 500px;
}

/* Galerie avec interface moderne pour photos */
.gallery-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    box-shadow: none;
    margin: 20px 0;
}

/* ANCIEN SLIDER DÉSACTIVÉ - UTILISE slider-simple.css */
/* .slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(135deg, #1A1A1A 0%, #2E2E2E 100%);
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
} */

/* Track de la galerie - interface moderne */
.gallery-slider .slider-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: max-content;
    will-change: transform;
    gap: 2rem;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    align-items: center;
}

/* Interface moderne pour les images de galerie */
.gallery-item {
    flex: 0 0 300px;
    height: 200px;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.08);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.slider-btn {
    background: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: #FFFFFF;
    color: #000000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.gallery-more {
    text-align: center;
    margin-top: 2rem;
}

.more-btn {
    display: inline-block;
    padding: 15px 30px;
    background: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.more-btn::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 ease;
}

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

.more-btn:hover {
    background-color: #FFFFFF;
    color: #000000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.gallery-item {
    height: 250px;
    background-color: #1A1A1A;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.15),
                0 0 20px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.gallery-item .image-placeholder {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    transition: all 0.4s ease;
    filter: brightness(0.9) contrast(1.1);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.2) saturate(1.1);
}

/* Section Ambiance Latino */
.ambiance-latino {
    padding: 100px 0;
    background-color: #1A1A1A;
}

.ambiance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ambiance-image {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.ambiance-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.ambiance-image:hover img {
    transform: scale(1.05);
}

.ambiance-text {
    color: #FFFFFF;
}

.ambiance-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #F5F5F5;
}

.ambiance-features {
    margin-top: 2rem;
}

.ambiance-features h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.ambiance-features ul {
    list-style: none;
    padding: 0;
}

.ambiance-features li {
    padding: 0.5rem 0;
    color: #F5F5F5;
    position: relative;
    padding-left: 1.5rem;
}

.ambiance-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #FFFFFF;
    font-weight: bold;
}

/* Section Soirées Inoubliables */
.soirees-inoubliables {
    padding: 100px 0;
    background-color: #2E2E2E;
}

.soirees-inoubliables .soirees-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.soirees-inoubliables .soirees-text {
    color: #FFFFFF;
}

.soirees-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #F5F5F5;
}

.soirees-features {
    margin-top: 2rem;
}

.soirees-features h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.soirees-features ul {
    list-style: none;
    padding: 0;
}

.soirees-features li {
    padding: 0.5rem 0;
    color: #F5F5F5;
    position: relative;
    padding-left: 1.5rem;
}

.soirees-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #FFFFFF;
    font-weight: bold;
}

.soirees-inoubliables .soirees-image {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.soirees-inoubliables .soirees-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.soirees-inoubliables .soirees-image:hover img {
    transform: scale(1.05);
}

/* Club Section */
.club {
    padding: 100px 0;
    background-color: #1A1A1A;
}

.club-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.club-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.club-description {
    color: #F5F5F5;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.club-features {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #2E2E2E;
    border-radius: 10px;
    border-left: 4px solid #FFFFFF;
}

.club-features h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
}

.club-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.club-features li {
    color: #F5F5F5;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
}

.club-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #FFFFFF;
    font-weight: bold;
}

.dress-code {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #2E2E2E;
    border-radius: 10px;
    border-left: 4px solid #FFFFFF;
}

.dress-code h3 {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.dress-code p {
    color: #F5F5F5;
    font-style: italic;
}

.club-image {
    height: 400px;
    background-color: #2E2E2E;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #1A1A1A;
    position: relative;
    z-index: 1;
    display: block;
    visibility: visible;
    opacity: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
}

.contact-item p {
    color: #F5F5F5;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    color: #F5F5F5;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #F5F5F5;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    background-color: #F5F5F5;
    color: #000000;
    box-shadow: 0 0 15px rgba(245, 245, 245, 0.3);
}

.contact-form {
    background-color: #1A1A1A;
    padding: 2rem;
    border-radius: 10px;
}

.contact-form h3 {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: #2E2E2E;
    border: 1px solid #F5F5F5;
    border-radius: 5px;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFFFFF;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #F5F5F5;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.submit-btn:hover {
    background-color: #FFFFFF;
    color: #000000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background-color: #1A1A1A;
    padding: 2rem 0;
    border-top: 1px solid #2E2E2E;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    color: #FFFFFF;
    letter-spacing: 2px;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    color: #F5F5F5;
    margin-bottom: 0.5rem;
}

.legal-link {
    color: #F5F5F5;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #FFFFFF;
}

/* Modal pour les flyers */
.flyer-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.flyer-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #1A1A1A 0%, #2E2E2E 100%);
    border-radius: 10px;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: modalSlideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Mobile - Même structure que PC */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95vw;
        max-height: 85vh;
        margin: 10px;
    }
    
    .modal-image-container {
        min-width: 200px;
        max-width: 400px;
    }
    
    .modal-info {
        padding: 2rem;
        min-width: 200px;
        max-width: 300px;
    }
    
    .modal-info h3 {
        font-size: 1.8rem;
    }
    
    .modal-info p {
        font-size: 1rem;
    }
    
    .modal-reserve-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
}


.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #FFFFFF;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.modal-image-container {
    flex: 1;
    min-width: 400px;
    max-width: 600px;
    position: relative;
    overflow: hidden;
}

.modal-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}


.modal-image:hover {
    transform: scale(1.05);
}

.modal-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 300px;
    max-width: 400px;
}

.modal-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.modal-info p {
    color: #F5F5F5;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.modal-info p:first-of-type {
    font-weight: 600;
    color: #FFFFFF;
    font-size: 1.2rem;
}

.modal-reserve-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 15px 30px;
    background: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.modal-reserve-btn::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 ease;
}

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

.modal-reserve-btn:hover {
    background-color: #FFFFFF;
    color: #000000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Modal pour la galerie */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    animation: fadeIn 0.3s ease;
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-content {
    position: relative;
    background: linear-gradient(135deg, #1A1A1A 0%, #2E2E2E 100%);
    border-radius: 10px;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: modalSlideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-image-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.gallery-modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.gallery-navigation {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.gallery-prev, .gallery-next {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
}

.gallery-prev:hover, .gallery-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.gallery-prev:active, .gallery-next:active {
    transform: scale(0.95);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

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

/* Optimisations pour mobile - styles minimaux */
.event-card, .event-card-large, .gallery-item {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Styles de base pour assurer l'affichage */
html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* S'assurer que le contenu est visible */
.container {
    display: block;
    visibility: visible;
    opacity: 1;
}

/* Styles de base pour les sections */
.programme, .soirees, .galerie, .club, .contact {
    display: block;
    visibility: visible;
    opacity: 1;
}

/* Styles spécifiques pour la galerie - styles principaux déjà définis plus haut */

/* Hero section - styles déjà définis plus haut */

/* Empêcher le zoom sur les éléments interactifs */
input, textarea, select {
    touch-action: manipulation;
}

/* Empêcher le zoom au double-tap - seulement sur les éléments interactifs */
.event-card, .event-card-large, .gallery-item {
    touch-action: manipulation;
}

/* ANCIEN SLIDER DÉSACTIVÉ - UTILISE slider-simple.css */
/* .programme-slider, .gallery-slider {
    touch-action: pan-y;
} */

.gallery-slider {
    touch-action: pan-y;
}

/* ANCIEN SLIDER DÉSACTIVÉ - UTILISE slider-simple.css */
/* .programme-slider .slider-track, .gallery-slider .slider-track {
    touch-action: pan-y;
} */

.gallery-slider .slider-track {
    touch-action: pan-y;
}

/* ANCIEN SLIDER DÉSACTIVÉ - UTILISE slider-simple.css */
/* .programme-slider .slider-container {
    position: relative;
} */

.gallery-slider .slider-container {
    position: relative;
}

/* Empêcher le déplacement horizontal du site */
body {
    overflow-x: hidden;
}

/* Permettre la sélection de texte dans les formulaires */
input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Empêcher le zoom sur les inputs */
input[type="text"], input[type="email"], textarea {
    font-size: 16px !important;
}

/* Optimisations pour les cartes d'événements sur mobile */
@media (max-width: 1024px) {
    .event-card, .event-card-large {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        margin: 0 auto;
        max-width: 90%;
    }
    
    .event-card:hover, .event-card-large:hover {
        transform: none;
    }
    
    .event-card:active, .event-card-large:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    /* ANCIEN SLIDER DÉSACTIVÉ - UTILISE slider-simple.css */
    /* .programme-slider .slider-track {
        justify-content: flex-start;
        align-items: center;
        padding: 0 20px;
        gap: 1rem;
    }
    
    .programme-slider .event-card {
        flex: 0 0 280px !important;
        width: 280px !important;
        margin: 0;
        max-width: 280px !important;
        min-width: 280px !important;
        max-height: 400px;
    }
    
    .programme-slider .slider-container {
        padding: 0 10px;
        overflow-x: hidden;
    }
    
    .programme-slider {
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
    }
    
    .programme-slider .slider-container {
        overflow: hidden;
        position: relative;
    }
    
    .programme-slider .slider-track {
        transform: translateX(0px);
        transition: transform 0.5s ease;
    }
    
    .programme-slider .slider-container {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        overflow: hidden;
    } */
    
    /* Centrer le contenu du programme */
    .programme {
        text-align: center;
    }
    
    .programme .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Améliorer la navigation tactile */
    .slider-controls {
        position: relative;
        margin-top: 1rem;
    }
    
    .slider-btn {
        padding: 15px 20px;
        font-size: 1.5rem;
        min-width: 50px;
        min-height: 50px;
        touch-action: manipulation;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .logo-img {
        height: 180px;
    }
    
    .nav-container {
        height: 140px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .events-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .gallery-item {
        flex: 0 0 280px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed !important;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.95) 100%) !important;
        width: 100%;
        height: auto;
        text-align: center;
        transition: 0.3s ease;
        padding: 1.5rem 0;
        backdrop-filter: blur(20px);
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-link {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        color: #FFFFFF !important;
        text-decoration: none;
        transition: all 0.3s ease;
        display: block;
        border-radius: 0;
        margin: 0.1rem 0;
        background-color: transparent !important;
        border-left: 3px solid transparent;
        font-weight: 400;
    }
    
    .nav-menu .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.05) !important;
        color: #FFFFFF !important;
        border-left-color: rgba(255, 255, 255, 0.5);
        padding-left: 2rem;
    }
    
    .nav-menu .login-btn {
        margin: 0.5rem 1.5rem;
        padding: 0.75rem 1.5rem;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    /* Floating Translator Mobile */
    .floating-translator {
        left: 15px;
        top: 50%;
    }
    
    .translator-toggle {
        width: 56px;
        height: 56px;
    }
    
    .translate-icon {
        width: 24px;
        height: 24px;
    }
    
    .translator-panel {
        left: 70px;
        min-width: 240px;
        padding: 20px;
    }
    
    .translator-title {
        font-size: 1.1rem;
    }
    
    .title-icon {
        width: 18px;
        height: 18px;
    }
    
    .lang-option {
        padding: 14px 16px;
        gap: 14px;
    }
    
    .lang-flag {
        font-size: 20px;
        width: 28px;
        height: 28px;
    }
    
    .lang-name {
        font-size: 0.95rem;
    }
    
    .lang-code {
        font-size: 0.8rem;
    }
    
    /* Zone de corbeille mobile */
    .trash-zone {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%) scale(0.8);
        padding: 16px;
    }
    
    .trash-zone.active {
        transform: translateX(-50%) scale(1);
    }
    
    .trash-icon {
        width: 36px;
        height: 36px;
    }
    
    .trash-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .trash-text {
        font-size: 0.85rem;
    }

    .nav-toggle {
        display: flex !important;
        background: transparent !important;
        background-color: transparent !important;
        border: 2px solid #FFFFFF !important;
        color: #FFFFFF !important;
        padding: 0.5rem;
        border-radius: 5px;
        transition: none !important;
    }
    
    /* Supprime complètement l'effet hover pour éviter le blocage */
    .nav-toggle:hover,
    .nav-toggle:active,
    .nav-toggle:focus,
    .nav-toggle:visited,
    .nav-toggle:link {
        background: transparent !important;
        background-color: transparent !important;
        color: #FFFFFF !important;
    }
    
    /* Force l'état transparent dans tous les cas */
    .nav-toggle * {
        color: #FFFFFF !important;
    }

    .logo-img {
        height: 110px;
    }
    
    .nav-container {
        height: 90px;
        padding: 0 15px;
    }
    
    .navbar {
        padding: 0;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .neon-space {
        width: 8px;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .club-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .soirees-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Éviter le blocage sur mobile */
    .contact {
        position: relative;
        z-index: 1;
        display: block;
        visibility: visible;
        opacity: 1;
        background-color: #1A1A1A;
        padding: 80px 0;
        min-height: auto;
        overflow: visible;
    }
    
    .contact-form {
        position: relative;
        z-index: 1;
        display: block;
        visibility: visible;
        opacity: 1;
    }
    
    .contact-item {
        position: relative;
        z-index: 1;
        display: block;
        visibility: visible;
        opacity: 1;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* S'assurer que le footer ne bloque pas */
    footer {
        position: relative;
        z-index: 1;
        display: block;
        visibility: visible;
        opacity: 1;
        background-color: #000000;
        padding: 40px 0;
        min-height: auto;
        overflow: visible;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-slider {
        padding: 15px;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    
    .gallery-slider .slider-track {
        width: max-content;
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        border-radius: 0;
        gap: 1.5rem;
    }
    
    .gallery-item {
        flex: 0 0 250px;
        height: 180px;
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }
    
    .gallery-item img {
        border-radius: 13px;
    }
    
    /* Responsive pour les nouvelles sections */
    .ambiance-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ambiance-image {
        width: 100%;
        max-width: 100%;
        margin-top: 2rem;
    }
    
    .ambiance-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
        display: block;
    }
    
    /* Bouton Réserver dans Ambiance Latino sur mobile */
    .ambiance-latino .cta-button {
        position: relative;
        z-index: 10;
        margin-top: 1.5rem;
        display: inline-block;
        background-color: #FFFFFF;
        color: #000000;
        padding: 12px 24px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    }
    
    .ambiance-latino .cta-button:hover {
        background-color: #F0F0F0;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    }
    
    .soirees-inoubliables .soirees-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .soirees-inoubliables .soirees-image {
        width: 100%;
        max-width: 100%;
        margin-top: 2rem;
    }
    
    .soirees-inoubliables .soirees-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
        display: block;
    }
    
    /* Bouton Réserver dans Soirées Inoubliables sur mobile */
    .soirees-inoubliables .cta-button {
        position: relative;
        z-index: 10;
        margin-top: 1.5rem;
        display: inline-block;
        background-color: #FFFFFF;
        color: #000000;
        padding: 12px 24px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    }
    
    .soirees-inoubliables .cta-button:hover {
        background-color: #F0F0F0;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    }
    
    /* ANCIEN SLIDER DÉSACTIVÉ - UTILISE slider-simple.css */
    /* .slider-container {
        padding: 15px;
    } */
}

@media (max-width: 480px) {
    .logo-img {
        height: 90px;
    }
    
    .nav-container {
        height: 80px;
        padding: 0 12px;
    }
    
    .nav-menu {
        top: 80px;
        padding: 1rem 0;
    }
    
    .nav-menu .nav-link {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }
    
    /* Images des nouvelles sections sur très petit mobile */
    .ambiance-image img {
        object-fit: contain;
    }
    
    .soirees-inoubliables .soirees-image img {
        object-fit: contain;
    }
    
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
    }
    
    .neon-space {
        width: 5px;
    }

    .container {
        padding: 0 15px;
    }

    .events-grid {
        gap: 1rem;
    }

    .event-card {
        margin: 0 10px;
    }
    
    .gallery-item {
        flex: 0 0 200px;
        height: 150px;
    }
    
    /* ANCIEN SLIDER DÉSACTIVÉ - UTILISE slider-simple.css */
    /* .slider-container {
        padding: 10px;
    } */
    
    .neon-text {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .neon-space {
        width: 10px;
    }
    
    /* Modal responsive */
    .modal-content {
        flex-direction: column;
        max-width: 95vw;
        max-height: 95vh;
        margin: 10px;
        border-radius: 15px;
    }
    
    .modal-image-container {
        min-width: 100%;
        max-width: 100%;
        height: 250px;
        border-radius: 15px 15px 0 0;
        overflow: hidden;
    }
    
    .modal-info {
        padding: 1.5rem;
        min-width: 100%;
        max-width: 100%;
    }
    
    .modal-info h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .modal-info p {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .modal-reserve-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        margin-top: 1.5rem;
    }
    
    .modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
    
    /* Modal de galerie responsive */
    .gallery-modal-content {
        width: 95vw;
        height: 85vh;
        max-width: 100vw;
        max-height: 100vh;
    }
    
    .gallery-image-container {
        height: 60vh;
        max-height: 500px;
    }
}

/* Optimisations pour très petits écrans */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .modal-content {
        margin: 5px;
        max-width: 98vw;
        max-height: 98vh;
    }
    
    .modal-image-container {
        height: 200px;
    }
    
    .modal-info {
        padding: 1rem;
    }
    
    .modal-info h3 {
        font-size: 1.5rem;
    }
    
    .modal-info p {
        font-size: 0.9rem;
    }
    
    .modal-reserve-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

/* ===== LOGIN SYSTEM - GLASS MORPHISM ===== */

/* Login Button in Navigation - Style harmonisé */
.login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 16px;
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

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

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

.login-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.login-btn:active {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.05);
}

.login-icon {
    width: 16px;
    height: 16px;
    transition: all 0.3s ease;
}

.login-btn:hover .login-icon {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* Login Modal */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-modal.active {
    display: flex;
    animation: loginFadeIn 0.4s ease-out;
}

@keyframes loginFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.login-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    animation: overlayFadeIn 0.3s ease-out;
}

@keyframes overlayFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.login-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    z-index: 10001;
}

/* Glass Morphism Container - Effets améliorés */
.login-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    animation: glassSlideIn 0.5s ease-out;
    transition: all 0.3s ease;
}

.login-glass:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
}

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

/* Glass effect overlay */
.login-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

/* Close Button - Effets de zoom améliorés */
.login-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    transform: scale(1);
}

.login-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.login-close:active {
    transform: rotate(90deg) scale(0.95);
}

/* Login Header */
.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo {
    width: 140px;
    height: 140px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.25);
    padding: 20px;
    backdrop-filter: blur(25px);
    border: 4px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
    box-shadow: 0 8px 40px rgba(255, 255, 255, 0.2);
}

.login-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 50px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.7);
}

.login-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.login-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.login-title:hover {
    transform: scale(1.02);
    text-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.login-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 300;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.login-subtitle:hover {
    transform: scale(1.02);
    color: rgba(255, 255, 255, 0.8);
}

/* Form Styles */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    position: relative;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    transform: scale(1);
}

.input-container:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
}

.input-container:focus-within {
    transform: scale(1.03);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 0 0 3px rgba(255, 255, 255, 0.1),
        0 8px 25px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
}

.input-icon {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.input-container:hover .input-icon {
    transform: scale(1.1);
    color: rgba(255, 255, 255, 0.8);
}

.input-container:focus-within .input-icon {
    color: rgba(255, 255, 255, 0.9);
    transform: scale(1.15);
}

.input-container input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #FFFFFF;
    font-size: 1rem;
    padding: 16px 0;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    min-height: 20px;
}

/* Désactivation complète de l'autofill de Google */
.input-container input:-webkit-autofill,
.input-container input:-webkit-autofill:hover,
.input-container input:-webkit-autofill:focus,
.input-container input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px transparent inset !important;
    -webkit-text-fill-color: #FFFFFF !important;
    background-color: transparent !important;
    background: transparent !important;
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: none !important;
    -webkit-autofill: off !important;
    autocomplete: off !important;
}

/* Correction pour les champs pré-remplis */
.input-container input[value]:not([value=""]),
.input-container input:not(:placeholder-shown) {
    color: #FFFFFF !important;
    opacity: 1;
}

/* Correction spécifique pour le mot de passe pré-rempli */
.input-container input[type="password"][value]:not([value=""]),
.input-container input[type="password"]:not(:placeholder-shown),
.input-container input[type="password"]:-webkit-autofill {
    color: #FFFFFF !important;
    opacity: 1;
    -webkit-text-security: disc !important;
    text-security: disc !important;
    -webkit-text-fill-color: #FFFFFF !important;
    background: transparent !important;
    background-color: transparent !important;
    -webkit-box-shadow: 0 0 0 30px transparent inset !important;
    box-shadow: none !important;
}

.input-container input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.password-toggle {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 8px;
    transform: scale(1);
}

.password-toggle:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.password-toggle:active {
    transform: scale(0.95);
}

.eye-icon {
    width: 18px;
    height: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.password-toggle:hover .eye-icon {
    transform: scale(1.1);
}

/* Login Options */
.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.remember-me:hover {
    transform: scale(1.02);
    color: rgba(255, 255, 255, 0.9);
}

.remember-me input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1);
}

.remember-me:hover .checkmark {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.remember-me input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

.remember-me input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.forgot-password {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
    display: inline-block;
}

.forgot-password:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

/* Submit Button - Couleurs cohérentes avec le site */
.login-submit {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.login-submit:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.5);
}

.login-submit:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.login-submit::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.6s ease;
}

.login-submit:hover::before {
    left: 100%;
}

.login-arrow {
    width: 18px;
    height: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.login-submit:hover .login-arrow {
    transform: translateX(4px) scale(1.1);
}

/* Divider */
.login-divider {
    position: relative;
    text-align: center;
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.login-divider span {
    background: rgba(255, 255, 255, 0.05);
    padding: 0 20px;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.login-divider:hover span {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.08);
}


/* Login Footer */
.login-footer {
    text-align: center;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.login-footer:hover {
    transform: scale(1.02);
    color: rgba(255, 255, 255, 0.8);
}

.register-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
    display: inline-block;
}

.register-link:hover {
    color: #FFFFFF;
    transform: scale(1.05);
}

/* Mobile Responsive for Login */
@media (max-width: 768px) {
    .login-container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .login-glass {
        padding: 30px 25px;
        border-radius: 20px;
    }
    
    .login-title {
        font-size: 1.8rem;
    }
    
    .login-options {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .social-login {
        gap: 10px;
    }
    
    .social-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}
