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

body {
    font-family: 'Roboto', 'Arial', sans-serif;
    background: #000;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navigation moderne élégante */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 170px; /* Ajusté pour le logo 250x150 */
}

/* Logo plus gros et moderne */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 150px !important; /* Hauteur ajustée à 150px */
    width: 250px !important; /* Largeur ajustée à 250px */
    object-fit: cover !important; /* COVER au lieu de contain pour remplir */
    object-position: center !important; /* Centrer l'image */
    filter: brightness(1.1);
    max-height: none !important; /* Enlever toute limitation */
    max-width: none !important; /* Enlever toute limitation */
    transform: scale(1); /* Forcer le rendu */
    border-radius: 8px; /* Un peu d'arrondi pour le style */
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px; /* Plus gros */
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Menu navigation élégant */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, #ff6b35, #ff9500);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover {
    color: #ff6b35;
}

/* Hero section moderne avec slider */
.hero {
    position: relative;
    height: 100vh;
    margin-top: -170px; /* Compenser la hauteur ajustée de la navbar */
    padding-top: 170px; /* Ajouter le padding pour le contenu */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Contrôles du slider */
/* Indicateurs du slider */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 15;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ff6b35;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

/* Titres hero modernes */
.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.1;
    background: linear-gradient(45deg, #fff, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: #e0e0e0;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Boutons modernes */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b35, #ff9500);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

/* Sections modernes */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: #111;
}

.section-light {
    background: #1a1a1a;
}

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

/* Headers de section élégants */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff9500);
}

.section-header p {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Cartes modernes pour événements */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.event-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 53, 0.3);
}

.event-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.event-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ff6b35, #ff9500);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.event-content {
    padding: 25px;
}

.event-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.event-description {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.event-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.event-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff6b35;
}

