@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Bebas+Neue&display=swap');

:root {
    --primary: #ff4d00;
    /* Fire Orange */
    --secondary: #ffcc00;
    /* Honey Mustard */
    --dark: #121212;
    /* Charcoal Black */
    --darker: #050505;
    --light: #f8f8f8;
    --accent: #d32f2f;
    /* Deep Grill Red */
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--darker);
    color: var(--light);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    /* Prevent content copying */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Re-enable selection for inputs, textareas and editable elements */
input,
textarea,
[contenteditable="true"] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

h1,
h2,
h3,
.brand {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

/* Background Texture */
.bg-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 77, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(211, 47, 47, 0.05) 0%, transparent 50%);
    z-index: -1;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 48px;
    border-radius: 8px;
}

.brand {
    font-size: 2rem;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    line-height: 1;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 77, 0, 0.3);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 77, 0, 0.5);
    background: #ff5e1a;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, var(--darker) 100%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: saturate(1.5) contrast(1.2);
}

/* Sections */
section {
    padding: 100px 5%;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 50px;
    color: var(--light);
}

.section-title span {
    color: var(--primary);
}

/* Menu Grid */
.menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.menu-category {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.menu-category:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
}

.menu-category h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--secondary);
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 10px;
}

.menu-item {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.item-info h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.item-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.item-price {
    font-weight: 800;
    color: var(--primary);
    background: rgba(255, 77, 0, 0.1);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(45deg, var(--accent), var(--primary));
    padding: 60px 0;
    text-align: center;
    border-radius: 30px;
    margin: 50px 5%;
    box-shadow: 0 20px 40px rgba(255, 77, 0, 0.2);
}

.promo-banner h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.promo-banner p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Contact/Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.contact-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.phones {
    font-size: 2rem;
    font-weight: 800;
    margin: 30px 0;
    color: var(--secondary);
}

.phones a {
    color: inherit;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

/* Footer */
footer {
    padding: 60px 5% 30px;
    background: var(--dark);
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer-brand {
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: block;
    color: rgba(255, 255, 255, 0.5);
}

/* Floating WhatsApp Buttons */
.whatsapp-float,
.whatsapp-share-float {
    position: fixed;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp-float {
    bottom: 30px;
    background: #25D366;
    font-size: 2rem;
}

.whatsapp-share-float {
    bottom: 105px;
    background: #128C7E;
    font-size: 1.8rem;
}

.whatsapp-float:hover,
.whatsapp-share-float:hover {
    transform: scale(1.1) rotate(15deg);
}

.whatsapp-share-float:hover {
    transform: scale(1.1) rotate(-15deg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
        /* Hide desktop nav on mobile */
    }

    .menu-category {
        padding: 30px 20px;
    }

    .whatsapp-float,
    .whatsapp-share-float {
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float {
        bottom: 20px;
    }

    .whatsapp-share-float {
        bottom: 85px;
    }
}