:root {
    --primary-dark: #135e5c;
    --primary-light: #d3c9a7;
    --accent-light: #fdfbfc;
    --accent-dark: #00140f;
    --gradient-primary: linear-gradient(135deg, #135e5c, #00140f);
    --gradient-secondary: linear-gradient(135deg, #d3c9a7, #fdfbfc);
    --shadow-primary: 0 10px 30px rgba(19, 94, 92, 0.3);
    --shadow-secondary: 0 5px 15px rgba(0, 20, 15, 0.2);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--accent-dark);
    color: var(--accent-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 20, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    height: auto;
    min-height: 80px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h2 {
    color: #8B8A75;
    font-family: 'Molesk', sans-serif;
    font-size: 1.8rem;
    font-weight: normal;
    margin-bottom: -5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-logo span {
    color: #9EA1A2;
    font-family: 'Ginger', cursive;
    font-size: 1rem;
    font-weight: 100;
    font-style: normal;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-stretch: ultra-condensed;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-light);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-dark);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-light);
    margin: 3px 0;
    transition: 0.3s;
    display: block;
}

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

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

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    padding: 120px 0 80px;
}

.hero-content {
    flex: 1;
    padding: 0 20px;
    max-width: 600px;
    margin: 0 auto;
}

.hero-content h1 {
    font-family: 'Molesk', sans-serif;
    font-size: 4rem;
    font-weight: normal;
    color: #8B8A75;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.hero-title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.hero-separator {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
    margin: 10px 0;
    position: relative;
}

.hero-separator::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--primary-light);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(211, 201, 167, 0.5);
}

.hero-subtitle {
    font-family: 'Ginger', cursive;
    font-size: 1.8rem;
    color: #9EA1A2;
    margin: 0;
    font-weight: 100;
    font-style: normal;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-stretch: ultra-condensed;
    letter-spacing: 0.5px;
    text-align: center;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--accent-light);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 75vh;
    width: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-primary);
    transition: transform 0.3s ease;
    object-fit: contain;
}

.hero-image img:hover {
    transform: scale(1.05);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: var(--accent-dark);
    box-shadow: var(--shadow-secondary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(211, 201, 167, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-light);
    border: 2px solid var(--primary-light);
}

.btn-secondary:hover {
    background: var(--primary-light);
    color: var(--accent-dark);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: var(--primary-dark);
    color: var(--accent-light);
}

.menu-section, .galeria-section, .platos-destacados-section, .eventos-section, .contacto-section {
    padding: 100px 0;
}

.menu-section {
    background: var(--accent-dark);
}

.galeria-section {
    background: linear-gradient(135deg, rgba(19, 94, 92, 0.05), rgba(0, 20, 15, 0.95));
}

.platos-destacados-section {
    background: var(--accent-dark);
    position: relative;
}

.platos-destacados-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(19, 94, 92, 0.03) 50%, transparent 70%);
    pointer-events: none;
}

.eventos-section {
    background: linear-gradient(135deg, rgba(19, 94, 92, 0.1), rgba(0, 20, 15, 0.9));
}

.contacto-section {
    background: var(--accent-dark);
}

.section-title {
    font-family: 'Molesk', sans-serif;
    font-size: 3rem;
    font-weight: normal;
    text-align: center;
    color: #8B8A75;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    font-family: 'Ginger', cursive;
    font-size: 1.3rem;
    font-weight: 100;
    text-align: center;
    color: #9EA1A2;
    margin-bottom: 60px;
    opacity: 0.9;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-stretch: ultra-condensed;
    letter-spacing: 0.3px;
}

.menu-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.menu-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-primary);
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(19, 94, 92, 0.4);
}

.menu-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 2px solid var(--primary-light);
    color: var(--primary-light);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.tab-btn:hover {
    background: rgba(211, 201, 167, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 201, 167, 0.2);
}

.tab-btn.active {
    background: var(--gradient-secondary);
    color: var(--accent-dark);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-secondary);
}

.gallery-content {
    position: relative;
}

