/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e5e5e5;
    background-color: #000000;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #b0b0b0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: white;
    box-shadow: 
        0 4px 15px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent !important;
    backdrop-filter: none !important;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: none !important;
    box-shadow: none !important;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    padding: 1rem 0 !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    transform: translateY(0);
}

.navbar.scrolled .nav-logo span {
    color: #b0b0b0;
    opacity: 0.8;
}

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

.nav-logo h2 {
    color: #d4af37;
    font-size: 1.8rem;
    margin: 0;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-logo h2 {
    color: #d4af37;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-logo span {
    color: #b0b0b0;
    font-size: 0.9rem;
    font-weight: 300;
}

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

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled .nav-link {
    background: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
    padding: 0.5rem 0 !important;
    color: #e5e5e5 !important;
    text-shadow: none !important;
}

.nav-link:hover {
    color: #d4af37;
    transform: translateY(-2px);
}

.nav-link.active {
    color: #d4af37 !important;
    background: transparent !important;
    border: none !important;
    transform: translateY(-2px);
}


.navbar.scrolled .nav-link.active {
    background: transparent !important;
    border: none !important;
    color: #d4af37 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

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

.nav-link.active::after {
    width: 100% !important;
    height: 3px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: #000000;
    min-width: 150px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: #e5e5e5;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
}

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

/* Language Selector */
.language-selector {
    margin-left: 2rem;
    position: relative;
}

.language-selector select {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #ffffff;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.language-selector select:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-1px);
}

.language-selector select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.language-selector option {
    background: #000000;
    color: #ffffff;
    padding: 0.5rem;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-bg-desktop {
    display: block;
}

.slide-bg-mobile {
    display: none;
}

.carousel-slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    color: #e5e5e5;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
}

.carousel-prev,
.carousel-next {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    transform: scale(1.1);
}

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

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #d4af37;
    border-color: #d4af37;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(212, 175, 55, 0.6);
    border-color: #d4af37;
}

.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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h2 {
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.champagne-glass {
    font-size: 15rem;
    color: #d4af37;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Clubs Section */
.clubs {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #050505 50%, #0a0a0a 100%);
    position: relative;
    z-index: 2;
}

.clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.club-card {
    background: linear-gradient(145deg, #000000, #050505);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.club-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
}



.club-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
    border-color: rgba(212, 175, 55, 0.3);
}

.club-card:hover .logo-circle {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.8),
        inset 0 3px 0 rgba(255, 255, 255, 0.2),
        inset 0 -3px 0 rgba(0, 0, 0, 0.4),
        0 0 20px rgba(212, 175, 55, 0.4);
    border-color: rgba(212, 175, 55, 0.6);
    animation: logoGlow 2s ease-in-out infinite alternate;
}

.club-logo {
    margin-bottom: 1rem;
}

.club-logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50px 50px 5px 5px;

    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.1) contrast(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Effets spécifiques pour Moulin Rouge */

.club-card:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #b40102, #8b0000);
}

.club-card:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #009ca6, #007a82);
}

.club-card:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d70752, #b91c5c);
}

.club-card:nth-child(4)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #b66f24, #9a5a1f);
}

.club-card:nth-child(1):hover {
    border-color: rgba(180, 1, 2, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(180, 1, 2, 0.3);
}

.club-card:nth-child(1):hover .logo-circle {
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.8),
        inset 0 3px 0 rgba(255, 255, 255, 0.2),
        inset 0 -3px 0 rgba(0, 0, 0, 0.4),
        0 0 25px rgba(180, 1, 2, 0.6);
    border-color: rgba(180, 1, 2, 0.8);
    animation: moulinRougeGlow 2s ease-in-out infinite alternate;
}

.club-card:nth-child(1):hover .club-logo-img {
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(180, 1, 2, 0.4);
    filter: brightness(1.3) contrast(1.2) hue-rotate(0deg);
}

/* Effets spécifiques pour Ô Chochotte */
.club-card:nth-child(2):hover {
    border-color: rgba(0, 156, 166, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(0, 156, 166, 0.3);
}

.club-card:nth-child(2):hover .logo-circle {
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.8),
        inset 0 3px 0 rgba(255, 255, 255, 0.2),
        inset 0 -3px 0 rgba(0, 0, 0, 0.4),
        0 0 25px rgba(0, 156, 166, 0.6);
    border-color: rgba(0, 156, 166, 0.8);
    animation: chochotteGlow 2s ease-in-out infinite alternate;
}

