/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #000 0%, #0a0a0a 50%, #111 100%);
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Floating Particles Background */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite linear;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; }
.particle:nth-child(5) { left: 60%; animation-delay: 8s; }
.particle:nth-child(6) { left: 70%; animation-delay: 10s; }
.particle:nth-child(7) { left: 80%; animation-delay: 12s; }
.particle:nth-child(8) { left: 90%; animation-delay: 14s; }

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.club-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-top: -5px;
    text-transform: uppercase;
}

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

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

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

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

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

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

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

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 6rem;
    font-weight: 100;
    margin-bottom: 1rem;
    letter-spacing: 6px;
    text-shadow: 
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 15px var(--glow-color-1),
        0 0 20px var(--glow-color-1),
        0 0 35px var(--glow-color-1),
        0 0 40px var(--glow-color-2),
        0 5px 10px rgba(0,0,0,0.5),
        0 10px 20px rgba(0,0,0,0.3);
    filter: drop-shadow(0 0 20px var(--glow-color-1));
    transform: perspective(1000px) rotateX(10deg);
    animation: randomColors 4s ease-in-out infinite;
}

@keyframes randomColors {
    0% {
        --glow-color-1: #ff00ff;
        --glow-color-2: #00ffff;
    }
    25% {
        --glow-color-1: #ff6600;
        --glow-color-2: #00ff00;
    }
    50% {
        --glow-color-1: #ffff00;
        --glow-color-2: #ff0066;
    }
    75% {
        --glow-color-1: #0066ff;
        --glow-color-2: #ff3300;
    }
    100% {
        --glow-color-1: #ff00ff;
        --glow-color-2: #00ffff;
    }
}

.floating-letter {
    display: inline-block;
    animation: floatLetter 4s ease-in-out infinite;
}

.floating-letter:nth-child(1) { 
    animation-delay: 0s; 
    color: #fff !important;
    text-shadow: none !important;
    filter: none !important;
    animation: floatLetter 4s ease-in-out infinite !important;
}
.floating-letter:nth-child(2) { 
    animation-delay: 0.2s; 
    color: #fff !important;
    text-shadow: none !important;
    filter: none !important;
    animation: floatLetter 4s ease-in-out infinite !important;
}
.floating-letter:nth-child(3) { 
    animation-delay: 0.4s; 
    color: #fff !important;
    text-shadow: none !important;
    filter: none !important;
    animation: floatLetter 4s ease-in-out infinite !important;
}
.floating-letter:nth-child(4) { animation-delay: 0.6s; }
.floating-letter:nth-child(5) { 
    animation-delay: 0.8s; 
    color: #fff !important;
    text-shadow: none !important;
    filter: none !important;
    animation: floatLetter 4s ease-in-out infinite !important;
}
.floating-letter:nth-child(6) { 
    animation-delay: 1s; 
    color: #fff !important;
    text-shadow: none !important;
    filter: none !important;
    animation: floatLetter 4s ease-in-out infinite !important;
}

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

.triangle-v {
    font-size: 8rem;
    color: transparent;
    -webkit-text-stroke: 2px #fff;
    text-stroke: 2px #fff;
    font-weight: 100;
    line-height: 0.75;
    text-shadow: 
        0 0 10px #fff,
        0 0 20px var(--glow-color-1),
        0 0 30px var(--glow-color-2);
    filter: drop-shadow(0 0 15px var(--glow-color-1));
    animation: randomColors 4s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.5rem;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    opacity: 0.8;
    font-weight: 300;
}

.floating-text {
    animation: floatText 3s ease-in-out infinite;
}

.floating-text-delayed {
    animation: floatText 3s ease-in-out infinite;
    animation-delay: 1s;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 3rem;
}

