/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo h1 {
    color: #e67e22;
    font-size: 2em;
    font-weight: bold;
    margin: 0;
}

.logo span {
    color: #8B4513;
    font-size: 0.9em;
    font-style: italic;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.language-selector select {
    background: white;
    border: 2px solid #e67e22;
    border-radius: 5px;
    padding: 8px 12px;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-selector select:hover {
    background: #e67e22;
    color: white;
}

.language-selector select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #e67e22;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e67e22;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(139, 69, 19, 0.3)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f4f4f4"/><circle cx="50" cy="50" r="30" fill="%23e67e22" opacity="0.1"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #e67e22;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.cta-button:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

/* Carta Section */
.carta {
    padding: 100px 0;
    background: white;
}

.carta h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #333;
}

.menu-category {
    margin-bottom: 4rem;
}

.menu-category h3 {
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.menu-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #e67e22;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: #fafafa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #e67e22;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.menu-item h4 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.menu-item p {
    color: #666;
    margin-bottom: 1rem;
}

.menu-description {
    list-style: none;
    margin-bottom: 1rem;
    padding: 0;
}

.menu-description li {
    color: #666;
    margin-bottom: 0.3rem;
    position: relative;
    padding-left: 1rem;
}

.menu-description li::before {
    content: '•';
    color: #e67e22;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.featured {
    margin-bottom: 4rem;
}

.featured h3 {
    color: #e67e22;
    font-size: 2.2rem;
}

.featured-item {
    background: linear-gradient(135deg, #fff 0%, #fef9f5 100%);
    border: 2px solid #e67e22;
    border-left: 6px solid #e67e22;
    box-shadow: 0 5px 20px rgba(230, 126, 34, 0.1);
}

.featured-item:hover {
    box-shadow: 0 15px 40px rgba(230, 126, 34, 0.2);
}

.price {
    color: #e67e22;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Sobre Nosotros */
.nosotros {
    padding: 100px 0;
    background: #f8f8f8;
}

.nosotros h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #333;
    text-align: center;
}

.nosotros-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.nosotros p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.valores {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.valor {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.valor:hover {
    transform: translateY(-5px);
}

.valor h4 {
    color: #e67e22;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.valor p {
    color: #666;
    margin: 0;
}

/* Ubicación */
.ubicacion {
    padding: 100px 0;
    background: white;
}

.ubicacion h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #333;
    text-align: center;
}

.ubicacion-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.ubicacion-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.direccion, .horarios {
    background: #fafafa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #e67e22;
}

.direccion h3, .horarios h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.direccion p, .horarios p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.mapa-placeholder {
    background: #f0f0f0;
    height: 300px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.2rem;
    border: 2px dashed #ddd;
}

/* Contacto */
.contacto {
    padding: 100px 0;
    background: #f8f8f8;
}

.contacto h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #333;
    text-align: center;
}

.contacto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contacto-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contacto-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contacto-item p {
    color: #666;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #e67e22;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #d35400;
}

.contacto-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contacto-form h3 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.contacto-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contacto-form input,
.contacto-form textarea {
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 5px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contacto-form input:focus,
.contacto-form textarea:focus {
    outline: none;
    border-color: #e67e22;
}

.contacto-form button {
    background: #e67e22;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contacto-form button:hover {
    background: #d35400;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-right {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .carta h2,
    .nosotros h2,
    .ubicacion h2,
    .contacto h2 {
        font-size: 2.5rem;
    }
    
    .ubicacion-content,
    .contacto-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .valores {
        grid-template-columns: 1fr;
    }
}