.club-card:nth-child(2):hover .club-logo-img {
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 156, 166, 0.4);
    filter: brightness(1.3) contrast(1.2) hue-rotate(0deg);
}

/* Effets spécifiques pour Las Mamasitas */
.club-card:nth-child(3):hover {
    border-color: rgba(215, 7, 82, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(215, 7, 82, 0.3);
}

.club-card:nth-child(3):hover .logo-circle {
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.8),
        inset 0 3px 0 rgba(255, 255, 255, 0.2),
        inset 0 -3px 0 rgba(0, 0, 0, 0.4),
        0 0 25px rgba(215, 7, 82, 0.6);
    border-color: rgba(215, 7, 82, 0.8);
    animation: mamasitasGlow 2s ease-in-out infinite alternate;
}

.club-card:nth-child(3):hover .club-logo-img {
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(215, 7, 82, 0.4);
    filter: brightness(1.3) contrast(1.2) hue-rotate(0deg);
}

/* Effets spécifiques pour Lory's */
.club-card:nth-child(4):hover {
    border-color: rgba(182, 111, 36, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(182, 111, 36, 0.3);
}

.club-card:nth-child(4):hover .logo-circle {
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.8),
        inset 0 3px 0 rgba(255, 255, 255, 0.2),
        inset 0 -3px 0 rgba(0, 0, 0, 0.4),
        0 0 25px rgba(182, 111, 36, 0.6);
    border-color: rgba(182, 111, 36, 0.8);
    animation: lorysGlow 2s ease-in-out infinite alternate;
}

.club-card:nth-child(4):hover .club-logo-img {
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(182, 111, 36, 0.4);
    filter: brightness(1.3) contrast(1.2) hue-rotate(0deg);
}

@keyframes logoGlow {
    0% {
        box-shadow: 
            0 15px 35px rgba(0, 0, 0, 0.8),
            inset 0 3px 0 rgba(255, 255, 255, 0.2),
            inset 0 -3px 0 rgba(0, 0, 0, 0.4),
            0 0 20px rgba(212, 175, 55, 0.4);
    }
    100% {
        box-shadow: 
            0 15px 35px rgba(0, 0, 0, 0.8),
            inset 0 3px 0 rgba(255, 255, 255, 0.2),
            inset 0 -3px 0 rgba(0, 0, 0, 0.4),
            0 0 30px rgba(212, 175, 55, 0.6);
    }
}

@keyframes moulinRougeGlow {
    0% {
        box-shadow: 
            0 15px 35px rgba(0, 0, 0, 0.8),
            inset 0 3px 0 rgba(255, 255, 255, 0.2),
            inset 0 -3px 0 rgba(0, 0, 0, 0.4),
            0 0 25px rgba(180, 1, 2, 0.6);
    }
    100% {
        box-shadow: 
            0 15px 35px rgba(0, 0, 0, 0.8),
            inset 0 3px 0 rgba(255, 255, 255, 0.2),
            inset 0 -3px 0 rgba(0, 0, 0, 0.4),
            0 0 35px rgba(180, 1, 2, 0.8);
    }
}

@keyframes chochotteGlow {
    0% {
        box-shadow: 
            0 15px 35px rgba(0, 0, 0, 0.8),
            inset 0 3px 0 rgba(255, 255, 255, 0.2),
            inset 0 -3px 0 rgba(0, 0, 0, 0.4),
            0 0 25px rgba(0, 156, 166, 0.6);
    }
    100% {
        box-shadow: 
            0 15px 35px rgba(0, 0, 0, 0.8),
            inset 0 3px 0 rgba(255, 255, 255, 0.2),
            inset 0 -3px 0 rgba(0, 0, 0, 0.4),
            0 0 35px rgba(0, 156, 166, 0.8);
    }
}

@keyframes mamasitasGlow {
    0% {
        box-shadow: 
            0 15px 35px rgba(0, 0, 0, 0.8),
            inset 0 3px 0 rgba(255, 255, 255, 0.2),
            inset 0 -3px 0 rgba(0, 0, 0, 0.4),
            0 0 25px rgba(215, 7, 82, 0.6);
    }
    100% {
        box-shadow: 
            0 15px 35px rgba(0, 0, 0, 0.8),
            inset 0 3px 0 rgba(255, 255, 255, 0.2),
            inset 0 -3px 0 rgba(0, 0, 0, 0.4),
            0 0 35px rgba(215, 7, 82, 0.8);
    }
}