@keyframes floatText {
    0%, 100% { transform: translateY(0px); opacity: 0.7; }
    50% { transform: translateY(-5px); opacity: 1; }
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

/* Geometric Shapes */
.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shape {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation: rotate 20s linear infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    border-radius: 50%;
    animation: rotate 15s linear infinite reverse;
}

.shape-3 {
    display: none;
}

.triangle-left {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 10%;
    background: transparent;
    animation: rotate 20s linear infinite;
    position: absolute;
    border: none;
}

.triangle-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cpolygon points='60,10 10,110 110,110' fill='none' stroke='rgba(255,255,255,0.2)' stroke-width='2'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.triangle-right {
    width: 200px;
    height: 200px;
    top: 15%;
    right: 15%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    animation: rotate 15s linear infinite reverse;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

@keyframes triangleFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(30deg);
        opacity: 0.15;
    }
    25% { 
        transform: translateY(-20px) rotate(60deg);
        opacity: 0.25;
    }
    50% { 
        transform: translateY(-30px) rotate(90deg);
        opacity: 0.2;
    }
    75% { 
        transform: translateY(-15px) rotate(120deg);
        opacity: 0.3;
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Club Photos */
.club-photos {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.photo-float {
    position: absolute;
    width: 120px;
    height: 80px;
    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);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    animation: photoFloat 12s ease-in-out infinite;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.photo-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
    background-image: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05)), 
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 80"><rect width="120" height="80" fill="%23111"/><text x="60" y="45" text-anchor="middle" fill="%23fff" font-family="Arial" font-size="10">CLUB</text></svg>');
    background-size: cover;
}

.photo-2 {
    top: 60%;
    right: 8%;
    animation-delay: 3s;
    background-image: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05)), 
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 80"><rect width="120" height="80" fill="%23111"/><text x="60" y="45" text-anchor="middle" fill="%23fff" font-family="Arial" font-size="10">BAR</text></svg>');
    background-size: cover;
}

.photo-3 {
    top: 40%;
    left: 3%;
    animation-delay: 6s;
    background-image: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05)), 
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 80"><rect width="120" height="80" fill="%23111"/><text x="60" y="45" text-anchor="middle" fill="%23fff" font-family="Arial" font-size="10">VIP</text></svg>');
    background-size: cover;
}

.photo-4 {
    top: 25%;
    right: 5%;
    animation-delay: 9s;
    background-image: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05)), 
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 80"><rect width="120" height="80" fill="%23111"/><text x="60" y="45" text-anchor="middle" fill="%23fff" font-family="Arial" font-size="10">LOUNGE</text></svg>');
    background-size: cover;
}

@keyframes photoFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.7;
    }
    25% { 
        transform: translateY(-15px) translateX(10px) rotate(2deg);
        opacity: 0.9;
    }
    50% { 
        transform: translateY(-25px) translateX(-5px) rotate(-1deg);
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-10px) translateX(8px) rotate(1deg);
        opacity: 0.9;
    }
}

