/* ===== BAR L'UNICO - ULTRA MODERN STYLES ===== */

/* ===== CUSTOM KEYFRAMES & ANIMATIONS ===== */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-20px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes glow {
    0%, 100% { 
        text-shadow: 0 0 20px rgba(255,107,53,0.5), 0 0 30px rgba(247,147,30,0.3), 0 0 40px rgba(255,215,0,0.2);
        filter: brightness(1);
    }
    50% { 
        text-shadow: 0 0 30px rgba(255,107,53,0.8), 0 0 40px rgba(247,147,30,0.6), 0 0 60px rgba(255,215,0,0.4);
        filter: brightness(1.1);
    }
}

@keyframes shimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

@keyframes gradient-slow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes zoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% { transform: scale(0.9); }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes particle-float {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.7;
    }
    33% { 
        transform: translateY(-30px) translateX(20px) rotate(120deg);
        opacity: 1;
    }
    66% { 
        transform: translateY(-60px) translateX(-20px) rotate(240deg);
        opacity: 0.7;
    }
}

/* ===== GLOBAL RESETS & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background: #0A0A0A;
}

/* ===== PRELOADER STYLES ===== */
#preloader {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFD700 100%);
    background-size: 400% 400%;
    animation: gradient-slow 3s ease infinite;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* ===== NAVIGATION ULTRA MODERN ===== */
#navbar {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

#navbar.scrolled {
    background: linear-gradient(135deg, rgba(10,10,10,0.98) 0%, rgba(26,26,26,0.95) 100%);
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-link-modern {
    position: relative;
    padding: 8px 12px;
    margin: 0 4px;
    color: #E5E7EB;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    text-transform: none;
    letter-spacing: 0.2px;
}

.nav-link-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,107,53,0.1) 0%, rgba(247,147,30,0.1) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-link-modern:hover::before,
.nav-link-modern.active::before {
    opacity: 1;
}

.nav-link-modern:hover,
.nav-link-modern.active {
    color: #FFFFFF;
    transform: translateY(-3px) scale(1.05);
    text-shadow: 0 4px 12px rgba(255,107,53,0.4);
    background: linear-gradient(135deg, rgba(255,107,53,0.2) 0%, rgba(247,147,30,0.15) 100%);
    border-color: rgba(255,107,53,0.4);
    box-shadow: 0 8px 25px rgba(255,107,53,0.3);
}

.mobile-nav-link-modern {
    display: block;
    padding: 16px 24px;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 8px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(255,255,255,0.2);
}

.mobile-nav-link-modern:hover,
.mobile-nav-link-modern.active {
    background: linear-gradient(135deg, rgba(255,107,53,0.2) 0%, rgba(247,147,30,0.1) 100%);
    color: #FF6B35;
    transform: translateX(8px);
    border-color: rgba(255,107,53,0.3);
}

/* ===== LANGUAGE TOGGLE ===== */
.language-btn {
    padding: 6px 12px;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.language-btn.active,
.language-btn:hover {
    color: #FF6B35;
    background: rgba(255,107,53,0.1);
}

/* ===== FLOATING PARTICLES ===== */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    border-radius: 50%;
    animation: particle-float 6s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle-2 {
    top: 80%;
    left: 20%;
    animation-delay: -2s;
    animation-duration: 6s;
    width: 6px;
    height: 6px;
}

.particle-3 {
    top: 30%;
    right: 30%;
    animation-delay: -4s;
    animation-duration: 10s;
}

.particle-4 {
    bottom: 20%;
    right: 20%;
    animation-delay: -6s;
    animation-duration: 7s;
    width: 8px;
    height: 8px;
}

.particle-5 {
    top: 60%;
    left: 80%;
    animation-delay: -8s;
    animation-duration: 9s;
}

/* ===== HERO BUTTONS ULTRA MODERN ===== */
.btn-hero-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFD700 100%);
    color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(255,107,53,0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    min-width: 200px;
}

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

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

.btn-hero-primary:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255,107,53,0.6);
    filter: brightness(1.1);
}

.btn-hero-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    color: #FFFFFF;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 200px;
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,107,53,0.5);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255,255,255,0.1);
    color: #FF6B35;
}

.btn-hero-tertiary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(114,47,55,0.9) 0%, rgba(247,147,30,0.1) 100%);
    color: #FFFFFF;
    border: 2px solid rgba(255,215,0,0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 180px;
}

.btn-hero-tertiary:hover {
    background: linear-gradient(135deg, rgba(114,47,55,1) 0%, rgba(247,147,30,0.3) 100%);
    border-color: #FFD700;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255,215,0,0.3);
}

/* ===== FEATURE CARDS ULTRA MODERN ===== */
.feature-card-modern {
    position: relative;
    padding: 40px 32px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,248,248,0.9) 100%);
    border-radius: 24px;
    border: 1px solid rgba(255,107,53,0.1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35 0%, #F7931E 50%, #FFD700 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.feature-card-modern:hover::before {
    transform: scaleX(1);
}

.feature-card-modern:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255,107,53,0.15);
    border-color: rgba(255,107,53,0.3);
}

