/* --- Ultra-Modern Space Theme: Nebula Pro --- */
:root {
    --space-deep: #020205;
    --space-light: #0a0a16;
    --neon-cyan: #00f3ff;
    --neon-cyan-glow: rgba(0, 243, 255, 0.6);
    --neon-purple: #bc13fe;
    --neon-purple-glow: rgba(188, 19, 254, 0.6);
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.05);
    --text-main: #f0f0f5;
    --text-muted: #8a8a9e;
}

/* Custom Cursor & Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--space-deep);
}
::-webkit-scrollbar-thumb {
    background: var(--neon-purple);
    border-radius: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    cursor: crosshair; /* Edgy futuristic cursor */
}

body {
    background: radial-gradient(circle at center, var(--space-light) 0%, var(--space-deep) 100%);
    color: var(--text-main);
    font-family: 'Space Grotesk', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, .logo {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

/* --- Dynamic Background Elements --- */
#stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

/* Ambient glowing orbs */
.ambient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.4;
    animation: drift 20s infinite alternate ease-in-out;
}
.orb-1 {
    width: 400px; height: 400px;
    background: var(--neon-purple);
    top: -100px; left: -100px;
}
.orb-2 {
    width: 300px; height: 300px;
    background: var(--neon-cyan);
    bottom: -50px; right: -50px;
}

@keyframes drift {
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* --- Premium Glassmorphism Utilities --- */
.glass-panel {
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-left: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.1);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
}

/* --- Navigation --- */
.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(2, 2, 5, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(to right, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 4px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0%;
    height: 2px;
    background: var(--neon-cyan);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--neon-cyan);
}

.nav-links a:hover {
    color: var(--text-main);
}
.nav-links a:hover::after {
    width: 100%;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.hero-content {
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.neon-text {
    position: relative;
    color: #fff;
    text-shadow: 
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px var(--neon-purple),
        0 0 40px var(--neon-purple),
        0 0 80px var(--neon-purple);
    animation: pulsate 2.5s infinite alternate;
}

@keyframes pulsate {
    100% {
        text-shadow: 
        0 0 4px #fff,
        0 0 11px #fff,
        0 0 19px var(--neon-purple),
        0 0 40px var(--neon-purple),
        0 0 80px var(--neon-purple),
        0 0 100px var(--neon-purple);
    }
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-inline: auto;
}

/* --- Buttons --- */
.btn-glow {
    display: inline-block;
    padding: 16px 40px;
    background: rgba(0, 243, 255, 0.05);
    color: var(--neon-cyan);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    border: 1px solid var(--neon-cyan);
    border-radius: 4px; /* Sharp edges for futuristic look */
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2), inset 0 0 15px rgba(0, 243, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 0; height: 0;
    background: var(--neon-cyan);
    border-radius: 50%;
    z-index: -1;
    transition: width 0.4s ease, height 0.4s ease;
}

.btn-glow:hover {
    color: var(--space-deep);
    box-shadow: 0 0 30px var(--neon-cyan-glow);
}

.btn-glow:hover::before {
    width: 300px; height: 300px;
}

.btn-outline {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    color: var(--text-main);
    text-decoration: none;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    transition: all 0.3s;
    background: rgba(255,255,255,0.02);
}

.btn-outline:hover {
    border-color: var(--neon-purple);
    background: rgba(188, 19, 254, 0.1);
    color: #fff;
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.3);
}

/* --- Sections --- */
.menu-section, .reviews-section {
    padding: 150px 5%;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 4rem;
    text-align: center;
    background: linear-gradient(to right, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Grid & Cards --- */
.menu-grid, .reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.menu-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.menu-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(0, 243, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 243, 255, 0.15), inset 0 1px 0 rgba(255,255,255,0.2);
}

.menu-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 24px 24px 0 0;
    border-bottom: 1px solid var(--glass-border);
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: brightness(0.8) contrast(1.2);
}

.menu-card:hover img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.1);
}

.card-content {
    padding: 30px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.02), transparent);
    border-radius: 0 0 24px 24px;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--neon-cyan);
    letter-spacing: 1px;
}

.card-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Reviews --- */
.review-card {
    padding: 40px;
    position: relative;
}
.review-card::before {
    content: '"';
    position: absolute;
    top: 20px; right: 30px;
    font-size: 5rem;
    color: rgba(255,255,255,0.05);
    font-family: serif;
    line-height: 1;
}

.stars {
    color: var(--neon-purple);
    margin-bottom: 20px;
    font-size: 1.5rem;
    letter-spacing: 5px;
    text-shadow: 0 0 10px var(--neon-purple);
}

.review-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #d0d0d0;
    line-height: 1.7;
}

.review-card span {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 50px 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 100px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}
footer p {
    color: var(--text-muted);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    font-size: 0.9rem;
}