/* Menu Section */
.menu-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(10,10,10,0.8) 100%), 
                url('./img/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(5px);
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 5px;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

/* Mobile Menu Dropdown */
.mobile-menu-selector {
    display: none;
    margin-bottom: 3rem;
    text-align: center;
}

/* Hide mobile dropdown on desktop */
@media (min-width: 769px) {
    .mobile-menu-selector {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

.mobile-select {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: #fff;
    padding: 15px 25px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    cursor: pointer;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    width: 100%;
    max-width: 300px;
    text-align: center;
    appearance: none;
    -webkit-appearance: none;
    -moz-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='white' 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 15px center;
    background-size: 20px;
    padding-right: 50px;
}

.mobile-select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.mobile-select option {
    background: #111;
    color: #fff;
    padding: 10px;
}

.tab-button {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    color: #fff;
    padding: 18px 35px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.15);
    text-transform: uppercase;
}

.tab-button:hover,
.tab-button.active {
    background: rgba(255,255,255,0.2);
    color: #fff;
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 15px 40px rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.6);
}

.menu-category {
    display: none;
    animation: fadeInUp 0.6s ease;
}

.menu-category.active {
    display: block;
}

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

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Menu Items */
.menu-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.menu-item:hover::before {
    left: 100%;
}

.menu-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.item-title {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.item-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pricing-icon {
    width: 22px;
    height: 22px;
    fill: #FFD700;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
    transition: all 0.3s ease;
    transform: translateY(2px);
}

.pricing-icon.bottle {
    width: 29px;
    height: 29px;
}

.menu-item:hover .pricing-icon {
    fill: #FFF;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.5));
}

.price-separator {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
    margin: 0 2px;
}

.item-price {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
    margin-bottom: 15px;
}

.item-description {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.5;
    font-weight: 400;
}

.category-note {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    padding: 15px 20px;
    margin: 20px 0 10px 0;
    text-align: center;
    color: #FFD700;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}

/* Footer */
.footer {
    background: #111;
    padding: 3rem 0;
    border-top: 1px solid #333;
}

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

.footer-section h3,
.footer-section h4 {
    font-family: 'Orbitron', monospace;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.footer-section p {
    opacity: 0.7;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
        font-weight: 100;
        letter-spacing: 3px;
    }
    
    .triangle-v {
        font-size: 4.5rem;
        font-weight: 100;
        -webkit-text-stroke: 2px #fff;
        text-stroke: 2px #fff;
        line-height: 0.8;
    }
    
    /* Mobile home screen centering */
    .hero-content {
        text-align: center;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    /* Performance optimizations for mobile */
    .particles-container {
        display: none;
    }
    
    .photo-float {
        animation: none;
        opacity: 0.3;
    }
    
    .shape {
        animation: rotate 30s linear infinite;
        opacity: 0.6;
        border: 1px solid rgba(255, 255, 255, 0.4) !important;
        display: block !important;
    }
    
    /* Hide all shapes except square on mobile */
    .shape-2, .shape-3, .triangle-right {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Move triangle to right side on mobile */
    .triangle-left {
        left: auto !important;
        right: 5% !important;
        top: 40% !important;
        width: 100px !important;
        height: 100px !important;
        border: none !important;
    }
    
    /* Hide the right triangle */
    .triangle-right {
        display: none !important;
    }
    
    .floating-letter {
        animation: none;
    }
    
    .floating-letter:nth-child(1),
    .floating-letter:nth-child(2),
    .floating-letter:nth-child(3),
    .floating-letter:nth-child(5),
    .floating-letter:nth-child(6) {
        color: #fff !important;
        text-shadow: none !important;
        filter: none !important;
        animation: none !important;
    }
    
    .floating-text,
    .floating-text-delayed {
        animation: none;
    }
    
    .menu-item {
        backdrop-filter: none;
        background: rgba(0, 0, 0, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.4);
    }
    
    .tab-button {
        backdrop-filter: none;
        background: rgba(0, 0, 0, 0.7);
        border-color: rgba(255, 255, 255, 0.5);
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        outline: none;
    }
    
    .item-name {
        color: #fff;
        opacity: 1;
    }
    
    .item-price {
        color: #fff;
        opacity: 1;
    }
    
    .item-description {
        color: #fff;
        opacity: 0.9;
    }
    
    .menu-item {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        outline: none;
    }
    
    .cta-button {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        outline: none;
    }
    
    .section-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .menu-tabs {
        display: none;
    }
    
    .mobile-menu-selector {
        display: block;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-item {
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .floating-text-delayed {
        font-size: 1rem;
    }
    
    .photo-float {
        display: none !important;
    }
    
    .nav-container {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        font-weight: 100;
        letter-spacing: 2px;
    }
    
    .triangle-v {
        font-size: 3.2rem;
        font-weight: 100;
        -webkit-text-stroke: 2px #fff;
        text-stroke: 2px #fff;
        line-height: 0.8;
    }
    
    .floating-letter:nth-child(1),
    .floating-letter:nth-child(2),
    .floating-letter:nth-child(3),
    .floating-letter:nth-child(5),
    .floating-letter:nth-child(6) {
        color: #fff !important;
        text-shadow: none !important;
        filter: none !important;
        animation: none !important;
    }
    
    /* Additional mobile performance optimizations */
    .menu-section {
        backdrop-filter: none;
        background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(10,10,10,0.9) 100%), 
                    url('./img/background.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
        background-repeat: no-repeat;
    }
    
    .geometric-shapes {
        display: block;
    }
    
    .shape {
        animation: rotate 40s linear infinite;
        opacity: 0.7;
        border: 1px solid rgba(255, 255, 255, 0.5) !important;
        display: block !important;
    }
    
    /* Hide all shapes except square on smaller mobile */
    .shape-2, .shape-3, .triangle-right {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Move triangle to right side on smaller mobile */
    .triangle-left {
        width: 80px !important;
        height: 80px !important;
        top: 60% !important;
        left: auto !important;
        right: 8% !important;
        border: none !important;
    }
    
    /* Hide the right triangle */
    .triangle-right {
        display: none !important;
    }
    
    .shape-1 {
        width: 120px;
        height: 120px;
        top: 15%;
        left: 5%;
    }
    

    
    .club-photos {
        display: none;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .menu-tabs {
        display: none;
    }
    
    .mobile-menu-selector {
        display: block;
    }
    
    .photo-float {
        display: none !important;
    }
    
    .menu-item {
        margin: 0 5px;
        padding: 1.2rem;
    }
    
    .item-name {
        font-size: 1.1rem;
    }
    
    .item-price {
        font-size: 1.3rem;
    }
}

/* Cocktail Gallery */
.cocktail-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.cocktail-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.cocktail-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cocktail-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.cocktail-image-container {
    width: 100%;
    height: 0;
    padding-bottom: 75%; /* 4:3 aspect ratio */
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
    position: relative;
}

.cocktail-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

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

.cocktail-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    margin-top: 10px;
}

/* Modal Styles */
body.modal-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: transparent;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    margin: 0 auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: auto;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

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

.close-button {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.close-button:hover {
    color: #ff4757;
}

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

.modal-header h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.modal-image-container {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio for modal */
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
    position: relative;
}

.modal-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: rgba(0, 0, 0, 0.1);
    transition: none;
    -webkit-tap-highlight-color: transparent;
    will-change: auto;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.modal-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 30px;
    border-radius: 30px;
    display: inline-block;
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* Mobile Styles for Cocktail Gallery */
@media (max-width: 768px) {
    .cocktail-gallery {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        padding: 15px;
    }
    
    .cocktail-card {
        padding: 15px;
        max-width: 100%;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
        cursor: pointer;
        touch-action: manipulation;
    }
    
    .cocktail-name {
        font-size: 1.2rem;
    }
    
    .cocktail-image-container {
        padding-bottom: 70%; /* Slightly taller aspect ratio for mobile */
    }
    
    .cocktail-price {
        font-size: 1.5rem;
        padding: 8px 15px;
    }
    
    .modal {
        padding: 10px 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    
    .modal-content {
        width: 95%;
        margin: 10px auto;
        max-height: calc(100vh - 20px);
        overflow-y: auto;
        position: relative;
    }
    
    .modal-header {
        padding: 20px 20px 15px;
    }
    
    .modal-header h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .modal-image-container {
        padding-bottom: 56.25%; /* Keep consistent 16:9 aspect ratio */
    }
    
    .modal-price {
        font-size: 1.8rem;
        padding: 10px 20px;
    }
    
    .modal-body {
        padding: 20px;
        max-height: 300px;
        overflow-y: auto;
    }
    
    .modal-body p {
        font-size: 1rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
    }
    
    .close-button {
        font-size: 30px;
        top: 10px;
        right: 20px;
        padding: 5px;
        -webkit-tap-highlight-color: transparent;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .cocktail-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 10px;
    }
    
    .cocktail-card {
        padding: 15px;
        max-width: 100%;
    }
    
    .cocktail-name {
        font-size: 1.1rem;
    }
    
    .cocktail-image-container {
        padding-bottom: 75%; /* Square-ish aspect ratio for small screens */
    }
    
    .cocktail-price {
        font-size: 1.3rem;
        padding: 6px 12px;
    }
    
    .modal-content {
        width: 95%;
        margin: 2.5% auto;
        max-height: calc(100vh - 5%);
        min-height: 200px;
        position: relative;
    }
    
    .modal-header {
        padding: 15px 15px 10px;
    }
    
    .modal-header h2 {
        font-size: 1.4rem;
    }
    
    .modal-image-container {
        padding-bottom: 56.25%; /* Keep consistent 16:9 aspect ratio */
    }
    
    .modal-price {
        font-size: 1.6rem;
        padding: 8px 16px;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    .modal-body p {
        font-size: 0.9rem;
    }
}