/* Dark / Neon Theme */
:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --primary-pink: #ff00ff;
    --primary-blue: #00ffff;
    --text-white: #ffffff;
    --text-gray: #a1a1a1;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.neon-text-pink {
    color: var(--primary-pink);
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
}

.neon-text-blue {
    color: var(--primary-blue);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 1px var(--text-white);
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    z-index: 10;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text-white);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-white);
}

.nav-links a:hover {
    color: var(--primary-pink);
    text-shadow: 0 0 8px var(--primary-pink);
}

.btn-neon {
    border: 2px solid var(--primary-blue);
    padding: 8px 25px;
    color: var(--primary-blue);
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.btn-neon:hover {
    background: var(--primary-blue);
    color: #000;
    box-shadow: 0 0 20px var(--primary-blue);
}

.hamburger {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1555244162-803834f70033?auto=format&fit=crop&q=80&w=1920') center/cover;
    filter: brightness(0.4);
    z-index: -1;
}

.hero-content {
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 20px;
    font-weight: 900;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-pink);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
}

/* Enhanced Hover Pulse */
@keyframes pulseNeon {
    0% {
        box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 0, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.5);
    }

    100% {
        box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
    }
}

.btn-primary:hover {
    background: white;
    color: var(--primary-pink);
    animation: pulseNeon 1s infinite;
}

/* Flicker Animation */
.flicker-slow {
    animation: flicker 3s infinite alternate;
}

@keyframes flicker {

    0%,
    18%,
    22%,
    25%,
    53%,
    57%,
    100% {
        opacity: 1;
        text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    }

    20%,
    24%,
    55% {
        opacity: 0.9;
        text-shadow: none;
    }
}

/* Menu Highlights */
.menu-highlights {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 60px;
    text-align: center;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.food-card {
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    transition: 0.4s;
    border: 1px solid transparent;
}

.food-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 25px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.card-header h3 {
    font-size: 1.2rem;
    margin: 0;
}

.price {
    color: var(--primary-pink);
    font-weight: 700;
    font-size: 1.1rem;
}

.card-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-card {
    background: transparent;
    border: 1px solid var(--text-gray);
    color: white;
    padding: 8px 20px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.btn-card:hover {
    background: white;
    color: black;
    border-color: white;
}

/* Vibe Section */
.vibe {
    padding: 50px 0 100px;
}

.vibe-text {
    text-align: center;
    margin-bottom: 50px;
}

.vibe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    height: 400px;
}

.vibe-item {
    background-size: cover;
    background-position: center;
    transition: 0.5s;
    filter: grayscale(80%);
}

.vibe-item:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
}

/* Reservation */
.reservation {
    position: relative;
    padding: 100px 0;
    display: flex;
    justify-content: center;
    text-align: center;
}

.reservation-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1550966871-3ed3c47e2ce2?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    filter: blur(5px) brightness(0.3);
    z-index: -1;
}

.reservation-content h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.reservation-content p {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.res-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.res-form input {
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    min-width: 200px;
}

.res-form input:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.btn-neon-large {
    padding: 15px 40px;
    background: var(--primary-blue);
    color: black;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 0 20px var(--primary-blue);
    font-size: 1rem;
    transition: 0.3s;
}

.btn-neon-large:hover {
    background: white;
    box-shadow: 0 0 40px white;
    transform: scale(1.05);
}

/* Footer & Cookie Banner */
footer {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid #222;
}

.socials {
    margin-bottom: 20px;
}

.socials a {
    font-size: 1.5rem;
    margin: 0 15px;
    color: var(--text-gray);
}

.socials a:hover {
    color: var(--primary-pink);
}

.small-legal {
    font-size: 0.8rem;
    color: #444;
    margin-top: 10px;
}

.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 20px;
    right: 20px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--primary-pink);
    padding: 20px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.2);
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 600px;
    margin: 0 auto 20px;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    margin-right: 20px;
}

.cookie-banner a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.btn-neon-small {
    background: var(--primary-pink);
    border: none;
    color: white;
    padding: 8px 15px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.8rem;
    white-space: nowrap;
}

.btn-neon-small:hover {
    background: white;
    color: black;
}

/* Mobile */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .vibe-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .vibe-item {
        height: 250px;
    }

    .res-form {
        flex-direction: column;
    }

    .res-form input {
        width: 100%;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        left: 10px;
        right: 10px;
    }

    .cookie-banner p {
        margin-right: 0;
    }
}