:root {
    --black: #0a0a0a;
    --black-soft: #111111;
    --black-deep: #050505;
    --purple-deep: #1a0a2e;
    --purple-neon: #8b00ff;
    --pink-neon: #ff0080;
    --pink-hot: #ff1744;
    --blue-electric: #00d4ff;
    --white: #ffffff;
    --white-soft: #e0e0e0;
    --gray: #888888;
    --gradient-accent: linear-gradient(135deg, var(--pink-neon), var(--purple-neon));
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Syne', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
}

.custom-cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--pink-neon);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    left: 0;
    top: 0;
    margin-left: -4px;
    margin-top: -4px;
    box-shadow: 0 0 10px var(--pink-neon), 0 0 20px var(--pink-neon);
    transition: width 0.2s, height 0.2s;
    opacity: 1 !important;
}

.custom-cursor.hovering {
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid var(--pink-neon);
    box-shadow: 0 0 15px var(--pink-neon);
}

a, button, .menu-item, .gallery-item, .event-card {
    cursor: none;
}

::selection {
    background: var(--pink-neon);
    color: var(--white);
}

.intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.intro-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.intro-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--white);
    animation: introPulse 2s ease-in-out infinite;
}

.intro-line {
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    margin: 20px auto 0;
    animation: introLine 1.5s ease-in-out 0.5s forwards;
}

@keyframes introPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes introLine {
    to { width: 200px; }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background 0.4s ease, padding 0.4s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 4rem;
    border-bottom: 1px solid rgba(255, 0, 128, 0.1);
}

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

.nav-logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    color: var(--white);
    text-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-soft);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--pink-neon);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--white);
}

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

.nav-cta {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--pink-neon);
    color: var(--pink-neon) !important;
    transition: all 0.3s ease !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--pink-neon);
    color: var(--white) !important;
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.4);
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, var(--purple-deep) 0%, var(--black-deep) 70%);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
    z-index: 1;
}

.light-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--pink-neon);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--purple-neon);
    top: 50%;
    right: -10%;
    animation-delay: -2s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: var(--blue-electric);
    bottom: -5%;
    left: 30%;
    animation-delay: -4s;
}

.orb-4 {
    width: 350px;
    height: 350px;
    background: var(--pink-hot);
    top: 30%;
    left: 20%;
    animation-delay: -1s;
}

.orb-5 {
    width: 200px;
    height: 200px;
    background: var(--purple-neon);
    bottom: 20%;
    right: 20%;
    animation-delay: -3s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 30px) scale(1.05); }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 0, 128, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 128, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 30%, var(--black) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--white);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 6s ease-in-out infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    10% { opacity: 0.8; transform: scale(1); }
    90% { opacity: 0.8; }
    100% { opacity: 0; transform: translateY(-100vh) scale(0); }
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 10;
    padding: 0 2rem;
}

.hero-tagline {
    font-family: 'Syne', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--pink-neon);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 12vw, 10rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.title-line.title-main {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(255, 0, 128, 0.5));
}

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

.neon-text {
    position: relative;
    z-index: 2;
    animation: neonFlicker 3s ease-in-out infinite;
}

.neon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: var(--pink-neon);
    filter: blur(40px);
    opacity: 0.5;
    z-index: 1;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes neonFlicker {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.8; }
    94% { opacity: 1; }
    96% { opacity: 0.9; }
    97% { opacity: 1; }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-subtitle {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--white-soft);
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    padding: 0 1rem;
}

.btn {
    position: relative;
    padding: 1.25rem 2.5rem;
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    min-width: 180px;
    text-align: center;
}

.btn:active {
    transform: scale(0.95);
}

.btn-primary {
    background: var(--pink-neon);
    color: var(--white);
    box-shadow: 0 0 40px rgba(255, 0, 128, 0.3);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(255, 0, 128, 0.6);
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: var(--white);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.6s ease;
}

.btn-primary:hover .btn-glow {
    width: 300px;
    height: 300px;
    opacity: 0.1;
}

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

.btn-secondary:hover {
    border-color: var(--pink-neon);
    color: var(--pink-neon);
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
}

.scroll-indicator span {
    font-family: 'Syne', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--pink-neon), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

.hero-accent-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.accent-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 0, 128, 0.1), transparent);
}

.accent-line.left {
    left: 15%;
}

.accent-line.right {
    right: 15%;
}

section {
    padding: 8rem 4rem;
    position: relative;
}

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

.section-tag {
    display: inline-block;
    font-family: 'Syne', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--pink-neon);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.experience {
    background: var(--black-soft);
}

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

.experience-card {
    position: relative;
    padding: 3rem 2rem;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
}

.experience-card:hover {
    border-color: var(--pink-neon);
    transform: translateY(-10px);
}

.card-visual {
    position: relative;
    height: 180px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
}

.card-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3), rgba(10, 10, 10, 0.7));
    transition: all 0.4s ease;
}