.gallery-tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.gallery-tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.gallery-subtitle {
    font-family: 'Ginger', cursive;
    font-size: 1.5rem;
    color: #9EA1A2;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 100;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-stretch: ultra-condensed;
    letter-spacing: 0.5px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-primary);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(19, 94, 92, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 20, 15, 0.9), rgba(0, 20, 15, 0.7), transparent);
    color: var(--accent-light);
    padding: 25px 20px;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    font-family: 'Ginger', cursive;
    font-weight: 100;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-stretch: ultra-condensed;
    letter-spacing: 0.3px;
}

.platos-destacados-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 50px;
    position: relative;
}

.plato-destacado {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: rgba(19, 94, 92, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(211, 201, 167, 0.1);
    border-radius: 25px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
    min-height: 250px;
}

.plato-destacado::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.plato-destacado:hover::before {
    transform: scaleX(1);
}

.plato-destacado:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(19, 94, 92, 0.3);
    border-color: var(--primary-light);
    background: rgba(19, 94, 92, 0.1);
}

.plato-destacado:nth-child(even) {
    flex-direction: row-reverse;
}

.plato-destacado img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 15px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 10px 25px rgba(19, 94, 92, 0.3));
    flex-shrink: 0;
}

.plato-destacado:hover img {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 15px 35px rgba(19, 94, 92, 0.4));
}

.plato-destacado > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    word-wrap: break-word;
}

.plato-destacado h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.plato-destacado p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    font-family: 'Ginger', cursive;
    font-weight: 100;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-stretch: ultra-condensed;
    letter-spacing: 0.3px;
}

@media (max-width: 1024px) {
    .platos-destacados-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .plato-destacado:nth-child(even) {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .plato-destacado {
        flex-direction: column !important;
        text-align: center;
        gap: 20px;
        padding: 25px;
    }
    
    .plato-destacado img {
        width: 150px;
        height: 150px;
    }
    
    .plato-destacado h3 {
        font-size: 1.5rem;
    }
}

.eventos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

@media (max-width: 1024px) {
    .eventos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .eventos-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-tabs {
        gap: 15px;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

.evento-card {
    background: rgba(19, 94, 92, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(211, 201, 167, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
}

.evento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

.evento-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-primary);
    border-color: var(--primary-light);
}

.evento-icon {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.evento-card h3 {
    font-size: 1.5rem;
    color: var(--primary-light);
    margin-bottom: 15px;
    font-weight: 600;
}

.evento-card p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.evento-card ul {
    list-style: none;
    text-align: left;
}

.evento-card li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.evento-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-dark);
    font-weight: bold;
}

.evento-cta {
    text-align: center;
    background: rgba(211, 201, 167, 0.1);
    padding: 50px 30px;
    border-radius: 20px;
    border: 1px solid rgba(211, 201, 167, 0.2);
}

.evento-cta h3 {
    font-family: 'Molesk', sans-serif;
    font-size: 2rem;
    font-weight: normal;
    color: #8B8A75;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.evento-cta p {
    font-family: 'Ginger', cursive;
    font-size: 1.1rem;
    font-weight: 100;
    margin-bottom: 30px;
    color: #9EA1A2;
    opacity: 0.9;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-stretch: ultra-condensed;
    letter-spacing: 0.3px;
}

.contacto-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (max-width: 768px) {
    .contacto-grid {
        grid-template-columns: 1fr;
    }
}

.contacto-info, .contacto-redes {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(19, 94, 92, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(211, 201, 167, 0.2);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 350px;
    overflow: hidden;
}

.info-card p {
    margin-bottom: 8px;
    line-height: 1.4;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-secondary);
    border-color: var(--primary-light);
}

.info-card h3 {
    color: var(--primary-light);
    margin-bottom: 20px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card i {
    color: var(--primary-dark);
}

.horarios {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
    flex: 1;
    overflow-y: auto;
}

.horario-item {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px solid rgba(211, 201, 167, 0.2);
    font-size: 0.85rem;
    line-height: 1.2;
    min-height: 24px;
}

.horario-item:last-child {
    border-bottom: none;
}

.horario-item span:first-child {
    font-weight: 500;
    color: var(--primary-light);
}

.horario-item span:last-child {
    color: var(--accent-light);
    opacity: 0.9;
}

.redes-sociales {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
    margin-bottom: 20px;
    padding: 10px 10px 20px 10px;
}

.red-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 15px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 110px;
    justify-content: center;
}

.red-social::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.red-social i {
    font-size: 2.2rem;
    transition: all 0.3s ease;
}

.red-social span {
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp {
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.05));
}

.whatsapp::before {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(37, 211, 102, 0.1));
}

