
        :root {
            --primary-red: #e63946;
            --dark-red: #d00000;
            --light-red: #e63946;   
            --yellow: #ffbe0b;
            --white: #ffffffcb;
            --black: #000000;
            --dark-gray: #1a1a1a;
            --medium-gray: #2d2d2d;
            --light-gray: #444444;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            background-color: var(--black);
            color: var(--white);
            overflow-x: hidden;
        }
        
        /* Header */
        header {
            background-color: rgba(0, 0, 0, 0.9);
            color: var(--white);
            padding: 1rem 2rem;
            width: 100%;
            z-index: 1000;
            position: fixed;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        header.scrolled {
            padding: 0.7rem 2rem;
            background-color: rgba(0, 0, 0, 0.95);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        
        .logo-img:hover {
            transform: scale(1.05);
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        
        .logo-text span:first-child {
            color: var(--yellow);
            font-size: 1.8rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .logo-text span:last-child {
            font-size: 1rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--white);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 2rem;
            position: relative;
        }
        
        nav ul li a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            font-size: 1.1rem;
        }
        
        nav ul li a:hover {
            color: var(--yellow);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--yellow);
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1001;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1550547660-d9450f859349?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
        }
        
        .hero-content { 
            max-width: 900px;
            padding: 0 2rem;
            animation: fadeIn 1.5s ease-in;
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
            color: var(--yellow);
            font-weight: 800;
            line-height: 1.2;
        }
        
        .hero p {
            color: var(--yellow);
            font-size: 1.8rem;
            margin-bottom: 2.5rem;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
            font-weight: 300;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary-red);
            color: var(--white);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn:hover {
            background-color: var(--dark-red);
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
        }
        
        .btn-yellow {
            background-color: var(--yellow);
            color: var(--black);
            box-shadow: 0 4px 15px rgba(255, 190, 11, 0.3);
        }
        
        .btn-yellow:hover {
            background-color: #ffaa00;
            box-shadow: 0 8px 20px rgba(255, 190, 11, 0.4);
        }
        
        /* Sections */
        section {
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 3rem;
            color: var(--white);
            display: inline-block;
            font-weight: 700;
            position: relative;
        }
        
        .section-title h2::after {
            content: '';
            display: block;
            width: 100px;
            height: 5px;
            background: var(--yellow);
            margin: 1rem auto;
            border-radius: 5px;
        }
        
        /* Menu Section */
        #menu {
            background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1568901346375-23c9450c58cd?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            background-attachment: fixed;
        }
        
        .menu-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
            gap: 2.5rem;
        }
        
        .menu-item {
            background-color: rgba(26, 26, 26, 0.8);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.4s ease;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
        }
        
        .menu-item.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .menu-item:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            border-color: var(--yellow);
        }
        
        .menu-item-img {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .menu-item-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .menu-item:hover .menu-item-img img {
            transform: scale(1.1);
        }
        
        .menu-item-content {
            padding: 2rem;
        }
        
        .menu-item-title {
            font-size: 1.6rem;
            margin-bottom: 0.5rem;
            color: var(--white);
            font-weight: 600;
        }
        
        .menu-item-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--yellow);
            margin-bottom: 1rem;
        }
        
        .menu-item-desc {
            margin-bottom: 1.5rem;
            color: #cccccc;
            line-height: 1.6;
        }
        
        .menu-item-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        
        .tag {
            background-color: var(--light-red);
            color: var(--white);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        /* About Section */
        #about {
            background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('https://images.unsplash.com/photo-1571091718767-18b5b1457add?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            background-attachment: fixed;
            text-align: center;
        }
        
        .about-content {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .about p {
            margin: 0 auto 2rem;
            font-size: 1.2rem;
            line-height: 1.8;
            color: #dddddd;
        }
        
        /* Contact Section */
        #contact {
            background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1555992336-fb0d29498b13?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            background-attachment: fixed;
            text-align: center;
        }
        
        .contact-info {
            margin-bottom: 3rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .contact-info p {
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }
        
        .contact-info i {
            color: var(--yellow);
            font-size: 1.5rem;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background-color: var(--primary-red);
            color: var(--white);
            border-radius: 50%;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        
        .social-link:hover {
            background-color: var(--dark-red);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
        }
        
        /* Floating Buttons */
        .floating-btns {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            z-index: 999;
        }
        
        .floating-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            text-decoration: none;
            animation: pulse 2s infinite;
        }
        
        .floating-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
            animation: none;
        }
        
        .whatsapp-btn {
            background-color: #25D366;
        }
        
        .instagram-btn {
            background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-gray);
            color: var(--white);
            text-align: center;
            padding: 3rem 2rem;
            margin-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-logo {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--yellow);
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }
        
        .footer-links a:hover {
            color: var(--yellow);
        } 

        .dev-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1rem;
        }
        
        .dev-credits {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.5);
            margin-top: 1rem;
        }

        .dev-credits a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
        }

        .dev-credits a:hover {
            text-decoration: none;
        }
        
        .copyright {
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 1rem;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            }
        }
        
        @keyframes shine {
            100% {
                left: 100%;
            }
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 3.5rem;
            }
            
            .hero p {
                font-size: 1.5rem;
            }
            
            .menu-container {
                grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            header {
                padding: 1rem;
            }
            
            .header-container {
                flex-direction: row;
                justify-content: space-between;
            }
            
            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: rgba(0, 0, 0, 0.95);
                backdrop-filter: blur(10px);
                transition: right 0.4s ease;
                display: flex;
                align-items: center;
                justify-content: center;
                z-index: 1000;
            }
            
            nav.active {
                right: 0;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
                gap: 2rem;
            }
            
            nav ul li {
                margin: 0;
            }
            
            nav ul li a {
                font-size: 1.3rem;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .logo-img {
                height: 50px;
            }
            
            .logo-text span:first-child {
                font-size: 1.5rem;
            }
            
            .logo-text span:last-child {
                font-size: 0.8rem;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero p {
                font-size: 1.3rem;
            }
            
            .menu-container {
                grid-template-columns: 1fr;
            }
            
            .section-title h2 {
                font-size: 2.5rem;
            }
            
            .floating-btns {
                bottom: 1rem;
                right: 1rem;
            }
            
            .floating-btn {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            section {
                padding: 4rem 1rem;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .btn {
                padding: 0.8rem 2rem;
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .menu-item-title {
                font-size: 1.4rem;
            }
            
            .menu-item-price {
                font-size: 1.3rem;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
            
            .contact-info p {
                font-size: 1.1rem;
                flex-direction: column;
                gap: 0.5rem;
            }
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--dark-gray);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--primary-red);
            border-radius: 5px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--dark-red);
        }
        
        h1, h2, h3 {
            color: var(--white) !important;
        }
