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

body {
    font-family: 'Inter', sans-serif;
    background-color: #0B0B0B;
    color: white;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 0, 150, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 0, 0.05) 0%, transparent 50%);
}

/* Header / Hero Section */
.hero-section {
    height: 100vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(to bottom, transparent 0%, #0B0B0B 100%),
        radial-gradient(circle at 20% 30%, rgba(255, 0, 150, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: discoLights 8s ease-in-out infinite;
}

@keyframes discoLights {
    0%, 100% { opacity: 0.3; }
    25% { opacity: 0.6; }
    50% { opacity: 0.4; }
    75% { opacity: 0.7; }
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #FF9F1C, #FFB84D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FF9F1C;
    box-shadow: 0 0 20px rgba(255, 159, 28, 0.5);
    animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 159, 28, 0.5); }
    50% { box-shadow: 0 0 30px rgba(255, 159, 28, 0.8), 0 0 40px rgba(255, 184, 77, 0.3); }
}

.palm-tree {
    font-size: 20px;
}

.logo-text {
    font-family: 'Kaushan Script', cursive;
    font-size: 28px;
    font-weight: 400;
    color: #FF9F1C;
    text-shadow: 0 0 10px rgba(255, 159, 28, 0.8);
    animation: neonGlow 3s ease-in-out infinite;
}

@keyframes neonGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 159, 28, 0.8); }
    50% { text-shadow: 0 0 20px rgba(255, 159, 28, 1), 0 0 30px rgba(255, 184, 77, 0.5); }
}

.menu-toggle {
    font-size: 24px;
    cursor: pointer;
    color: white;
}

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

.hero-title {
    font-family: 'Kaushan Script', cursive;
    font-size: 4.5rem;
    font-weight: 400;
    color: white;
    margin-bottom: 30px;
    text-shadow: 
        0 0 10px rgba(255, 159, 28, 0.8),
        0 0 20px rgba(255, 184, 77, 0.6),
        0 0 30px rgba(255, 159, 28, 0.4);
    animation: titleGlow 4s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { 
        text-shadow: 
            0 0 10px rgba(255, 159, 28, 0.8),
            0 0 20px rgba(255, 184, 77, 0.6),
            0 0 30px rgba(255, 159, 28, 0.4);
    }
    50% { 
        text-shadow: 
            0 0 20px rgba(255, 159, 28, 1),
            0 0 30px rgba(255, 184, 77, 0.8),
            0 0 40px rgba(255, 159, 28, 0.6);
    }
}

.cta-button {
    background: transparent;
    border: 2px solid #FF9F1C;
    color: white;
    padding: 15px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 159, 28, 0.3);
    animation: buttonPulse 3s ease-in-out infinite;
}

.cta-button:hover {
    background: linear-gradient(45deg, #FF9F1C, #FFB84D);
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(255, 159, 28, 0.6), 0 0 30px rgba(255, 184, 77, 0.4);
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 159, 28, 0.3); }
    50% { box-shadow: 0 0 30px rgba(255, 159, 28, 0.6), 0 0 40px rgba(255, 184, 77, 0.3); }
}

/* Bar Section */
.bar-section {
    min-height: 100vh;
    background: #0B0B0B;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    overflow: hidden;
    animation: sectionGlow 8s ease-in-out infinite;
}

@keyframes sectionGlow {
    0%, 100% { 
        box-shadow: inset 0 0 50px rgba(255, 159, 28, 0.05);
    }
    50% { 
        box-shadow: inset 0 0 80px rgba(255, 159, 28, 0.1);
    }
}

.bar-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Circular bartender image */
.bartender-circle {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    width: 450px;
    height: 450px;
    z-index: 2;
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { 
        transform: translateY(-50%) translateY(0px) rotate(0deg);
    }
    50% { 
        transform: translateY(-50%) translateY(-10px) rotate(1deg);
    }
}

.bartender-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 100%;
    height: 100%;
    border: 2px solid white;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    animation: borderPulse 4s ease-in-out infinite;
}

@keyframes borderPulse {
    0%, 100% { 
        border-color: rgba(255, 255, 255, 1);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    50% { 
        border-color: rgba(255, 159, 28, 0.8);
        box-shadow: 0 0 30px rgba(255, 159, 28, 0.5);
    }
}

.bartender-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.2);
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