.whatsapp:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3);
    border-color: #25D366;
}

.whatsapp:hover::before {
    opacity: 1;
}

.facebook {
    color: #1877F2;
    border-color: rgba(24, 119, 242, 0.4);
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.1), rgba(24, 119, 242, 0.05));
}

.facebook::before {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.2), rgba(24, 119, 242, 0.1));
}

.facebook:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(24, 119, 242, 0.3);
    border-color: #1877F2;
}

.facebook:hover::before {
    opacity: 1;
}

.instagram {
    color: #E4405F;
    border-color: rgba(228, 64, 95, 0.4);
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.1), rgba(228, 64, 95, 0.05));
}

.instagram::before {
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.2), rgba(228, 64, 95, 0.1));
}

.instagram:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(228, 64, 95, 0.3);
    border-color: #E4405F;
}

.instagram:hover::before {
    opacity: 1;
}

.tiktok {
    color: var(--accent-light);
    border-color: rgba(211, 201, 167, 0.4);
    background: linear-gradient(135deg, rgba(211, 201, 167, 0.1), rgba(211, 201, 167, 0.05));
}

.tiktok::before {
    background: linear-gradient(135deg, rgba(211, 201, 167, 0.2), rgba(211, 201, 167, 0.1));
}

.tiktok:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(211, 201, 167, 0.3);
    border-color: var(--primary-light);
    color: var(--primary-light);
}

.tiktok:hover::before {
    opacity: 1;
}

.footer {
    background: var(--gradient-primary);
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo h3 {
    font-family: 'Molesk', sans-serif;
    color: #8B8A75;
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: -5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-logo p {
    font-family: 'Ginger', cursive;
    color: #9EA1A2;
    font-size: 1rem;
    font-weight: 100;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-stretch: ultra-condensed;
    letter-spacing: 0.5px;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    font-family: 'Ginger', cursive;
    color: #9EA1A2;
    opacity: 0.8;
    font-size: 0.9rem;
    font-weight: 100;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-stretch: ultra-condensed;
    letter-spacing: 0.3px;
}

.email-link {
    color: var(--primary-light);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.email-link:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
    transform: translateY(-1px);
}

@media (min-width: 1200px) {
    .hero-image img {
        max-width: 550px;
        max-height: 65vh;
    }
}

@media (min-width: 1440px) {
    .hero-image img {
        max-width: 650px;
        max-height: 60vh;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100%;
        flex-direction: column;
        background-color: rgba(0, 20, 15, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(211, 201, 167, 0.2);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        left: 0;
        top: 100%;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 0 60px;
    }
    
    .hero-content {
        margin-bottom: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-separator {
        width: 60px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .redes-sociales {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-separator {
        width: 50px;
    }
    
    .menu-gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-tabs {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .tab-btn {
        width: 200px;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .eventos-grid {
        grid-template-columns: 1fr;
    }
    
    .contacto-grid {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .evento-card {
        padding: 30px 20px;
    }
}

html {
    scroll-behavior: smooth;
}

.nav-menu li {
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.nav-menu li:nth-child(1) { animation-delay: 0.1s; }
.nav-menu li:nth-child(2) { animation-delay: 0.2s; }
.nav-menu li:nth-child(3) { animation-delay: 0.3s; }
.nav-menu li:nth-child(4) { animation-delay: 0.4s; }
.nav-menu li:nth-child(5) { animation-delay: 0.5s; }

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

.menu-item, .gallery-item {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease forwards;
}

.plato-destacado, .evento-card, .info-card {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.4s ease forwards;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}