/* ================================================================
   CASA BLANCO BISTRO BEER & GRILL - MENÚ
   Color Palette: Negro Carbón + Rojo
   ================================================================ */

/* ===== CSS VARIABLES ===== */
:root {
    /* Main Colors */
    --carbon-black: #0a0a0a;
    --carbon-dark: #111111;
    --carbon-medium: #1a1a1a;
    --carbon-light: #222222;
    --carbon-lighter: #2a2a2a;
    --carbon-border: #333333;

    /* Red Accent */
    --red-primary: #c0392b;
    --red-bright: #e74c3c;
    --red-dark: #922b21;
    --red-glow: rgba(231, 76, 60, 0.3);
    --red-subtle: rgba(192, 57, 43, 0.15);

    /* Gold Accent */
    --gold: #d4a574;
    --gold-light: #e8c9a0;
    --gold-dark: #b8956a;

    /* Text Colors */
    --text-primary: #f5f0eb;
    --text-secondary: #b8b0a8;
    --text-muted: #8a8480;
    --text-dark: #666;

    /* Fonts */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', 'Segoe UI', sans-serif;
    --font-cursive: 'Great Vibes', cursive;

    /* Spacing */
    --section-padding: 80px;
    --content-max-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background-color: var(--carbon-black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--red-primary);
    color: white;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--carbon-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--red-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red-primary);
}

/* ===== PARTICLES BACKGROUND ===== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--red-bright);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.2;
    }
    100% {
        opacity: 0;
        transform: translateY(-20vh) scale(1);
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background:
        radial-gradient(ellipse at center, rgba(192, 57, 43, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, var(--carbon-black) 0%, var(--carbon-dark) 50%, var(--carbon-black) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.008) 2px,
            rgba(255, 255, 255, 0.008) 4px
        );
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(192, 57, 43, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(192, 57, 43, 0.05) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    animation: heroFadeIn 1.5s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-wrapper {
    margin-bottom: 1rem;
    position: relative;
}

.logo {
    width: 240px;
    height: 240px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid rgba(192, 57, 43, 0.3);
    box-shadow:
        0 0 40px rgba(192, 57, 43, 0.15),
        0 0 80px rgba(192, 57, 43, 0.05);
    transition: var(--transition-medium);
    background: white;
    padding: 5px;
}

.logo:hover {
    transform: scale(1.05);
    box-shadow:
        0 0 60px rgba(192, 57, 43, 0.25),
        0 0 120px rgba(192, 57, 43, 0.1);
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-secondary);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.divider-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red-primary), transparent);
}

.divider-icon {
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
}

.hero-subtitle {
    font-family: var(--font-cursive);
    font-size: 3.5rem;
    color: var(--red-bright);
    text-shadow: 0 0 30px rgba(231, 76, 60, 0.2);
}

.scroll-indicator {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    margin-top: 2rem;
    animation: scrollBounce 2s ease-in-out infinite;
    z-index: 2;
}

.scroll-indicator span {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--red-primary);
    border-bottom: 2px solid var(--red-primary);
    transform: rotate(45deg);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ===== NAVIGATION ===== */
.menu-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(192, 57, 43, 0.15);
    transition: var(--transition-medium);
}

.menu-nav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: var(--content-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    height: 65px;
}

.nav-logo-mini {
    flex-shrink: 0;
    margin-right: 1.5rem;
}

.nav-logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: contain;
    border: 1px solid rgba(192, 57, 43, 0.3);
    background: white;
    padding: 2px;
}

.nav-links {
    display: flex;
    gap: 0.25rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    padding: 0.5rem 0;
}

.nav-links::-webkit-scrollbar {
    display: none;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: 25px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(192, 57, 43, 0.1);
}

.nav-link.active {
    color: var(--red-bright);
    background: rgba(192, 57, 43, 0.15);
}

.nav-icon {
    font-size: 1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav-overlay {
    position: fixed;
    top: 65px;
    left: 0;
    width: 100%;
    height: calc(100vh - 65px);
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(30px);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    transform: translateY(20px);
    transition: var(--transition-medium);
}

.mobile-nav-overlay.active .mobile-nav-content {
    transform: translateY(0);
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-family: var(--font-display);
    font-size: 1.5rem;
    padding: 0.8rem 2rem;
    border-radius: 10px;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    color: var(--red-bright);
    background: rgba(192, 57, 43, 0.1);
}

.mobile-nav-link .nav-icon {
    font-size: 1.3rem;
}

/* ===== MENU CONTENT ===== */
.menu-content {
    position: relative;
    z-index: 1;
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== SECTION STYLES ===== */
.menu-section {
    padding: var(--section-padding) 0;
    position: relative;
}

.menu-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--carbon-border), transparent);
}