/* Text content positioned as in the image */
.bar-text-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 4;
    max-width: 500px;
}

.bar-title {
    font-family: 'Kaushan Script', cursive;
    font-size: 7rem;
    color: #FF9F1C;
    margin: 0;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 20px;
    position: relative;
    animation: titleFloat 5s ease-in-out infinite;
}

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

.bar-title::before {
    content: 'Bar';
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'Kaushan Script', cursive;
    font-size: 8.5rem;
    color: rgba(255, 159, 28, 0.3);
    font-weight: 400;
    z-index: -1;
    line-height: 1;
}

.bar-subtitle {
    font-family: 'Kaushan Script', cursive;
    font-size: 1.8rem;
    color: white;
    margin: 0;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 30px;
    margin-left: 20px;
}

.bar-banner {
    background: linear-gradient(to right, rgba(255, 159, 28, 0.9) 0%, rgba(255, 159, 28, 0.7) 50%, rgba(255, 159, 28, 0) 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    margin-left: 20px;
    font-family: 'Kaushan Script', cursive;
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italic;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    animation: bannerSlide 6s ease-in-out infinite;
}

@keyframes bannerSlide {
    0%, 100% { 
        transform: translateX(0px);
    }
    50% { 
        transform: translateX(10px);
    }
}

.bar-banner .star {
    color: white;
    font-size: 1.2rem;
}

.bar-banner .banner-text {
    color: white;
    font-weight: 400;
}

.bar-reserve-button {
    background: #FF9F1C;
    color: black;
    border: none;
    padding: 15px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.bar-reserve-button:hover {
    background: #FFB84D;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    animation-play-state: paused;
}

.bar-banner:hover {
    animation-play-state: paused;
    transform: translateX(15px) scale(1.05);
}

.bar-title:hover {
    animation-play-state: paused;
    color: #FFB84D;
    transform: translateY(-8px);
}

/* Gradient Section */
.gradient-section { 
    border-radius: 40px !important;
    min-height: 100vh;
    background: linear-gradient(to bottom, #FF9F1C 0%, #0B0B0B 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    overflow: hidden;
    border-radius: 0 0 40px 40px;
    animation: gradientShift 10s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { 
        background: linear-gradient(to bottom, #FF9F1C 0%, #0B0B0B 100%);
    }
    50% { 
        background: linear-gradient(to bottom, #FFB84D 0%, #1a1a1a 100%);
    }
}

.gradient-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    animation: containerPulse 8s ease-in-out infinite;
}

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

/* Circular image */
.gradient-circle {
    position: relative;
    width: 350px;
    height: 350px;
    z-index: 2;
    animation: gradientFloat 7s ease-in-out infinite;
}

@keyframes gradientFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    33% { 
        transform: translateY(-8px) rotate(1deg);
    }
    66% { 
        transform: translateY(4px) rotate(-1deg);
    }
}

.gradient-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 100%;
    height: 100%;
    border: 2px solid white;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    animation: gradientBorderPulse 5s ease-in-out infinite;
}

@keyframes gradientBorderPulse {
    0%, 100% { 
        border-color: rgba(255, 255, 255, 1);
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
    }
    50% { 
        border-color: rgba(0, 0, 0, 0.8);
        box-shadow: 0 0 35px rgba(0, 0, 0, 0.6);
    }
}

.gradient-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.2);
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

/* Text content positioned as in the bar section but stacked */
.gradient-text-content {
    position: relative;
    z-index: 4;
    max-width: 500px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.gradient-title {
    font-family: 'Kaushan Script', cursive;
    font-size: 6rem;
    color: white;
    margin: 0;
    font-weight: 400;
    line-height: 1;
    position: relative;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation: gradientTitleFloat 6s ease-in-out infinite;
}

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

.gradient-title::before {
    content: 'Restaurant';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Kaushan Script', cursive;
    font-size: 7rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 400;
    z-index: -1;
    line-height: 1;
    text-shadow: none;
    white-space: nowrap;
}

.gradient-subtitle {
    font-family: 'Kaushan Script', cursive;
    font-size: 1.8rem;
    color: white;
    margin: 0;
    font-weight: 400;
    font-style: italic;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.gradient-banner {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0) 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-family: 'Kaushan Script', cursive;
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italic;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    animation: gradientBannerSlide 5s ease-in-out infinite;
}

@keyframes gradientBannerSlide {
    0%, 100% { 
        transform: translateX(0px);
    }
    50% { 
        transform: translateX(-8px);
    }
}

.gradient-banner .star {
    color: #FF9F1C;
    font-size: 1.2rem;
}

.gradient-banner .banner-text {
    color: white;
    font-weight: 400;
}

.gradient-reserve-button {
    background: #FF9F1C;
    color: black;
    border: none;
    padding: 15px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.gradient-reserve-button:hover {
    background: #FFB84D;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    animation-play-state: paused;
}

.gradient-banner:hover {
    animation-play-state: paused;
    transform: translateX(-12px) scale(1.05);
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.gradient-title:hover {
    animation-play-state: paused;
    color: #FFB84D;
    transform: translateY(-12px);
    text-shadow: 0 0 30px rgba(255, 184, 77, 0.8);
}

.gradient-circle:hover {
    animation-play-state: paused;
    transform: translateY(-15px) rotate(5deg) scale(1.05);
}


/* Services Section */
.services-section {
    min-height: 100vh;
    background: #0B0B0B;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 40px;
    overflow: hidden;
}

/* Video de fondo */
.services-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    opacity: 0.5;
    filter: brightness(0.5) contrast(1.2) saturate(0.9);
    min-width: 100%;
    min-height: 100%;
    display: block;
}

/* Forzar reproducción del video */
.services-bg-video::-webkit-media-controls {
    display: none !important;
}

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

/* Overlay para mejorar contraste */
.services-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(11, 11, 11, 0.7) 0%,
        rgba(11, 11, 11, 0.4) 50%,
        rgba(11, 11, 11, 0.6) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.services-container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

.services-content {
    flex: 1;
    max-width: 600px;
    padding-left: 50px;
}

.services-title {
    font-family: 'Kaushan Script', cursive;
    font-size: 6rem;
    font-weight: 400;
    background: linear-gradient(45deg, #FF8C00, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 140, 0, 0.8);
    margin-bottom: 20px;
    position: relative;
    animation: servicesTitleGlow 4s ease-in-out infinite;
}

@keyframes servicesTitleGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.5));
    }
    50% { 
        filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.8));
    }
}