.event-actions {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #ff8c42, #ffaa5a);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-outline {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.btn-outline:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

/* Footer moderne */
.footer {
    background: #000;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff6b35;
}

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

/* Responsive moderne */
@media (max-width: 768px) {
    /* Navigation mobile optimisée */
    .nav-menu {
        display: none;
    }
    
    .nav-menu.show {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 107, 53, 0.3);
        padding: 20px 0;
        animation: slideDown 0.3s ease;
    }
    
    .nav-item {
        margin: 5px 0;
        text-align: center;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 12px 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(255, 107, 53, 0.1);
        color: #ff6b35;
    }
    
    /* Hero section mobile - garder grandeur et impact */
    .hero h1 {
        font-size: 2.8rem; /* Plus grand pour impact */
        line-height: 1.1;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 1.2rem; /* Plus visible */
        margin-bottom: 25px;
        padding: 0 20px;
    }
    
    .hero-buttons {
        flex-direction: row; /* Garder horizontal comme PC */
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .btn {
        padding: 12px 20px; /* Boutons plus substantiels */
        font-size: 1rem;
        min-width: 140px;
    }
    
    /* Sections - garder espacement généreux */
    .section {
        padding: 70px 0; /* Plus d'espace comme PC */
    }
    
    .section-header h2 {
        font-size: 2.2rem; /* Titre plus gros */
        margin-bottom: 15px;
    }
    
    .section-header p {
        font-size: 1.1rem;
        max-width: 90%;
        margin: 0 auto;
    }
    
    /* Container plus généreux sur mobile */
    .container {
        padding: 0 20px; /* Plus d'espace latéral */
        max-width: 100%;
    }
    
    /* Services grid - 2 colonnes sur tablet */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    /* Galerie optimisée */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Logo mobile plus visible */
    .logo-text {
        font-size: 22px;
        font-weight: 700;
    }
    
    .logo-img {
        height: 50px; /* Plus grand */
    }
    
    /* Contact grid mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

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

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
} 
        90% 30%, 
        95% 100%, 
        100% 0%
    );
}

.navbar.scrolled {
    background: 
        linear-gradient(135deg, rgba(139, 0, 0, 0.95) 0%, rgba(178, 34, 34, 0.95) 30%, rgba(139, 0, 0, 0.95) 60%, rgba(160, 82, 45, 0.95) 100%);
    box-shadow: 0 2px 20px rgba(255, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 2rem;
    min-height: 70px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

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

.logo-placeholder {
    padding: 8px 16px;
    background: linear-gradient(45deg, #ff0000, #cc0000);
    border-radius: 8px;
    border: 2px solid #8B0000;
}

.logo-text {
    font-family: 'Metal Mania', cursive;
    font-size: 1.5rem;
    color: #FFD700;
    font-weight: bold;
    text-shadow: 1px 1px 0px #000000;
}

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

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
}

.nav-menu a:hover {
    color: #ff0000;
    border-color: #ff0000;
    text-shadow: 0 0 5px #ff0000;
    transform: translateY(-2px);
}

.btn-admin {
    background: linear-gradient(45deg, #ff0000, #ff6600);
    color: white !important;
    border-radius: 25px;
    padding: 0.5rem 1.5rem !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.btn-admin:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
}

/* Menu Mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.mobile-menu-toggle:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.5);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ff6b35;
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Slider */
.hero {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.hero-slider {
    position: relative;
    height: 100vh;
    width: 100vw;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.slide-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 5px;
    animation: pulse 2s infinite;
}

.slide-content p {
    font-family: 'Rye', 'Butcherman', cursive;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffaa00;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        0 0 10px #ffaa00,
        0 0 20px #ff6600,
        1px 1px 0px #000000;
    font-weight: bold;
}

@keyframes pulse {
    0%, 100% { text-shadow: 0 0 20px #ff0000, 0 0 40px #ff0000; }
    50% { text-shadow: 0 0 30px #ff0000, 0 0 60px #ff0000, 0 0 80px #ff0000; }
}

/* Boutons Rock */
.rock-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-rock {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'Butcherman', 'Metal Mania', cursive;
    letter-spacing: 2px;
    border: 3px solid;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-shadow: 2px 2px 0px #000000;
    transform: skew(-10deg);
}

.btn-rock.primary {
    background: linear-gradient(45deg, #ff0000, #cc0000, #ff0000);
    color: #ffffff;
    border-color: #ff0000;
    box-shadow: 
        0 0 20px rgba(255, 0, 0, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-rock.primary:hover {
    background: linear-gradient(45deg, #ff3333, #ff0000, #ff3333);
    color: #ffffff;
    transform: skew(-10deg) translateY(-3px) scale(1.05);
    box-shadow: 
        0 0 30px rgba(255, 0, 0, 0.8),
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    text-shadow: 
        0 0 10px #ffffff,
        2px 2px 0px #000000;
}

.btn-rock.secondary {
    background: transparent;
    color: #ffaa00;
    border-color: #ffaa00;
    box-shadow: 
        0 0 20px rgba(255, 170, 0, 0.3),
        inset 0 0 20px rgba(255, 170, 0, 0.1);
}

.btn-rock.secondary:hover {
    background: linear-gradient(45deg, #ffaa00, #ff8800, #ffaa00);
    color: #000000;
    transform: skew(-10deg) translateY(-3px) scale(1.05);
    box-shadow: 
        0 0 30px rgba(255, 170, 0, 0.8),
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    text-shadow: 
        0 0 5px #ffffff,
        1px 1px 0px #000000;
}

/* Navigation du slider */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.nav-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active,
.nav-dot:hover {
    background: #ff0000;
    border-color: #ff0000;
    box-shadow: 0 0 10px #ff0000;
}

/* Section Groupes */
.bands-section {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, #2a1a1a 0%, #1a1a1a 50%, #2a1a1a 100%);
    position: relative;
    
    /* Effet papier déchiré en haut */
}

.bands-section::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 20px;
    background: 
        linear-gradient(135deg, #2a1a1a 0%, #1a1a1a 50%, #2a1a1a 100%);
    
    /* Effet de déchirure inversé */
    clip-path: polygon(
        0% 100%, 
        5% 0%, 
        10% 80%, 
        15% 0%, 
        20% 60%, 
        25% 0%, 
        30% 90%, 
        35% 0%, 
        40% 70%, 
        45% 0%, 
        50% 50%, 
        55% 0%, 
        60% 80%, 
        65% 0%, 
        70% 60%, 
        75% 0%, 
        80% 90%, 
        85% 0%, 
        90% 70%, 
        95% 0%, 
        100% 100%
    );
}

.bands-section::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 20px;
    background: 
        linear-gradient(135deg, #2a1a1a 0%, #1a1a1a 50%, #2a1a1a 100%);
    
    /* Effet de déchirure */
    clip-path: polygon(
        0% 0%, 
        8% 100%, 
        12% 20%, 
        18% 100%, 
        22% 40%, 
        28% 100%, 
        32% 10%, 
        38% 100%, 
        42% 30%, 
        48% 100%, 
        52% 50%, 
        58% 100%, 
        62% 20%, 
        68% 100%, 
        72% 40%, 
        78% 100%, 
        82% 10%, 
        88% 100%, 
        92% 30%, 
        98% 100%, 
        100% 0%
    );
}

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

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;
    color: #ff0000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-header p {
    font-size: 1.2rem;
    color: #ffaa00;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Grille des groupes */
.bands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.band-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 2px solid #333;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.band-card:hover {
    border-color: #ff0000;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
    transform: translateY(-10px);
}

.band-image {
    height: 200px;
    background: linear-gradient(45deg, #333, #666);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #666;
}

.band-image::before {
    content: '🎸';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.3;
}

.band-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.band-card:hover .band-overlay {
    opacity: 1;
}

.band-overlay h3 {
    font-family: 'Metal Mania', cursive;
    font-size: 1.5rem;
    color: #ff0000;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px #ff0000;
}

.band-overlay p {
    color: #ffaa00;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.band-links {
    display: flex;
    gap: 10px;
}

.band-btn {
    padding: 0.5rem 1rem;
    background: #ff0000;
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.band-btn:hover {
    background: #ffffff;
    color: #ff0000;
    transform: translateY(-2px);
}

.band-info {
    padding: 20px;
}

.band-info h4 {
    font-family: 'Metal Mania', cursive;
    font-size: 1.3rem;
    color: #ff0000;
    margin-bottom: 5px;
    text-shadow: 0 0 5px #ff0000;
}

.genre {
    display: inline-block;
    background: #ff0000;
    color: white;
    padding: 3px 10px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 15px;
    margin-bottom: 10px;
}

.band-info p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 10px 1rem;
        min-height: 60px;
    }
    
    .logo-img {
        height: 45px;
        max-width: 150px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 107, 53, 0.3);
        border-radius: 15px 0 0 15px;
        padding: 20px 0;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }

    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 1rem 0;
        opacity: 0;
        transform: translateX(50px);
        animation: slideInRight 0.5s ease forwards;
    }
    
    .nav-menu.active li {
        animation-delay: calc(var(--delay, 0) * 0.1s);
    }
    
    .nav-menu li:nth-child(1) { --delay: 1; }
    .nav-menu li:nth-child(2) { --delay: 2; }
    .nav-menu li:nth-child(3) { --delay: 3; }
    .nav-menu li:nth-child(4) { --delay: 4; }
    .nav-menu li:nth-child(5) { --delay: 5; }
    .nav-menu li:nth-child(6) { --delay: 6; }
    
    @keyframes slideInRight {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
    
    .rock-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-rock {
        width: 100%;
        max-width: 300px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .bands-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Amélioration des images sur mobile */
    .hero {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }
    
    .slide {
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
        min-height: 100vh;
        width: 100vw;
    }
    
    /* Navigation dots plus visible sur mobile */
    .slider-nav {
        bottom: 20px;
    }
    
    .nav-dot {
        width: 12px;
        height: 12px;
        margin: 0 8px;
    }
}

@media (max-width: 480px) {
    /* Navigation très petits écrans */
    .nav-container {
        padding: 1rem;
    }
    
    /* Logo responsive */
    .logo-text {
        font-size: 18px;
    }
    
    .logo-img {
        height: 45px;
    }
    
    /* Hero optimisé pour petits écrans - Garder impact */
    .hero h1 {
        font-size: 2.4rem; /* Reste imposant */
        line-height: 1.1;
        padding: 0 10px;
    }
    
    .hero p {
        font-size: 1.1rem;
        padding: 0 15px;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: row; /* Garder horizontal */
        gap: 10px;
        padding: 0 15px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
        min-width: 120px;
    }
    
    /* Services - passer en une colonne sur très petit écran */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .service-card {
        padding: 20px;
        text-align: center;
    }
    
    /* Sections - garder espacement généreux */
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
        padding: 0 15px;
    }
    
    .section-header p {
        padding: 0 15px;
        font-size: 1rem;
    }
    
    /* Container optimisé */
    .container {
        padding: 0 15px;
    }
    
    /* Galerie une seule colonne */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item.large,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    /* Contact form optimisé */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-item {
        text-align: center;
        margin-bottom: 20px;
    }
    
    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff3366;
    --secondary-color: #ff6b35;
    --dark-bg: #0a0a0a;
    --dark-section: #1a1a1a;
    --card-bg: #252525;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --accent-gold: #ffd700;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 51, 102, 0.2);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

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

.logo h1 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 0;
}

.slogan {
    font-size: 12px;
    color: var(--text-gray);
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    font-weight: 500;
}

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

.btn-admin {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 8px 20px;
    border-radius: 25px;
}

.btn-admin:hover {
    color: white !important;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(135deg, rgba(255, 51, 102, 0.3), rgba(255, 107, 53, 0.3)),
        linear-gradient(to bottom, rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.9)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23000" width="1200" height="600"/><g fill-opacity="0.1"><polygon fill="%23222" points="1200 0 400 600 0 0"/><polygon fill="%23333" points="1200 600 0 600 600 0"/></g></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 10, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 300;
}

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

.btn-hero {
    padding: 15px 40px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 5px 20px rgba(255, 51, 102, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 51, 102, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

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

.animate-fade-in {
    animation: fadeInUp 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-gray);
    font-size: 32px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--dark-section);
}

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

.about-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(255, 51, 102, 0.3);
    border-color: var(--primary-color);
}

.about-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.about-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Events Section */
.events {
    padding: 100px 0;
    background: var(--dark-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 18px;
    color: var(--text-gray);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.event-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(255, 51, 102, 0.4);
}

.event-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.event-image-default {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-icon {
    font-size: 80px;
}

.event-content {
    padding: 25px;
    position: relative;
}

.event-badge {
    position: absolute;
    top: -30px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.5);
}

.badge-sold-out {
    background: #888;
}

.event-date {
    display: inline-block;
    background: rgba(255, 51, 102, 0.1);
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--primary-color);
}

.date-day {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-right: 5px;
}

.date-month {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
}

.event-title {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.event-artist {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.event-description {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 51, 102, 0.1);
}

.event-price {
    color: var(--text-gray);
}

.event-price strong {
    color: var(--accent-gold);
    font-size: 20px;
}

.btn-event {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-event:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 51, 102, 0.5);
}

.btn-more {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-more:hover {
    transform: translateX(10px);
}

.no-events {
    text-align: center;
    padding: 60px;
    color: var(--text-gray);
    font-size: 18px;
}

/* Reservation Promo */
.reservation-promo {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.1), rgba(255, 107, 53, 0.1));
}

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

.reservation-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.reservation-text p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.reservation-features {
    list-style: none;
    margin-bottom: 30px;
}

.reservation-features li {
    padding: 10px 0;
    font-size: 16px;
    color: var(--text-gray);
}

.btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 51, 102, 0.4);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 51, 102, 0.6);
}

.reservation-image {
    text-align: center;
}

.image-placeholder {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 60px;
    border: 2px dashed rgba(255, 51, 102, 0.3);
}

.image-placeholder p {
    color: var(--text-gray);
    margin-top: 20px;
    font-size: 18px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--dark-section);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-card p, .contact-card a {
    color: var(--text-gray);
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-links a {
    padding: 8px 20px;
    background: rgba(255, 51, 102, 0.1);
    border-radius: 20px;
    border: 1px solid var(--primary-color);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white !important;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 51, 102, 0.2);
}

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

.footer-section h3, .footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-section p, .footer-section li {
    color: var(--text-gray);
    margin-bottom: 10px;
}

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

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

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

.text-center {
    text-align: center;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .nav-menu {
        display: none; /* Simplification pour mobile */
    }
    
    .reservation-content {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 36px;
    }
    
    .btn-hero {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
}

/* Player Audio fixe en bas (style Music Club) */
.music-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: 
        linear-gradient(135deg, #8B0000 0%, #B22222 30%, #8B0000 60%, #A0522D 100%);
    padding: 15px 20px;
    z-index: 999;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.5);
    
    /* Effet papier déchiré en haut */
    position: relative;
}

.music-player::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 15px;
    background: 
        linear-gradient(135deg, #8B0000 0%, #B22222 30%, #8B0000 60%, #A0522D 100%);
    
    /* Effet de déchirure inversé */
    clip-path: polygon(
        0% 100%, 
        8% 0%, 
        12% 80%, 
        18% 0%, 
        22% 60%, 
        28% 0%, 
        32% 90%, 
        38% 0%, 
        42% 70%, 
        48% 0%, 
        52% 50%, 
        58% 0%, 
        62% 80%, 
        68% 0%, 
        72% 60%, 
        78% 0%, 
        82% 90%, 
        88% 0%, 
        92% 70%, 
        98% 0%, 
        100% 100%
    );
}

.player-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.track-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.track-cover {
    width: 50px;
    height: 50px;
    background: #FFD700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.track-details h4 {
    color: #FFD700;
    font-family: 'Metal Mania', cursive;
    margin: 0;
    font-size: 1rem;
}

.track-details p {
    color: #FFA500;
    margin: 0;
    font-size: 0.8rem;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.play-btn {
    width: 40px;
    height: 40px;
    background: 
        linear-gradient(45deg, #FFD700, #FFA500);
    border: none;
    border-radius: 50%;
    color: #8B0000;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
}

.progress-container {
    flex: 1;
    max-width: 200px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: 
        linear-gradient(90deg, #FFD700, #FFA500);
    width: 35%;
    transition: width 0.3s ease;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFD700;
}

/* Section Services Améliorée */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b35;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(45deg, #ff6b35, #ff9500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

/* Section Réservation de Salle */
.reservation-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 80px 0;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.reservation-form {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.form-control::placeholder {
    color: #999;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-reservation {
    background: linear-gradient(45deg, #ff6b35, #ff9500);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-reservation:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.btn-reservation:active {
    transform: translateY(0);
}

/* Responsive pour les services */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .reservation-form {
        padding: 25px;
        margin: 0 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===== SECTION CONTACT MAGNIFIQUE ===== */
.contact-section-enhanced {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #000 100%);
    padding: 100px 0;
    overflow: hidden;
}

.contact-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 0%, rgba(255, 107, 53, 0.05) 50%, transparent 100%);
    pointer-events: none;
}

.contact-header-enhanced {
    text-align: center;
    margin-bottom: 80px;
}

.contact-title-wrapper {
    position: relative;
    display: inline-block;
}

.contact-main-icon {
    font-size: 4rem;
    color: #ff6b35;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.contact-subtitle-line {
    height: 3px;
    width: 80px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    margin: 20px auto;
    border-radius: 2px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    font-style: italic;
    margin-top: 15px;
}

.contact-grid-enhanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Informations de contact */
.contact-info-enhanced {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-info-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42, #ffaa5a);
}

.contact-info-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-info-header h3 {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact-info-header p {
    color: #ccc;
}

.contact-items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item-enhanced {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 15px;
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
}

.contact-item-enhanced:hover {
    transform: translateX(10px);
    background: rgba(255, 107, 53, 0.1);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.contact-icon-enhanced {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(145deg, #ff6b35, #ff8c42);
    opacity: 0.3;
    animation: iconGlow 2s ease-in-out infinite alternate;
}

.contact-details-enhanced h4 {
    color: #ff6b35;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-details-enhanced p {
    color: #fff;
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-details-enhanced small {
    color: #ccc;
    font-size: 0.9rem;
}

/* Réseaux sociaux */
.contact-social-enhanced {
    margin-top: 40px;
    text-align: center;
}

.contact-social-enhanced h4 {
    color: #ff6b35;
    margin-bottom: 20px;
}

.social-buttons-enhanced {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-btn-enhanced {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-btn-enhanced.facebook {
    background: rgba(59, 89, 152, 0.2);
    color: #3b5998;
    border-color: #3b5998;
}

.social-btn-enhanced.instagram {
    background: rgba(225, 48, 108, 0.2);
    color: #e1306c;
    border-color: #e1306c;
}

.social-btn-enhanced.youtube {
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
    border-color: #ff0000;
}

.social-btn-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Formulaire de contact magnifique */
.contact-form-enhanced {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-form-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42, #ffaa5a);
}

.form-header-enhanced {
    text-align: center;
    margin-bottom: 40px;
}

.form-header-enhanced h3 {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-header-enhanced p {
    color: #ccc;
}

.form-row-enhanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-enhanced {
    position: relative;
    margin-bottom: 30px;
}

.form-group-enhanced label {
    display: block;
    color: #ff6b35;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-group-enhanced input,
.form-group-enhanced select,
.form-group-enhanced textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group-enhanced input:focus,
.form-group-enhanced select:focus,
.form-group-enhanced textarea:focus {
    outline: none;
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.input-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    transition: width 0.3s ease;
}

.form-group-enhanced input:focus + .input-underline,
.form-group-enhanced select:focus + .input-underline,
.form-group-enhanced textarea:focus + .input-underline {
    width: 100%;
}

.form-actions-enhanced {
    text-align: center;
    margin-top: 40px;
}

.btn-send-enhanced {
    position: relative;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-send-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

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

.btn-send-enhanced:hover .btn-animation {
    left: 100%;
}

.form-note {
    margin-top: 20px;
    color: #ccc;
    font-size: 0.9rem;
}

/* Carte interactive */
.contact-map-section {
    text-align: center;
    margin-top: 60px;
}

.contact-map-section h3 {
    color: #ff6b35;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.map-placeholder-enhanced {
    position: relative;
    height: 300px;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #ff6b35;
}

.map-pin {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.map-overlay h4 {
    color: #ff6b35;
    margin-bottom: 10px;
}

.map-overlay p {
    color: #ccc;
    margin-bottom: 20px;
}

.map-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff6b35;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #ff6b35;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.map-directions:hover {
    background: #ff6b35;
    color: white;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes iconGlow {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.2); opacity: 0.1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Responsive */
@media (max-width: 968px) {
    .contact-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row-enhanced {
        grid-template-columns: 1fr;
    }
    
    .social-buttons-enhanced {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .contact-section-enhanced {
        padding: 60px 0;
    }
    
    .contact-info-enhanced,
    .contact-form-enhanced {
        padding: 30px 20px;
    }
    
    .contact-main-icon {
        font-size: 3rem;
    }
}

/* ===== GALERIE PHOTO ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 250px);
    gap: 15px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.9), rgba(247, 147, 30, 0.9));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-content h3 {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 5px;
}

.gallery-content p {
    font-size: 0.9em;
    margin-bottom: 15px;
    opacity: 0.9;
}

.gallery-content i {
    font-size: 1.5em;
    opacity: 0.8;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

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

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

/* ===== ÉVÉNEMENTS RECTANGLES ===== */
.events-grid-rectangle {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.event-rectangle-card {
    display: flex;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid #ff6b35;
    min-height: 280px;
}

.event-rectangle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.event-rectangle-image {
    position: relative;
    width: 240px;
    flex-shrink: 0;
    overflow: hidden;
}

.event-rectangle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.event-rectangle-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 107, 53, 0.95);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
}

.event-rectangle-content {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-rectangle-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.event-rectangle-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    margin: 0;
    line-height: 1.3;
    flex: 1;
    margin-right: 15px;
}

.event-rectangle-price {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.1em;
    white-space: nowrap;
}

.event-rectangle-meta {
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.95em;
}

.meta-row i {
    color: #ff6b35;
    width: 16px;
}

.event-rectangle-description {
    color: #555;
    line-height: 1.6;
    margin: 15px 0;
    font-size: 0.95em;
    flex: 1;
}

.event-rectangle-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.btn-rectangle {
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: 2px solid;
    flex: 1;
    justify-content: center;
    text-align: center;
}

.btn-rectangle-outline {
    background: transparent;
    color: #ff6b35;
    border-color: #ff6b35;
}

.btn-rectangle-outline:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-rectangle-primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border-color: #ff6b35;
}

.btn-rectangle-primary:hover {
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    color: white;
    text-decoration: none;
}

/* ===== ÉVÉNEMENTS AMÉLIORÉS (Anciens) ===== */
.events-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.event-card-enhanced {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.event-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card-enhanced:hover .event-image {
    transform: scale(1.05);
}

.event-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 107, 53, 0.95);
    color: white;
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    min-width: 60px;
}

.event-date-day {
    font-size: 1.8em;
    font-weight: bold;
    line-height: 1;
}

.event-date-month {
    font-size: 0.8em;
    opacity: 0.9;
    margin-top: 2px;
}

.event-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px;
}

.event-time {
    color: white;
    font-weight: 500;
    font-size: 0.9em;
}

.event-time i {
    margin-right: 5px;
}

.event-content-enhanced {
    padding: 25px;
}

.event-header {
    margin-bottom: 15px;
}

.event-title-enhanced {
    font-size: 1.4em;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.event-location {
    color: #666;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-location i {
    color: #ff6b35;
}

.event-description-enhanced {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95em;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.event-price-enhanced {
    text-align: left;
}

.price-label {
    display: block;
    font-size: 0.8em;
    color: #666;
    margin-bottom: 2px;
}

.price-amount {
    font-size: 1.3em;
    font-weight: bold;
    color: #ff6b35;
}

.event-actions-enhanced {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-outline-enhanced {
    width: 40px;
    height: 40px;
    border: 2px solid #ff6b35;
    background: transparent;
    color: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.btn-outline-enhanced:hover {
    background: #ff6b35;
    color: white;
    transform: scale(1.1);
}

.btn-primary-enhanced {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-primary-enhanced:hover {
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    color: white;
    text-decoration: none;
}

.events-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 20px;
    color: white;
}

.events-cta p {
    font-size: 1.2em;
    margin-bottom: 20px;
    opacity: 0.9;
}

.btn-secondary-large {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Responsive Galerie & Événements */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 200px);
    }
    
    .events-grid-enhanced {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .events-grid-rectangle {
        grid-template-columns: 1fr;
    }
    
    .event-rectangle-image {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 180px);
        gap: 10px;
    }
    
    .gallery-item.large,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .events-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .event-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .event-actions-enhanced {
        width: 100%;
        justify-content: center;
    }
    
    /* Rectangles événements responsive - Maintenir l'apparence PC */
    .events-grid-rectangle {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }
    
    .event-rectangle-card {
        flex-direction: row; /* Garder horizontal comme PC */
        min-height: 200px; /* Hauteur réduite mais conservée */
        padding: 15px;
    }
    
    .event-rectangle-image {
        width: 120px; /* Largeur réduite mais proportionnelle */
        height: 160px;
        flex-shrink: 0;
    }
    
    .event-rectangle-content {
        flex: 1;
        padding-left: 15px;
    }
    
    .event-rectangle-header {
        flex-direction: row; /* Maintenir horizontal */
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .event-rectangle-title {
        margin-right: 10px;
        font-size: 1.1rem; /* Légèrement plus petit */
        flex: 1;
    }
    
    .event-rectangle-price {
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    .event-rectangle-meta {
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .meta-row {
        font-size: 0.85rem;
    }
    
    .event-rectangle-description {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 15px;
        display: -webkit-box;
        -webkit-line-clamp: 3; /* Limiter à 3 lignes */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .event-rectangle-actions {
        flex-direction: row; /* Maintenir horizontal */
        gap: 8px;
    }
    
    .btn-rectangle {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 200px);
    }
    
    .event-card-enhanced {
        margin: 0 10px;
    }
    
    /* Optimisation pour très petits écrans - Garder apparence rectangle */
    .events-grid-rectangle {
        padding: 0 5px;
        gap: 12px;
    }
    
    .event-rectangle-card {
        min-height: 180px; /* Encore plus compact */
        padding: 12px;
    }
    
    .event-rectangle-image {
        width: 100px; /* Plus petit pour très petits écrans */
        height: 140px;
    }
    
    .event-rectangle-content {
        padding-left: 12px;
    }
    
    .event-rectangle-title {
        font-size: 1rem;
        line-height: 1.2;
    }
    
    .event-rectangle-price {
        font-size: 0.9rem;
    }
    
    .meta-row {
        font-size: 0.8rem;
    }
    
    .event-rectangle-description {
        font-size: 0.8rem;
        -webkit-line-clamp: 2; /* Seulement 2 lignes sur très petit écran */
        margin-bottom: 12px;
    }
    
    .btn-rectangle {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .event-rectangle-actions {
        gap: 6px;
    }
}

/* ===== STYLES PREMIUM POUR LES ÉVÉNEMENTS ===== */
.events-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.event-card-premium {
    background: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.event-card-premium:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.5);
}

.event-image-premium {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.event-card-premium:hover .event-image-premium {
    transform: scale(1.08);
}

.event-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    pointer-events: none;
}

.event-badge-live {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

.event-date-premium {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ff6b35, #ff9500);
    color: white;
    padding: 12px 15px;
    border-radius: 15px;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.date-day {
    font-size: 1.4rem;
    line-height: 1;
    margin-bottom: 2px;
}

.date-month {
    font-size: 0.7rem;
    letter-spacing: 1px;
    opacity: 0.9;
}

.event-content-premium {
    padding: 25px;
    position: relative;
}

.event-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.event-type-badge {
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-time {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-title-premium {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(45deg, #ff6b35, #ffa726);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.event-description-premium {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.event-details-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.event-venue {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-price-premium {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.event-actions-premium {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-details-premium {
    flex: 0 0 auto;
    padding: 10px 18px;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.btn-details-premium:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.6);
    color: white;
    transform: translateY(-2px);
}

.btn-reserve-premium {
    flex: 1;
    padding: 12px 20px;
    background: linear-gradient(45deg, #ff6b35, #ff9500);
    color: white;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.btn-reserve-premium:hover {
    background: linear-gradient(45deg, #ff9500, #ffab00);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(231, 76, 60, 0.7);
    }
}

/* Responsive pour les événements premium */
@media (max-width: 768px) {
    .events-grid-premium {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    
    .event-card-premium {
        max-width: none;
    }
    
    .event-actions-premium {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-details-premium,
    .btn-reserve-premium {
        width: 100%;
        justify-content: center;
    }
    
    .event-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .event-details-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