@keyframes lorysGlow {
    0% {
        box-shadow: 
            0 15px 35px rgba(0, 0, 0, 0.8),
            inset 0 3px 0 rgba(255, 255, 255, 0.2),
            inset 0 -3px 0 rgba(0, 0, 0, 0.4),
            0 0 25px rgba(182, 111, 36, 0.6);
    }
    100% {
        box-shadow: 
            0 15px 35px rgba(0, 0, 0, 0.8),
            inset 0 3px 0 rgba(255, 255, 255, 0.2),
            inset 0 -3px 0 rgba(0, 0, 0, 0.4),
            0 0 35px rgba(182, 111, 36, 0.8);
    }
}



.logo-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.5rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.1),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-circle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    z-index: -1;
}

.logo-moulin {
    background: linear-gradient(135deg, #b40102, #8b0000);
}

.logo-moulin::before {
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
}

.logo-chochotte {
    background: linear-gradient(135deg, #009ca6, #007a82);
}

.logo-chochotte::before {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.logo-mamasitas {
    background: linear-gradient(135deg, #d70752, #b91c5c);
}

.logo-mamasitas::before {
    background: linear-gradient(135deg, #fce7f3, #f9a8d4);
}

.logo-lorys {
    background: linear-gradient(135deg, #b66f24, #9a5a1f);
}

.logo-lorys::before {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.club-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.club-address {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.address-link {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.address-link:hover {
    color: #d4af37;
    text-decoration: none;
    transform: translateY(-1px);
}

.address-link::after {
    content: "📍";
    margin-left: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.address-link:hover::after {
    opacity: 1;
    transform: scale(1.1);
}

.club-description {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.club-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.club-link:hover {
    color: #b8860b;
    transform: translateX(5px);
}

/* Concept Section */
.concept {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #d4af37;
    font-weight: 500;
}

.concept-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.concept-text h3 {
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.concept-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.concept-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.feature h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #666;
    font-size: 0.95rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #050505 100%);
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.service-card {
    background: linear-gradient(145deg, #000000, #050505);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #b0b0b0;
}

.service-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #b8860b;
    transform: translateX(5px);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #050505 50%, #0a0a0a 100%);
    position: relative;
    z-index: 2;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.feature-block.reverse {
    grid-template-columns: 1fr 1fr;
}

.feature-block.reverse .feature-content {
    order: 1;
}

.feature-block.reverse .feature-image {
    order: 2;
}

.feature-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.feature-image:hover {
    transform: scale(1.02);
}

.feature-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.feature-content {
    padding: 2rem;
}

.feature-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.feature-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    margin-bottom: 2rem;
    border-radius: 2px;
}

.feature-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e5e5e5;
    margin-bottom: 2rem;
}

.feature-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
}

.feature-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #d4af37;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-link:hover {
    color: #f4e4bc;
    transform: translateY(-2px);
}

.feature-link:hover::after {
    transform: scaleX(1);
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #050505 100%);
    position: relative;
    z-index: 2;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #b40102 0%, #d70752 100%);
    border-color: #b40102;
    box-shadow: 0 4px 15px rgba(180, 1, 2, 0.3);
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
    border-color: rgba(212, 175, 55, 0.3);
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(212, 175, 55, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

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

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

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

.gallery-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #d4af37;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-content p {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: #e5e5e5;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.filter-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    color: #d4af37;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    color: #d4af37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Gallery Animation Classes */
.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.gallery-item.visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}


/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #050505 50%, #0a0a0a 100%);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Parallax Background */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    opacity: 0.8;
    transition: transform 0.1s ease-out;
}

.parallax-layer-1 {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(5, 5, 5, 0.8) 100%),
        url('../images/contact/bg-layer1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.9;
    z-index: 1;
}

/* Fallback si les images ne se chargent pas */
.parallax-layer-1 {
    background: 
        radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(0, 156, 166, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(5, 5, 5, 0.9) 100%),
        url('../images/contact/bg-layer1.jpg');
}


@keyframes parallaxFloat {
    0% {
        transform: translateY(0px) scale(1);
    }
    100% {
        transform: translateY(-20px) scale(1.02);
    }
}

/* Responsive parallax */
@media (max-width: 768px) {
    .parallax-layer {
        height: 100%;
    }
}

/* Video Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: modalFadeIn 0.3s ease-out;
}

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

.modal-content {
    position: relative;
    background: linear-gradient(145deg, #000000, #1a1a1a);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    max-width: 90vw;
    max-height: 90vh;
    width: 800px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: modalSlideIn 0.3s ease-out;
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.modal-logo {
    flex-shrink: 0;
}

.modal-logo-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
  
    transition: all 0.3s ease;
}

.modal-logo-img:hover {
    transform: scale(1.05);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.modal-header h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 600;
    flex: 1;
}

.modal-body {
    padding: 1rem 2rem 2rem;
}

.modal-body .video-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-body video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}


@keyframes modalFadeIn {
    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);
    }
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95vw;
        max-height: 95vh;
        margin: 1rem;
    }
    
    .modal-body .video-container {
        height: 250px;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
        gap: 1rem;
    }
    
    .modal-logo-img {
        width: 50px;
        height: 50px;
    }
    
    .modal-body {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .modal-header h3 {
        font-size: 1.5rem;
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 10;
}

.contact-info h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #b0b0b0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #d4af37;
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin: 0;
    color: #b0b0b0;
}

.contact-item a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #b8860b;
}

.contact-form {
    background: linear-gradient(145deg, #000000, #050505);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 rgba(212, 175, 55, 0.1);
}

.contact-form h3 {
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background: #000000;
    color: #e5e5e5;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: #050505;
}

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

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

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

.footer-logo h3 {
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #ccc;
    margin: 0;
}

.footer-info p,
.footer-contact p {
    margin: 0.5rem 0;
    color: #b0b0b0;
}

.footer-info a,
.footer-contact a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover,
.footer-contact a:hover {
    color: #f4e4bc;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: #b0b0b0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .carousel-controls {
        padding: 0 1rem;
    }
    
    /* Amélioration du carousel mobile */
    .hero {
        min-height: 100vh;
    }
    
    .hero-carousel {
        height: 100vh;
    }
    
    .carousel-slide {
        background-size: cover;
        background-position: center center;
        background-attachment: scroll;
    }
    
    .hero-content {
        padding: 2rem 1rem;
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Amélioration des indicateurs */
    .carousel-indicators {
        bottom: 1rem;
        gap: 0.5rem;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
    
    /* Amélioration de l'overlay pour mobile */
    .slide-overlay {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    }
    
    /* Basculement vers les images mobiles */
    .slide-bg-desktop {
        display: none;
    }
    
    .slide-bg-mobile {
        display: block;
    }
    
    .carousel-indicators {
        bottom: 1rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .feature-block {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    /* Force mobile layout: image, content, image, content */
    .feature-block:first-child .feature-image {
        order: 1 !important;
    }
    
    .feature-block:first-child .feature-content {
        order: 2 !important;
    }
    
    .feature-block:last-child .feature-image {
        order: 1 !important;
    }
    
    .feature-block:last-child .feature-content {
        order: 2 !important;
    }
    
    .feature-content h2 {
        font-size: 2rem;
    }
    
    .feature-image img {
        height: 300px;
        width: 100% !important;
        object-fit: cover;
    }
    
    .feature-image {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        grid-column: 1 / -1 !important;
    }
    
    .feature-content {
        width: 100% !important;
        grid-column: 1 / -1 !important;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-container {
        height: 200px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button i {
        font-size: 1.2rem;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .champagne-glass {
        font-size: 8rem;
        margin-top: 2rem;
    }

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

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

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .clubs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .club-card {
        padding: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .service-card,
    .contact-form {
        padding: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Alert Styles */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox[style*="display: block"] {
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 95%;
    max-height: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    animation: lightboxZoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-image-container {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease;
}

.lightbox img:hover {
    transform: scale(1.02);
}

.lightbox-info {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 0.9) 100%);
    padding: 25px 30px;
    border-radius: 15px;
    margin-top: 15px;
    text-align: center;
    max-width: 600px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.lightbox-info h3 {
    color: #d4af37;
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.lightbox-info p {
    color: #e5e5e5;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
}

.lightbox-close {
    position: absolute;
    top: -60px;
    right: 0;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(20, 20, 20, 0.8) 100%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.lightbox-close:hover {
    color: #d4af37;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(180, 137, 11, 0.2) 100%);
    border-color: rgba(212, 175, 55, 0.6);
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(20, 20, 20, 0.8) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: #ffffff;
    font-size: 20px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(180, 137, 11, 0.2) 100%);
    border-color: rgba(212, 175, 55, 0.6);
    color: #d4af37;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
}

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

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