.menu-section:last-child::after {
    display: none;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 0 10px rgba(231, 76, 60, 0.2));
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--red-dark), var(--red-bright), var(--red-dark));
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(231, 76, 60, 0.3);
}

.section-note {
    font-size: 0.85rem;
    color: var(--gold);
    font-style: italic;
    margin-top: 1rem;
    font-weight: 300;
}

/* ===== SUB CATEGORIES ===== */
.sub-category {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.sub-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.sub-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gold-dark);
    border-radius: 1px;
}

/* ===== MENU GRID ===== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.menu-grid.grid-small {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* ===== MENU ITEM CARD ===== */
.menu-item {
    position: relative;
    background: linear-gradient(145deg, var(--carbon-medium), var(--carbon-dark));
    border: 1px solid var(--carbon-border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition-medium);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.menu-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--red-primary), transparent);
    opacity: 0;
    transition: var(--transition-medium);
}

.menu-item:hover {
    border-color: rgba(192, 57, 43, 0.3);
    transform: translateY(-4px);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(192, 57, 43, 0.08);
}

.menu-item:hover::before {
    opacity: 1;
}

/* Premium Item */
.item-premium {
    border-color: rgba(212, 165, 116, 0.2);
    background: linear-gradient(145deg, var(--carbon-medium), var(--carbon-dark), rgba(212, 165, 116, 0.03));
}

.item-premium::before {
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.item-premium:hover {
    border-color: rgba(212, 165, 116, 0.4);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(212, 165, 116, 0.08);
}

.premium-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--carbon-black);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

/* Small Item */
.item-small {
    padding: 1.2rem;
}

/* Item Header */
.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.item-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    flex: 1;
}

.item-price {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--red-bright);
    white-space: nowrap;
    flex-shrink: 0;
    text-shadow: 0 0 10px rgba(231, 76, 60, 0.15);
}

.item-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--carbon-border), transparent);
    margin-bottom: 0.6rem;
}

.item-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

.item-options {
    font-size: 0.8rem;
    color: var(--gold);
    line-height: 1.5;
    font-weight: 400;
    margin-top: 0.5rem;
    font-style: italic;
}

.item-includes {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
    margin-top: 0.5rem;
    padding: 0.5rem 0.8rem;
    background: rgba(255, 255, 255, 0.02);
    border-left: 2px solid rgba(192, 57, 43, 0.3);
    border-radius: 0 4px 4px 0;
}

/* ===== MENU CATEGORY HEADERS ===== */
.menu-category-header {
    text-align: center;
    padding: 4rem 1.5rem 1rem;
    position: relative;
    z-index: 1;
    max-width: var(--content-max-width);
    margin: 0 auto;
}

.category-title {
    font-family: var(--font-cursive);
    font-size: 3rem;
    color: var(--red-bright);
    text-shadow: 0 0 30px rgba(231, 76, 60, 0.2);
    margin-bottom: 0.5rem;
}

.category-line {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red-primary), transparent);
    margin: 0 auto;
}

/* Tags */
.item-tag {
    display: inline-block;
    margin-top: 0.8rem;
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tag-popular {
    background: rgba(192, 57, 43, 0.12);
    color: var(--red-bright);
    border: 1px solid rgba(192, 57, 43, 0.25);
}

.tag-fire {
    background: rgba(231, 76, 60, 0.15);
    color: #ff6b6b;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.tag-spicy {
    background: rgba(255, 107, 53, 0.12);
    color: #ff8c42;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    z-index: 1;
    margin-top: 4rem;
    background: linear-gradient(180deg, var(--carbon-dark), var(--carbon-black));
    border-top: 1px solid rgba(192, 57, 43, 0.15);
    padding: 3rem 1.5rem 1.5rem;
}

.footer-content {
    max-width: var(--content-max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--carbon-border);
}

.footer-logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: contain;
    border: 1px solid rgba(192, 57, 43, 0.2);
    background: white;
    padding: 3px;
}

.footer-info {
    flex: 1;
    min-width: 250px;
}

.footer-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.footer-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
}

.footer-social {
    min-width: 200px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.8rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--carbon-lighter);
    color: var(--text-secondary);
    transition: var(--transition-fast);
    border: 1px solid var(--carbon-border);
}

.social-link:hover {
    background: var(--red-primary);
    color: white;
    border-color: var(--red-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(192, 57, 43, 0.3);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-dark);
    font-weight: 300;
}

/* ================================================================
   RESPONSIVE DESIGN
   ================================================================ */