.services-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: white;
    font-style: italic;
    margin-bottom: 30px;
    opacity: 0.9;
}

.services-banner {
    background: linear-gradient(to right, rgba(255, 140, 0, 0.9) 0%, rgba(255, 140, 0, 0.7) 50%, rgba(255, 140, 0, 0) 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    font-style: italic;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    animation: servicesBannerSlide 6s ease-in-out infinite;
}

@keyframes servicesBannerSlide {
    0%, 100% { 
        transform: translateX(0px);
    }
    50% { 
        transform: translateX(10px);
    }
}

.services-banner .star {
    color: white;
    font-size: 1.2rem;
}

.services-banner .banner-text {
    color: white;
    font-weight: 400;
}

.services-reserve-button {
    background: #FF8C00;
    color: white;
    border: none;
    padding: 15px 35px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.services-reserve-button:hover {
    background: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 140, 0, 0.4);
}

/* Hookah Container */
.hookah-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hookah {
    position: relative;
    width: 500px;
    height: 750px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Imagen del hookah */
.hookah img[alt="Hookah"] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: 
        drop-shadow(0 0 20px rgba(255, 68, 68, 0.6))
        brightness(0.9)
        contrast(1.1);
    animation: hookahGlow 4s ease-in-out infinite;
    z-index: 3;
    position: relative;
}

@keyframes hookahGlow {
    0%, 100% { 
        filter: 
            drop-shadow(0 0 20px rgba(255, 68, 68, 0.6))
            brightness(0.9)
            contrast(1.1);
    }
    50% { 
        filter: 
            drop-shadow(0 0 30px rgba(255, 68, 68, 0.8))
            brightness(1.1)
            contrast(1.2);
    }
}



/* Efecto de partículas adicionales alrededor del hookah */
.hookah::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #ff6600 0%, #ff3300 100%);
    border-radius: 50%;
    box-shadow: 0 0 10px #ff6600;
    animation: emberFloat 4s ease-in-out infinite;
    z-index: 4;
}

