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

body {
    font-family: 'Inter', sans-serif;
    background-color: #0B0B0B;
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
    background-image: url('assets/img/Hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}


/* Header */
.menu-header {
  

    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: none !important; 
    background-color: none !important;
}

.header-logo {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    object-fit: contain;
}

.menu-toggle {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 8px;
}

.menu-toggle:hover {
    background: rgba(255, 159, 28, 0.1);
    transform: scale(1.1);
}

.menu-toggle img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.menu-toggle:hover img {
    filter: brightness(0) saturate(100%) invert(70%) sepia(84%) saturate(2634%) hue-rotate(28deg) brightness(101%) contrast(101%);
}

/* Main Content */
.menu-main {
    padding: 120px 40px 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

/* Menu Title */
.menu-title {
    font-family: 'Kaushan Script', cursive;
    font-size: 5rem;
    font-weight: 400;
    color: white;
    text-align: center;
    text-shadow: 
        0 0 10px rgba(255, 159, 28, 0.8),
        0 0 20px rgba(255, 184, 77, 0.6),
        0 0 30px rgba(255, 159, 28, 0.4);
    animation: titleGlow 4s ease-in-out infinite;
    margin-bottom: 20px;
}

@keyframes titleGlow {
    0%, 100% { 
        text-shadow: 
            0 0 10px rgba(255, 159, 28, 0.8),
            0 0 20px rgba(255, 184, 77, 0.6),
            0 0 30px rgba(255, 159, 28, 0.4);
    }
    50% { 
        text-shadow: 
            0 0 20px rgba(255, 159, 28, 1),
            0 0 30px rgba(255, 184, 77, 0.8),
            0 0 40px rgba(255, 159, 28, 0.6);
    }
}

/* Menu Categories */
.menu-categories {
    display: flex; 
    flex-direction: column;
    align-items: center;
    gap: 25px;
    max-width: 350px;
    width: 100%;
}

@media (min-width: 1024px) {
    .menu-categories {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        max-width: 700px;
        width: 100%;
        align-items: stretch;
    }
}

.menu-card {
    background: #1a1a1a;
    border-radius: 300px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    gap: 15px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden; 
    height: 400px;
    max-width: 250px;
    width: 100%;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 159, 28, 0.1), transparent);
    transition: left 0.5s ease;
}

.menu-card:hover::before {
    left: 100%;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 159, 28, 0.2);
    border-color: rgba(255, 159, 28, 0.3);
}

.menu-image-container {
    position: relative;
    width: 100px;
    height: 100px;
}

.menu-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}


.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: brightness(1) contrast(1);
    transition: all 0.3s ease;
}

.menu-card:hover .menu-image img {
    filter: brightness(1) contrast(1.2);
    transform: scale(1.05);
}

.menu-content {
    text-align: center;
    width: 100%;
}

.menu-category-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    text-decoration: underline;
    text-decoration-color: white;
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.menu-card:hover .menu-category-title {
    color: #FF9F1C;
    text-decoration-color: #FF9F1C;
    text-shadow: 0 0 10px rgba(255, 159, 28, 0.6);
}

.menu-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    color: white;
    line-height: 1.4;
    opacity: 0.9;
    transition: all 0.3s ease;
    text-align: left;
}

.menu-card:hover .menu-description {
    opacity: 1;
    color: #ffffff;
}

/* Footer */
.menu-footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px 40px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.social-icon:hover {
    background: #FF9F1C;
    border-color: #FF9F1C;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 159, 28, 0.4);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-link {
    font-family: 'Inter', sans-serif;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #FF9F1C;
    text-shadow: 0 0 10px rgba(255, 159, 28, 0.6);
}

.footer-separator {
    width: 200px;
    height: 1px;
    background: white;
    margin: 0 auto 20px;
    opacity: 0.3;
}

.copyright {
    font-family: 'Inter', sans-serif;
    color: #999;
    font-size: 14px;
    font-weight: 300;
}

/* Mobile Menu Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(135deg, #0B0B0B 0%, #1a1a1a 100%);
    border-left: 2px solid #FF9F1C;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-logo img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.mobile-menu-logo span {
    font-family: 'Kaushan Script', cursive;
    font-size: 16px;
    color: #FF9F1C;
    font-weight: 400;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: #FF9F1C;
    color: black;
    transform: scale(1.1);
}

.mobile-menu-nav {
    flex: 1;
    padding: 40px 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    color: white;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 12px;
    width: 200px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    background: rgba(255, 159, 28, 0.2);
    border-color: #FF9F1C;
    color: #FF9F1C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 159, 28, 0.3);
}

.mobile-menu-link i {
    width: 24px;
    font-size: 20px;
    text-align: center;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid #333;
}

.mobile-menu-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.mobile-social-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-social-icon:hover {
    background: #FF9F1C;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 159, 28, 0.4);
}

.mobile-social-icon i {
    font-size: 16px;
}

/* Responsive Design */
@media (min-width: 769px) and (max-width: 1023px) {
    .menu-categories {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        max-width: 600px;
        width: 100%;
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    .menu-header {
        padding: 15px 20px;
    }
    
    .logo-img {
        /* Mantiene el tamaño natural */
    }
    
    .menu-main {
        padding: 100px 20px 40px;
        gap: 40px;
    }
    
    .menu-title {
        font-size: 3.5rem;
    }
    
    .menu-categories { 
        align-items: center;
        max-width: 320px;
        gap: 20px;
    }
    
    .menu-card {
        padding: 20px;
        gap: 12px;
        border-radius: 100px;
    }
    
    .menu-image-container {
        width: 90px;
        height: 90px;
    }
    
    .menu-category-title {
        font-size: 1.2rem;
    }
    
    .menu-description {
        font-size: 0.85rem;
    }
    
    .menu-footer {
        padding: 30px 20px 15px;
    }
    
    .social-icons {
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .footer-links {
        gap: 30px;
        margin-bottom: 15px;
    }
    
    .footer-link {
        font-size: 14px;
    }
    
    .footer-separator {
        width: 150px;
    }
    
    .copyright {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .menu-header {
        padding: 12px 15px;
    }
    
    .logo-img {
        /* Mantiene el tamaño natural */
    }
    
    .menu-main {
        padding: 90px 15px 30px;
        gap: 30px;
    }
    
    .menu-title {
        font-size: 2.8rem;
    }
    
    .menu-categories {
        max-width: 280px;
        gap: 18px;
    }
    
    .menu-card {
        padding: 18px;
        gap: 10px;
        border-radius: 100px;
    }
    
    .menu-image-container {
        width: 80px;
        height: 80px;
    }
    
    .menu-category-title {
        font-size: 1.1rem;
    }
    
    .menu-description {
        font-size: 0.8rem;
    }
    
    .menu-footer {
        padding: 25px 15px 12px;
    }
    
    .social-icons {
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .footer-link {
        font-size: 13px;
    }
    
    .footer-separator {
        width: 120px;
    }
    
    .copyright {
        font-size: 11px;
    }
    
    /* Mobile menu responsive */
    .mobile-menu {
        width: 280px;
    }
    
    .mobile-menu-header {
        padding: 15px;
    }
    
    .mobile-menu-logo span {
        font-size: 14px;
    }
    
    .mobile-menu-link {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .mobile-menu-link i {
        font-size: 16px;
    }
    
    .mobile-menu-footer {
        padding: 15px;
    }
    
    .mobile-social-icon {
        width: 35px;
        height: 35px;
    }
    
    .mobile-social-icon i {
        font-size: 14px;
    }
}