/* === TABLET (768px) === */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    html {
        scroll-padding-top: 65px;
    }

    .hero {
        padding: 3rem 1rem 4rem;
    }

    .hero-subtitle {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
        letter-spacing: 4px;
        margin-bottom: 1rem;
    }

    .hero-divider {
        margin-bottom: 1rem;
    }

    .logo {
        width: 180px;
        height: 180px;
    }

    .logo-wrapper {
        margin-bottom: 0.8rem;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .menu-grid.grid-small {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .footer-content {
        flex-direction: column;
    }

    .sub-title {
        font-size: 1.3rem;
    }
}

/* === MOBILE (480px) === */
@media (max-width: 480px) {
    :root {
        --section-padding: 50px;
    }

    html {
        font-size: 15px;
    }

    .hero {
        padding: 2.5rem 1rem 3.5rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 0.8rem;
        letter-spacing: 3px;
        margin-bottom: 0.8rem;
    }

    .hero-divider {
        margin-bottom: 0.8rem;
    }

    .logo {
        width: 160px;
        height: 160px;
    }

    .logo-wrapper {
        margin-bottom: 0.6rem;
    }

    .divider-line {
        width: 50px;
    }

    .scroll-indicator {
        margin-top: 1rem;
    }

    .section-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .section-icon {
        font-size: 2rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .menu-grid.grid-small {
        grid-template-columns: 1fr;
    }

    .menu-item {
        padding: 1.2rem;
        border-radius: 10px;
    }

    .item-name {
        font-size: 1.05rem;
    }

    .item-price {
        font-size: 1.05rem;
    }

    .item-desc {
        font-size: 0.82rem;
    }

    .mobile-nav-link {
        font-size: 1.2rem;
        padding: 0.6rem 1.5rem;
    }

    .footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-logo-img {
        width: 60px;
        height: 60px;
    }

    .footer-name {
        font-size: 1rem;
    }
}

/* === VERY SMALL (360px) === */
@media (max-width: 360px) {
    html {
        font-size: 14px;
    }

    .hero-subtitle {
        font-size: 1.7rem;
    }

    .logo {
        width: 140px;
        height: 140px;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .menu-content {
        padding: 0 1rem;
    }

    .menu-item {
        padding: 1rem;
    }
}

/* === SHORT SCREENS (landscape phones or small height) === */
@media (max-height: 700px) {
    .hero {
        min-height: auto;
        padding: 2rem 1rem 2rem;
    }

    .logo {
        width: 120px;
        height: 120px;
    }

    .logo-wrapper {
        margin-bottom: 0.5rem;
    }

    .hero-tagline {
        margin-bottom: 0.5rem;
        font-size: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .hero-divider {
        margin-bottom: 0.5rem;
    }

    .scroll-indicator {
        margin-top: 1rem;
    }
}

/* === VERY SHORT SCREENS (under 600px height) === */
@media (max-height: 580px) {
    .logo {
        width: 90px;
        height: 90px;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-tagline {
        font-size: 0.65rem;
        letter-spacing: 2px;
        margin-bottom: 0.3rem;
    }

    .hero-divider {
        margin-bottom: 0.3rem;
    }

    .scroll-indicator {
        margin-top: 0.5rem;
    }

    .scroll-indicator span {
        display: none;
    }
}

/* === LARGE SCREENS (1400px+) === */
@media (min-width: 1400px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth stagger for items */
.menu-item:nth-child(1) { transition-delay: 0.05s; }
.menu-item:nth-child(2) { transition-delay: 0.1s; }
.menu-item:nth-child(3) { transition-delay: 0.15s; }
.menu-item:nth-child(4) { transition-delay: 0.2s; }
.menu-item:nth-child(5) { transition-delay: 0.25s; }
.menu-item:nth-child(6) { transition-delay: 0.3s; }
.menu-item:nth-child(7) { transition-delay: 0.35s; }
.menu-item:nth-child(8) { transition-delay: 0.4s; }

/* Print styles */
@media print {
    .particles,
    .menu-nav,
    .mobile-nav-overlay,
    .scroll-indicator,
    .footer-social {
        display: none !important;
    }

    body {
        background: white;
        color: #111;
    }

    .hero {
        min-height: auto;
        padding: 2rem;
        background: white;
    }

    .menu-item {
        background: white;
        border: 1px solid #ddd;
        break-inside: avoid;
        opacity: 1;
        transform: none;
    }

    .item-price {
        color: #c0392b;
    }

    .section-divider {
        background: #c0392b;
        box-shadow: none;
    }

    .footer {
        background: white;
        border-top: 1px solid #ddd;
    }
}
