 /* --- ROOT & RESET --- */
 :root {
     --neon-red: #ff3b3b;
     --neon-glow: rgba(255, 59, 59, 0.4);
     --bg-dark: #080808;
     --bg-card: #121212;
     --text-main: #ededed;
     --text-muted: #888888;
     --border-subtle: #2a2a2a;
     --font-head: 'Oswald', sans-serif;
     --font-body: 'Inter', sans-serif;
     --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
 }

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

 html {
     scroll-behavior: smooth;
 }

 body {
     background-color: var(--bg-dark);
     color: var(--text-main);
     font-family: var(--font-body);
     overflow-x: hidden;
     line-height: 1.6;
 }

 a {
     text-decoration: none;
     color: inherit;
     transition: var(--transition);
 }

 ul {
     list-style: none;
 }

 /* --- UTILITIES --- */
 h1,
 h2,
 h3 {
     font-family: var(--font-head);
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .container {
     max-width: 1280px;
     margin: 0 auto;
     padding: 0 24px;
 }

 .text-neon {
     color: #fff;
     text-shadow: 0 0 10px var(--neon-glow), 0 0 20px var(--neon-glow);
 }

 .section-header {
     margin-bottom: 80px;
     text-align: center;
     position: relative;
     width: 100%;
 }

 .section-header h2 {
     font-size: 3.5rem;
     color: transparent;
     -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
     position: relative;
     z-index: 2;
 }

 .section-header span {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     font-size: 1.5rem;
     color: var(--neon-red);
     font-weight: 700;
     z-index: 3;
     letter-spacing: 4px;
     text-shadow: 0 0 15px var(--neon-red);
     background: var(--bg-dark);
     padding: 0 15px;
 }

 /* --- BUTTONS --- */
 .btn-primary {
     display: inline-block;
     padding: 16px 40px;
     background: transparent;
     border: 1px solid var(--neon-red);
     color: var(--neon-red);
     font-family: var(--font-head);
     font-size: 1rem;
     letter-spacing: 2px;
     position: relative;
     overflow: hidden;
     z-index: 1;
     cursor: pointer;
 }

 .btn-primary::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: var(--neon-red);
     transition: var(--transition);
     z-index: -1;
 }

 .btn-primary:hover::before {
     left: 0;
 }

 .btn-primary:hover {
     color: #000;
     box-shadow: 0 0 30px var(--neon-glow);
 }

 /* --- HEADER & NAV --- */
 header {
     position: fixed;
     top: 0;
     width: 100%;
     z-index: 1000;
     padding: 20px 0;
     transition: 0.4s;
 }

 header.scrolled {
     background: rgba(8, 8, 8, 0.9);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     padding: 15px 0;
     border-bottom: 1px solid var(--border-subtle);
 }

 nav {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo {
     font-family: var(--font-head);
     font-size: 1.8rem;
     font-weight: 700;
     color: #fff;
 }

 .logo span {
     color: var(--neon-red);
 }

 .nav-links {
     display: flex;
     gap: 40px;
     align-items: center;
 }

 .nav-links a {
     font-size: 0.9rem;
     text-transform: uppercase;
     letter-spacing: 1px;
     opacity: 0.7;
     position: relative;
 }

 .nav-links a:hover {
     opacity: 1;
     color: #fff;
 }

 /* LANGUAGE TOGGLE STYLE */
 .lang-switch {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-left: 20px;
     border-left: 1px solid var(--border-subtle);
     padding-left: 20px;
 }

 .lang-btn {
     font-size: 0.85rem;
     font-weight: bold;
     cursor: pointer;
     opacity: 0.5;
     transition: 0.3s;
     font-family: var(--font-head);
 }

 .lang-btn:hover {
     opacity: 0.8;
     color: var(--neon-red);
 }

 .lang-btn.active {
     opacity: 1;
     color: var(--neon-red);
     text-shadow: 0 0 8px var(--neon-glow);
 }

 .menu-toggle {
     display: none;
     font-size: 1.5rem;
     cursor: pointer;
 }

 /* --- HERO --- */
 .hero {
     height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     background: url('https://images.unsplash.com/photo-1594212699903-ec8a3eca50f5?q=80&w=2071&auto=format&fit=crop') no-repeat center center/cover;
 }

 .hero-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(180deg, rgba(8, 8, 8, 0.6) 0%, rgba(8, 8, 8, 0.8) 50%, var(--bg-dark) 100%);
 }

 .hero-content {
     position: relative;
     z-index: 2;
     text-align: center;
     max-width: 800px;
 }

 .hero-subtitle {
     color: var(--neon-red);
     letter-spacing: 4px;
     font-size: 1.2rem;
     margin-bottom: 20px;
     text-transform: uppercase;
     font-weight: 600;
     animation: flicker 2s infinite;
 }

 .hero-title {
     font-size: 5rem;
     line-height: 1;
     margin-bottom: 30px;
     text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
 }

 /* --- ABOUT --- */
 .about {
     padding: 120px 0;
     position: relative;
 }

 .about-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
 }

 .about-img-wrapper {
     position: relative;
     border-radius: 4px;
     overflow: hidden;
 }

 .about-img-wrapper::after {
     content: '';
     position: absolute;
     inset: 0;
     border: 1px solid var(--neon-red);
     transform: translate(15px, 15px);
     z-index: -1;
     transition: var(--transition);
 }

 .about-img-wrapper:hover::after {
     transform: translate(10px, 10px);
 }

 .about-img {
     width: 100%;
     display: block;
     filter: grayscale(100%) contrast(1.2);
     transition: var(--transition);
 }

 .about-img-wrapper:hover .about-img {
     filter: grayscale(0%) contrast(1.1);
 }

 .about-text p {
     margin-bottom: 20px;
     font-size: 1.1rem;
     color: var(--text-muted);
 }

 .highlight {
     color: #fff;
     border-bottom: 1px solid var(--neon-red);
 }

 /* --- MENU --- */
 .menu-section {
     padding: 100px 0;
     background-color: var(--bg-card);
 }

 .category-nav {
     display: flex;
     justify-content: center;
     gap: 20px;
     margin-bottom: 60px;
     flex-wrap: wrap;
 }

 .cat-btn {
     background: transparent;
     border: none;
     color: var(--text-muted);
     font-family: var(--font-head);
     font-size: 1.2rem;
     cursor: pointer;
     padding: 10px 20px;
     transition: 0.3s;
     border-bottom: 2px solid transparent;
 }

 .cat-btn.active,
 .cat-btn:hover {
     color: var(--neon-red);
     border-color: var(--neon-red);
 }

 .menu-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
     gap: 30px;
 }

 .menu-card {
     background: var(--bg-dark);
     border: 1px solid var(--border-subtle);
     padding: 30px;
     position: relative;
     transition: var(--transition);
     overflow: hidden;
 }

 .menu-card:hover {
     border-color: var(--neon-red);
     transform: translateY(-5px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
 }

 .menu-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 2px;
     height: 0;
     background: var(--neon-red);
     transition: 0.5s;
     box-shadow: 0 0 10px var(--neon-red);
 }

 .menu-card:hover::before {
     height: 100%;
 }

 .dish-header {
     display: flex;
     justify-content: space-between;
     margin-bottom: 15px;
     align-items: baseline;
 }

 .dish-name {
     font-family: var(--font-head);
     font-size: 1.4rem;
     color: #fff;
 }

 .dish-price {
     color: var(--neon-red);
     font-weight: 600;
     font-size: 1.1rem;
 }

 .dish-desc {
     font-size: 0.95rem;
     color: var(--text-muted);
 }

 /* --- INFO --- */
 .info-section {
     padding: 120px 0;
     background: var(--bg-dark);
 }

 .info-container {
     display: grid;
     grid-template-columns: 1fr 1.5fr;
     gap: 50px;
     border: 1px solid var(--border-subtle);
     background: var(--bg-card);
 }

 .info-details {
     padding: 60px;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .detail-block {
     margin-bottom: 40px;
 }

 .detail-block h3 {
     color: var(--neon-red);
     margin-bottom: 15px;
     font-size: 1.3rem;
 }

 .detail-block p {
     color: var(--text-muted);
     margin-bottom: 5px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .map-frame {
     width: 100%;
     height: 100%;
     min-height: 400px;
     filter: grayscale(100%) invert(92%);
 }

 /* --- FOOTER --- */
 footer {
     background: #000;
     padding: 40px 0;
     border-top: 1px solid var(--border-subtle);
     text-align: center;
 }

 .socials {
     margin-bottom: 20px;
 }

 .socials a {
     display: inline-flex;
     width: 40px;
     height: 40px;
     border: 1px solid var(--border-subtle);
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     margin: 0 5px;
     color: var(--text-muted);
 }

 .socials a:hover {
     border-color: var(--neon-red);
     color: var(--neon-red);
     box-shadow: 0 0 10px var(--neon-glow);
 }

 /* --- ANIMATIONS & RESPONSIVE --- */
 @keyframes flicker {

     0%,
     19%,
     21%,
     23%,
     25%,
     54%,
     56%,
     100% {
         opacity: 1;
     }

     20%,
     24%,
     55% {
         opacity: 0.5;
     }
 }

 .fade-up {
     opacity: 0;
     transform: translateY(30px);
     transition: 0.8s ease-out;
 }

 .fade-up.active {
     opacity: 1;
     transform: translateY(0);
 }

 @media (max-width: 768px) {
     .section-header h2 {
         font-size: 2.5rem;
     }

     .hero-title {
         font-size: 3rem;
     }

     .about-grid,
     .info-container {
         grid-template-columns: 1fr;
     }

     .nav-links {
         position: fixed;
         top: 0;
         right: -100%;
         height: 100vh;
         width: 70%;
         background: var(--bg-card);
         flex-direction: column;
         justify-content: center;
         transition: 0.4s;
         border-left: 2px solid var(--neon-red);
     }

     .nav-links.active {
         right: 0;
     }

     .menu-toggle {
         display: block;
         color: #fff;
         z-index: 1001;
     }

     /* Fix lang switch on mobile */
     .lang-switch {
         border-left: none;
         border-top: 1px solid #333;
         padding-left: 0;
         padding-top: 20px;
         margin-left: 0;
     }
 }