:root {
    --primary-color: #FF6B00;
    --primary-hover: #E65A00;
    --bg-dark: #0A0A0A;
    --bg-card: #161616;
    --text-white: #FFFFFF;
    --text-gray: #B0B0B0;
    --glass-bg: rgba(22, 22, 22, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Typography --- */
h1,
h2,
h3 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.text-gradient {
    background: linear-gradient(to right, var(--primary-color), #FFA500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    border-radius: 4px;
    margin-right: 1rem;
}

.logo span {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.logo span small {
    color: var(--text-white);
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-white) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--primary-color) !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.btn-nav {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    border-radius: 6px;
}

/* --- Hero --- */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--bg-dark);
    padding: 10rem 0 5rem;
}

.facade-hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('images/fachada.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.hero p {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 0;
    font-weight: 500;
}

.hero-video-container {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

.hero-video {
    width: 100%;
    display: block;
}

.btn {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(255, 107, 0, 0.4);
}

/* --- Menu Preview --- */
.menu-preview {
    background: var(--bg-card);
}

.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.section-header h2 {
    font-size: 3rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.menu-card {
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.menu-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.menu-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
}

.menu-card h3 {
    margin-bottom: 1rem;
}

/* --- Menu Gallery --- */
.menu-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 5rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0.8;
    transition: var(--transition);
}

.item-overlay span {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .item-overlay {
    opacity: 1;
    background: linear-gradient(to top, var(--primary-color), transparent);
}

/* --- Locations --- */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.location-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
}

.location-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.location-card:hover .location-image img {
    transform: scale(1.05);
}

.location-info {
    padding: 2.5rem;
}

.location-tag {
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.location-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.location-card p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hours-list {
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--glass-border);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.location-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 107, 0, 0.5);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-whatsapp {
    background: #25D366;
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
}

.btn-ubereats {
    background: #000000;
    border: 1px solid #ffffff;
}

.btn-ubereats:hover {
    background: #ffffff;
    color: #000000;
}

/* --- Social --- */
.social-section {
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-card));
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.social-link {
    font-size: 2rem;
    color: var(--text-white);
    transition: var(--transition);
}

.social-link:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

/* --- Footer --- */
footer {
    padding: 4rem 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-logo {
    margin: 0 auto 1.5rem;
    display: flex;
    justify-content: center;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.copyright {
    color: var(--text-gray);
    font-size: 0.8rem;
}

/* --- Responsiveness --- */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-content {
        flex-direction: column !important;
        gap: 0.5rem !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .nav-actions {
        width: 100% !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .nav-links {
        display: flex !important;
        justify-content: center !important;
        gap: 1rem !important;
        margin-bottom: 0.5rem !important;
    }

    .nav-links a {
        font-size: 0.75rem !important;
        white-space: nowrap !important;
    }

    .btn-nav {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.7rem !important;
        width: auto !important;
    }

    .hero {
        padding: 8rem 0 4rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-info {
        padding: 1.5rem;
    }

    .location-actions {
        grid-template-columns: 1fr;
    }

    .menu-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    section {
        padding: 4rem 0;
    }

    .social-links {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .logo span {
        font-size: 1rem;
    }

    .logo span small {
        font-size: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .menu-gallery {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 1rem 1.5rem;
        width: 100%;
        text-align: center;
    }

    .hours-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.2rem;
        margin-bottom: 0.8rem;
    }
}