.feature-icon-modern {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

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

.feature-card-modern:hover .feature-icon-modern::before {
    left: 100%;
}

.feature-card-modern:hover .feature-icon-modern {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* ===== ANIMATIONS UTILITIES ===== */
.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

.animate-bounce-in {
    animation: bounce-in 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.animate-slide-in-right {
    animation: slide-in-right 0.8s ease-out;
}

.animate-gradient-slow {
    background-size: 400% 400%;
    animation: gradient-slow 15s ease infinite;
}

.animate-shimmer {
    background-size: 200% auto;
    animation: shimmer 2.5s ease-in-out infinite;
}

.animate-zoom {
    animation: zoom 20s ease-in-out infinite;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

/* ===== RESPONSIVE DESIGN IMPROVEMENTS ===== */
@media (max-width: 1024px) {
    .feature-card-modern {
        padding: 32px 24px;
    }
    
    .feature-icon-modern {
        width: 70px;
        height: 70px;
    }
    
    .nav-link-modern {
        padding: 10px 14px;
        margin: 0 4px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-hero-tertiary {
        padding: 16px 28px;
        font-size: 16px;
        min-width: 160px;
    }
    
    .feature-card-modern {
        padding: 24px 20px;
        border-radius: 16px;
    }
    
    .feature-icon-modern {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }
    
    .nav-link-modern {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-hero-tertiary {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .feature-card-modern {
        text-align: center;
    }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.will-change-transform {
    will-change: transform;
}

.gpu-accelerated {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* ===== DARK MODE VARIATIONS ===== */
.dark .feature-card-modern {
    background: linear-gradient(135deg, rgba(26,26,26,0.95) 0%, rgba(10,10,10,0.9) 100%);
    border-color: rgba(255,107,53,0.2);
    color: #E5E7EB;
}

.dark .feature-card-modern h3 {
    color: #FFFFFF;
}

.dark .feature-card-modern p {
    color: #D1D5DB;
}

/* ===== LIGHT THEME ===== */
.light {
    background: linear-gradient(135deg, #F8F8F8 0%, #FFFFFF 50%, #F0F0F0 100%);
    color: #1A1A1A;
}

.light .feature-card-modern {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,248,248,0.9) 100%);
    border-color: rgba(255,107,53,0.2);
    color: #1A1A1A;
}

.light .feature-card-modern h3 {
    color: #1A1A1A;
}

.light .feature-card-modern p {
    color: #4A5568;
}

.light .cocktail-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,248,248,0.9) 100%);
    border-color: rgba(255,107,53,0.2);
}

.light .event-card {
    background: #FFFFFF;
    color: #1A1A1A;
}

.light .gallery-item {
    opacity: 0.9;
}

.light .ultra-menu-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,248,248,0.9) 100%);
    border-color: rgba(255,107,53,0.1);
}

.light nav {
    background: rgba(255,255,255,0.95) !important;
}

.light nav .nav-link-modern,
.light nav .mobile-nav-link-modern {
    color: #1A1A1A !important;
}

/* ===== ACCESSIBILITY ENHANCEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: high) {
    .nav-link-modern,
    .mobile-nav-link-modern {
        border: 2px solid currentColor;
    }
    
    .feature-card-modern {
        border-width: 2px;
        border-color: #FF6B35;
    }
}

/* ===== FOCUS STATES ===== */
.nav-link-modern:focus,
.mobile-nav-link-modern:focus,
.btn-hero-primary:focus,
.btn-hero-secondary:focus,
.btn-hero-tertiary:focus {
    outline: 3px solid rgba(255,107,53,0.5);
    outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .particle,
    #preloader,
    #navbar,
    #statusIndicator {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}

/* ===== ULTRA HIGH RESOLUTION SUPPORT ===== */
@media (min-width: 1920px) {
    .feature-card-modern {
        padding: 48px 40px;
    }
    
    .feature-icon-modern {
        width: 90px;
        height: 90px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-hero-tertiary {
        padding: 20px 40px;
        font-size: 20px;
    }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1A1A1A;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    border-radius: 6px;
    border: 2px solid #1A1A1A;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #F7931E, #FFD700);
}

/* ===== TEXT SELECTION ===== */
::selection {
    background: rgba(255,107,53,0.2);
    color: #FF6B35;
}

::-moz-selection {
    background: rgba(255,107,53,0.2);
    color: #FF6B35;
}

/* ===== ADDITIONAL MODERN EFFECTS ===== */
.glass-morphism {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.neon-glow {
    box-shadow: 0 0 20px rgba(255,107,53,0.5),
                0 0 40px rgba(255,107,53,0.3),
                0 0 60px rgba(255,107,53,0.1);
}

.text-gradient {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== LOADING STATES ===== */
.loading-shimmer {
    background: linear-gradient(90deg, 
        rgba(255,255,255,0.1) 25%, 
        rgba(255,107,53,0.2) 50%, 
        rgba(255,255,255,0.1) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* ===== END OF ULTRA MODERN STYLES ===== */