.hookah::after {
    content: '';
    position: absolute;
    top: 60%;
    right: 15%;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #ff6600 0%, #ff3300 100%);
    border-radius: 50%;
    box-shadow: 0 0 8px #ff6600;
    animation: emberFloat 5s ease-in-out infinite;
    animation-delay: 2s;
    z-index: 4;
}

/* Efectos adicionales para el hookah */
.hookah:hover img[alt="Hookah"] {
    animation-play-state: paused;
    filter: 
        drop-shadow(0 0 40px rgba(255, 68, 68, 1))
        brightness(1.2)
        contrast(1.3);
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.hookah:hover .smoke-img {
    animation-play-state: paused;
    transform: translateX(-50%) translateY(-40px) scale(1.2) rotate(2deg);
    opacity: 1;
    transition: all 0.3s ease;
}

/* Efecto de pulso en el contenedor del hookah */
.hookah-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border: 2px solid rgba(255, 68, 68, 0.3);
    border-radius: 50%;
    animation: pulseRing 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulseRing {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.1;
    }
}


/* Rooftop View Section */
.roof-section {
    height: 100vh;
    background: linear-gradient(135deg, #FF9F1C 0%, #FFB84D 30%, #FF9F1C 70%, #FFB84D 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: discoLights 10s ease-in-out infinite;
}

.roof-section::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 1000 1000"><defs><radialGradient id="sky" cx="50%" cy="30%"><stop offset="0%" style="stop-color:%23fbbf24;stop-opacity:1" /><stop offset="100%" style="stop-color:%23f59e0b;stop-opacity:1" /></radialGradient></defs><rect width="100%" height="100%" fill="url(%23sky)"/><circle cx="200" cy="200" r="50" fill="%234ade80" opacity="0.6"/><circle cx="800" cy="300" r="80" fill="%234ade80" opacity="0.4"/><circle cx="400" cy="150" r="60" fill="%234ade80" opacity="0.5"/></svg>') center/cover;
    opacity: 0.8;
}

.roof-overlay {
    position: relative;
    z-index: 5;
}

.roof-title {
    font-size: 6rem;
    font-weight: 700;
    color: white;
    text-shadow: 
        0 0 20px rgba(255, 159, 28, 0.8),
        0 0 30px rgba(255, 184, 77, 0.6),
        0 0 40px rgba(255, 159, 28, 0.4);
    letter-spacing: 2px;
    animation: titleGlow 3s ease-in-out infinite;
}

/* Horarios Section */
.horarios-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0B0B0B 0%, #1a1a1a 50%, #0B0B0B 100%);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.horarios-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 159, 28, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 184, 77, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.neon-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 5;
}

.neon-title {
    font-family: 'Kaushan Script', cursive;
    font-size: 4rem;
    font-weight: 400;
    color: #FF9F1C;
    margin-bottom: 60px;
    text-shadow: 
        0 0 10px rgba(255, 159, 28, 0.8),
        0 0 20px rgba(255, 159, 28, 0.6),
        0 0 30px rgba(255, 159, 28, 0.4);
    animation: neonFlicker 2s ease-in-out infinite;
}

@keyframes neonFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
    75% { opacity: 0.9; }
}

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

.horario-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #FF9F1C;
    border-radius: 20px;
    padding: 30px 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

.day {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFB84D;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 184, 77, 0.6);
}

.time {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FF9F1C;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 159, 28, 0.6);
}

.event {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.8;
}

.special-events {
    background: rgba(255, 159, 28, 0.1);
    border: 2px solid #FF9F1C;
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.events-title {
    font-family: 'Kaushan Script', cursive;
    font-size: 2.5rem;
    color: #FF9F1C;
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(255, 159, 28, 0.8);
}

.events-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.event-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 159, 28, 0.1);
    border-radius: 15px;
    border: 1px solid #FF9F1C;
    transition: all 0.3s ease;
}