.card-visual::after {
    content: '✦';
    font-size: 3rem;
    color: var(--pink-neon);
    opacity: 0.5;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.experience-card:hover .card-visual::before {
    background: linear-gradient(to bottom, rgba(255, 0, 128, 0.2), rgba(10, 10, 10, 0.5));
}

.experience-card:hover .card-visual::after {
    opacity: 1;
    transform: scale(1.2);
}

.card-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--pink-neon);
    filter: blur(80px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.experience-card:hover .card-glow {
    opacity: 0.3;
}

.card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-content p {
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
    color: var(--gray);
}

.menu {
    background: var(--black-deep);
}

.menu-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.menu-item {
    position: relative;
    height: 300px;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s ease;
    text-decoration: none;
    color: var(--white);
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--black) 0%, transparent 80%);
    z-index: 1;
    transition: all 0.5s ease;
}

.menu-item:hover {
    transform: scale(1.02);
}

.menu-item:hover::before {
    background: linear-gradient(to top, rgba(255, 0, 128, 0.3) 0%, transparent 80%);
}

.menu-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--purple-deep), var(--black));
    background-size: cover;
    background-position: center;
}

.menu-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 0, 128, 0.2), transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(139, 0, 255, 0.2), transparent 50%);
}

.menu-info {
    position: relative;
    z-index: 2;
}

.menu-category {
    display: inline-block;
    font-family: 'Syne', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--pink-neon);
    margin-bottom: 0.5rem;
}

.menu-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.menu-info p {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    color: var(--gray);
}

.menu-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.menu-item:hover .menu-glow {
    transform: scaleX(1);
}

.gallery {
    background: var(--black-soft);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-row: span 2; }

.gallery-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--purple-deep), var(--black));
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-overlay span {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.events {
    background: var(--black-deep);
    overflow: hidden;
}

.events-slider {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.events-slider::-webkit-scrollbar {
    display: none;
}

.event-card {
    position: relative;
    min-width: 300px;
    padding: 2.5rem 2rem;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.05);
    scroll-snap-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

.event-card:hover {
    border-color: var(--pink-neon);
    transform: translateY(-5px);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.date-day {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    color: var(--pink-neon);
}

.date-month {
    font-family: 'Syne', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--gray);
}

.event-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.event-info p {
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
    color: var(--white-soft);
    margin-bottom: 1rem;
}

.event-tag {
    display: inline-block;
    font-family: 'Syne', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 0, 128, 0.1);
    color: var(--pink-neon);
}

.event-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.event-card:hover .event-border {
    transform: scaleX(1);
}

.reservation {
    background: var(--black-soft);
    position: relative;
    overflow: hidden;
}

.reservation-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.reservation-note {
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 1rem;
}

.reservation-form {
    margin-top: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group.full {
    grid-column: span 2;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 0;
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    color: var(--white);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    outline: none;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}

.form-group select {
    background-color: var(--black);
    color: var(--white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ff0080' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 1.5rem;
}

.form-group select option {
    background: var(--black);
    color: var(--white);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--pink-neon);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 0;
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
    color: var(--gray);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.75rem;
    font-size: 0.75rem;
    color: var(--pink-neon);
}

.reservation-form .btn {
    width: 100%;
    margin-top: 2rem;
}

.reservation-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.reservation-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: var(--purple-neon);
    filter: blur(150px);
    opacity: 0.2;
}

.footer {
    background: var(--black-deep);
    padding: 4rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
}

.footer-address p,
.footer-hours p {
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.25rem;
}

.footer-social {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
}

.footer-social a {
    font-family: 'Syne', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-soft);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--pink-neon);
}

.footer-copyright p {
    font-family: 'Syne', sans-serif;
    font-size: 0.8rem;
    color: var(--gray);
}

.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.15), transparent 70%);
    pointer-events: none;
    z-index: 9998;
    left: 0;
    top: 0;
    margin-left: -150px;
    margin-top: -150px;
    transition: opacity 0.3s ease;
}

@media (max-width: 1024px) {
    .navbar {
        padding: 1rem 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    section {
        padding: 5rem 2rem;
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 250px);
    }
    
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4) {
        grid-row: span 1;
    }
    
    .gallery-item:nth-child(3) {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .logo-container {
        flex-direction: row;
    }
    
    .nav-logo {
        width: 35px;
        height: 35px;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-group.full {
        grid-column: span 1;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 15vw, 5rem);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
        min-width: unset;
        padding: 1rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 200px);
    }
    
    .gallery-item:nth-child(3) {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        width: 30px;
        height: 30px;
    }
    
    .logo {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        gap: 1rem;
    }
    
    .btn {
        padding: 0.9rem 1.25rem;
        font-size: 0.8rem;
        max-width: 280px;
    }
    
    .reservation-content {
        padding: 0 1rem;
    }
    
    .footer {
        padding: 3rem 1rem;
    }
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.popup-content {
    background: var(--black);
    border: 1px solid var(--pink-neon);
    padding: 3rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.8);
    transition: transform 0.4s ease;
    box-shadow: 0 0 60px rgba(255, 0, 128, 0.3);
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--pink-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.5);
}

.popup-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.popup-content p {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    color: var(--white-soft);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.popup-close-btn {
    background: var(--pink-neon);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-close-btn:hover {
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.6);
    transform: scale(1.05);
}