:root {
    --primary-blue: #002347;
    --accent-red: #e63946;
    --gold: #d4af37;
    --bg-dark: #f8f9fa;
    --card-bg: rgba(255, 255, 255, 0.9);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --text-main: #2d3436;
    --text-muted: #636e72;
    --white: #ffffff;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-header: 0 4px 20px rgba(0, 51, 102, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(0, 35, 71, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(230, 57, 70, 0.03) 0%, transparent 20%);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
}

/* Modern Hero Header */
header {
    background: linear-gradient(135deg, #0056b3 0%, #001a35 100%);
    color: var(--white);
    padding: 3rem 1.5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    width: 140px;
    height: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    animation: bounceIn 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tagline {
    font-size: 1rem;
    opacity: 0.9;
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 2;
    position: relative;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.8;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.1);
    }

    80% {
        opacity: 1;
        transform: scale(0.89);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Pill Navigation */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1rem;
    display: flex;
    justify-content: center;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav::-webkit-scrollbar {
    display: none;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-blue);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.nav-link.active {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 35, 71, 0.3);
}

/* Menu Content */
.menu-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

section {
    margin-bottom: 4rem;
    scroll-margin-top: 100px;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    gap: 15px;
}

.section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--accent-red), transparent);
}

h2 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

.menu-item {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-red);
}

.item-main h3 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 4px;
    text-transform: capitalize;
}

.item-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-red);
    background: rgba(230, 57, 70, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 12px;
}

/* Footer Luxury */
footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 4rem 1.5rem;
    text-align: center;
}

footer p {
    opacity: 0.6;
    font-size: 0.8rem;
    margin-top: 1rem;
}

.social-links {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

.social-icon:hover {
    background: var(--accent-red);
}

.address-list {
    margin: 1.5rem 0;
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.address-list p {
    margin: 0 !important;
}

/* Floating Action Button */
.floating-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--accent-red);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
    z-index: 2000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.floating-btn:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.5);
    background: #ff4d5a;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    header {
        padding: 2.5rem 1.25rem 3.5rem;
    }

    .brand-logo {
        width: 110px;
    }

    .tagline {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    nav {
        padding: 0.75rem 0.5rem;
        justify-content: center;
        gap: 8px;
        display: flex;
    }

    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }

    .menu-container {
        padding: 2rem 1rem;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    h2 {
        font-size: 1.1rem;
    }

    .menu-item {
        padding: 1rem;
        gap: 10px;
        align-items: center;
        /* Centrar verticalmente nombre y precio */
    }

    .item-main h3 {
        font-size: 1rem;
        /* Un poco más pequeño para que entre */
    }

    .item-price {
        font-size: 1rem;
        padding: 0.3rem 0.6rem;
        flex-shrink: 0;
        /* Que el precio no se encoja */
    }

    footer {
        padding: 3rem 1.25rem;
    }

    .address-list {
        font-size: 0.85rem;
    }

    .floating-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
}