.event-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 159, 28, 0.3);
}

.event-day {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #FF9F1C;
    text-shadow: 0 0 10px rgba(255, 159, 28, 0.6);
}

.event-name {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Menu Section */
.menu-section {
    min-height: 100vh;
    background: #0B0B0B;
    padding: 80px 40px;
    text-align: center;
}

.menu-title {
    font-family: 'Kaushan Script', cursive;
    font-size: 4rem;
    color: #FF9F1C;
    margin-bottom: 60px;
    font-weight: 400;
    text-shadow: 0 0 15px rgba(255, 159, 28, 0.6);
    animation: neonFlicker 3s ease-in-out infinite;
}

.menu-items {
    max-width: 600px;
    margin: 0 auto 50px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.menu-item:hover {
    background: rgba(255, 159, 28, 0.1);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(255, 159, 28, 0.2);
}

.menu-image {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.sushi-placeholder {
    font-size: 30px;
}

.menu-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    flex: 1;
    text-align: left;
}

.menu-button {
    background: linear-gradient(45deg, #FF9F1C, #FFB84D);
    color: black;
    border: none;
    padding: 15px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 159, 28, 0.3);
    animation: buttonPulse 3s ease-in-out infinite;
}

.menu-button:hover {
    background: linear-gradient(45deg, #FFB84D, #FF9F1C);
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(255, 159, 28, 0.6), 0 0 30px rgba(255, 184, 77, 0.4);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 40px;
    background: #0B0B0B;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    height: 300px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

/* Borde animado con gradiente */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(45deg, #FF9F1C, #FFB84D, #FF9F1C);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.gallery-item:hover::before {
    opacity: 1;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

/* Overlay con gradiente */
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 159, 28, 0) 0%,
        rgba(255, 159, 28, 0.3) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    border-radius: 20px;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.1);
}

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

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(255, 159, 28, 0.4),
        0 0 60px rgba(255, 184, 77, 0.3),
        inset 0 0 20px rgba(255, 159, 28, 0.1);
}

/* Efectos individuales para cada item */
.gallery-1 {
    animation: floatAnimation 6s ease-in-out infinite;
}

.gallery-2 {
    animation: floatAnimation 7s ease-in-out infinite 0.5s;
}

.gallery-3 {
    animation: floatAnimation 6.5s ease-in-out infinite 1s;
}

.gallery-4 {
    animation: floatAnimation 7.5s ease-in-out infinite 1.5s;
}

.gallery-5 {
    animation: floatAnimation 6.8s ease-in-out infinite 2s;
}

.gallery-6 {
    animation: floatAnimation 7.2s ease-in-out infinite 2.5s;
}

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

/* Footer */
.footer {
    background: #0B0B0B;
    padding: 60px 40px 30px;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #1a1a2e;
}

.social-icon i {
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(45deg, #FF9F1C, #FFB84D);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 159, 28, 0.4);
}

.social-icon:hover i {
    color: white;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-link {
    font-family: 'Inter', sans-serif;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #FF9F1C;
    text-shadow: 0 0 10px rgba(255, 159, 28, 0.6);
}

.copyright {
    font-family: 'Inter', sans-serif;
    color: #666;
    font-size: 14px;
    font-weight: 300;
}

/* Mobile Menu Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(135deg, #0B0B0B 0%, #1a1a1a 100%);
    border-left: 2px solid #FF9F1C;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-logo img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.mobile-menu-logo span {
    font-family: 'Kaushan Script', cursive;
    font-size: 16px;
    color: #FF9F1C;
    font-weight: 400;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: #FF9F1C;
    color: black;
    transform: scale(1.1);
}

.mobile-menu-nav {
    flex: 1;
    padding: 40px 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    color: white;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 12px;
    width: 200px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    background: rgba(255, 159, 28, 0.2);
    border-color: #FF9F1C;
    color: #FF9F1C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 159, 28, 0.3);
}

.mobile-menu-link i {
    width: 24px;
    font-size: 20px;
    text-align: center;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid #333;
}

.mobile-menu-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.mobile-social-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-social-icon:hover {
    background: #FF9F1C;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 159, 28, 0.4);
}

.mobile-social-icon i {
    font-size: 16px;
}

/* Menu Toggle Enhanced Styles */
.menu-toggle {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 8px;
}

.menu-toggle:hover {
    background: rgba(255, 159, 28, 0.1);
    transform: scale(1.1);
}

.menu-toggle img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.menu-toggle:hover img {
    filter: brightness(0) saturate(100%) invert(70%) sepia(84%) saturate(2634%) hue-rotate(28deg) brightness(101%) contrast(101%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .roof-title {
        font-size: 4rem;
    }
    
    .navbar {
        padding: 20px;
    }
    
    /* Bar section responsive */
    .bartender-circle {
        width: 280px;
        height: 280px;
        right: 3%;
    }
    
    .bar-text-content {
        left: 5%;
        max-width: 300px;
    }
    
    .bar-title {
        font-size: 3rem;
    }
    
    .bar-subtitle {
        font-size: 1.9rem;
    }
    
    .bar-banner {
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    .bar-reserve-button {
        margin-left: 0;
        margin: 0 auto;
        display: block;
    }
    
    /* Gradient section responsive */
    .gradient-circle {
        width: 280px;
        height: 280px;
    }
    
    .gradient-title {
        font-size: 4rem;
    }
    
    .gradient-subtitle {
        font-size: 1.5rem;
    }
    
    .gradient-banner {
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    .services-section {
        padding: 40px 20px;
    }
    
    .services-container {
        flex-direction: row;
        gap: 20px;
    }
    
    .services-content {
        padding-left: 20px;
        max-width: 60%;
    }
    
    .services-title {
        font-size: 3.5rem;
    }
    
    .services-subtitle {
        font-size: 1.3rem;
    }
    
    .services-banner {
        font-size: 1.1rem;
        padding: 12px 20px;
    }
    
    .hookah-container {
        flex: 0 0 40%;
        order: 0;
    }
    
    .hookah {
        width: 100%;
        height: 450px;
    }
    
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Mobile menu responsive */
    .mobile-menu {
        width: 280px;
    }
    
    .mobile-menu-header {
        padding: 15px;
    }
    
    .mobile-menu-logo span {
        font-size: 14px;
    }
    
    .mobile-menu-link {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .mobile-menu-link i {
        font-size: 16px;
    }
    
    .mobile-menu-footer {
        padding: 15px;
    }
    
    .mobile-social-icon {
        width: 35px;
        height: 35px;
    }
    
    .mobile-social-icon i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .menu-title {
        font-size: 2.5rem;
    }
    
    .roof-title {
        font-size: 3rem;
    }
    
    /* Bar section mobile */
    .bartender-circle {
        width: 290px;
        height: 290px;
        right: 1%;
    }
    
    .bar-text-content {
        left: 2%;
        max-width: 250px;
    }
    
    .bar-title {
        font-size: 5.5rem;
    }
    
    .bar-subtitle {
        font-size: 1.9rem;
    }
    
    .bar-banner {
        font-size: 0.9rem;
        padding: 10px 15px; 
        color: white !important;
    }
    
    .bar-reserve-button {
        margin-left: 0;
        margin: 0 auto;
        display: block;
    }
    
    /* Gradient section mobile */
    .gradient-circle {
        width: 250px;
        height: 250px;
    }
    
    .gradient-title {
        font-size: 3.5rem;
    }
    
    .gradient-subtitle {
        font-size: 1.4rem;
    }
    
    .gradient-banner {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
    
    /* Services section mobile */
    .services-section {
        padding: 30px 15px;
    }
    
    .services-container {
        flex-direction: row;
        gap: 15px;
    }
    
    .services-content {
        padding-left: 10px;
        max-width: 50%;
        position: relative;
        z-index: 10;
    }
    
    .services-title {
        font-size: 2.8rem;
        line-height: 0.9;
    }
    
    .services-subtitle {
        font-size: 1.1rem;
    }
    
    .services-banner {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
    
    .services-reserve-button {
        padding: 12px 25px;
        font-size: 12px;
    }
    
    .hookah-container {
        flex: 0 0 80%;
        position: relative;
        z-index: 5;
    }
    
    .hookah {
        width: 120%;
        height: 600px;
        position: relative;
        z-index: 5;
    }
    
}
