/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a4d72;
    --secondary-color: #ffffff;
    --accent-color: #c9a96e;
    --ocean-blue: #2980b9;
    --deep-blue: #1e3a8a;
    --sand-color: #f8fafc;
    --text-dark: #1a202c;
    --text-light: #ffffff;
    --gold-accent: #d4af37;
    --navy-blue: #0f1419;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 42, 64, 0.1);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.3);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15) !important;
}

.header.scrolled .logo {
    color: var(--primary-color) !important;
    text-shadow: none !important;
}

.header.scrolled .logo i {
    color: var(--accent-color) !important;
}

.header.scrolled .nav-menu a {
    color: var(--primary-color) !important;
    text-shadow: none !important;
}

.header.scrolled .nav-menu a:hover {
    color: var(--accent-color) !important;
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Crimson Text', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-1px);
}

.logo i {
    font-size: 2rem;
    color: var(--accent-color);
    filter: drop-shadow(0 2px 8px rgba(201, 169, 110, 0.4));
}

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

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: var(--accent-color);
    transform: translateY(-1px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--accent-color), #e0c28f);
    box-shadow: 0 0 10px rgba(201, 169, 110, 0.5);
    transition: var(--transition);
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section - Completamente Nuevo */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 77, 114, 0.8) 0%, rgba(41, 128, 185, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 169, 110, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 110, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-badge i {
    color: var(--accent-color);
}

.hero h1 {
    font-family: 'Crimson Text', serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.highlight:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.highlight i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.highlight span {
    font-weight: 500;
    font-size: 0.9rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #e6c584);
    color: var(--navy-blue);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 169, 110, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}



/* Experience Section - Nuevo */
.experience {
    padding: 120px 0;
    background: var(--sand-color);
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.experience-text h2 {
    font-family: 'Crimson Text', serif;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.7;
}

.experience-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--ocean-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--text-light);
    font-size: 1.5rem;
}

.feature-content h4 {
    font-family: 'Crimson Text', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.6;
}

.experience-images {
    position: relative;
}

.image-stack {
    position: relative;
}

.image-front, .image-back {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.image-back {
    position: absolute;
    top: -2rem;
    right: -2rem;
    width: 80%;
    height: 250px;
    z-index: 1;
}

.image-front {
    position: relative;
    z-index: 2;
}

/* Menu Section - Mejorado */
.menu-section {
    padding: 120px 0;
    background: var(--secondary-color);
}

.menu-section h2 {
    font-family: 'Crimson Text', serif;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(26, 32, 44, 0.7);
    margin-bottom: 4rem;
    font-weight: 300;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 15px 30px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 77, 114, 0.3);
}

/* Dish Cards - Mejorados */
.menu-grid {
    position: relative;
}

.dish-card {
    background: var(--secondary-color);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    margin-bottom: 2rem;
    border: 1px solid rgba(26, 77, 114, 0.1);
}

.dish-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.dish-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.dish-card:hover .dish-image img {
    transform: scale(1.1);
}

.dish-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 77, 114, 0.8), rgba(41, 128, 185, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.dish-card:hover .dish-overlay {
    opacity: 1;
}

.dish-overlay i {
    color: var(--text-light);
    font-size: 2.5rem;
    transform: scale(0.8);
    transition: var(--transition);
}

.dish-card:hover .dish-overlay i {
    transform: scale(1);
}

.dish-content {
    padding: 2.5rem;
}

.dish-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.dish-header h3 {
    font-family: 'Crimson Text', serif;
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 600;
    flex: 1;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-left: 1rem;
}

.dish-content p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.dish-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.tag {
    background: linear-gradient(135deg, var(--primary-color), var(--ocean-blue));
    color: var(--text-light);
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-category {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    opacity: 1;
    transform: translateY(0);
    transition: var(--transition);
}

.menu-category.hidden {
    display: none;
}

/* Chef Section - Mejorado */
.chef-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--sand-color) 0%, #f1f5f9 100%);
}

.chef-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.chef-image {
    position: relative;
}

.chef-image img {
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.chef-info h2 {
    font-family: 'Crimson Text', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.chef-info h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-weight: 400;
}

.chef-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    opacity: 0.9;
}

.chef-achievements {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--secondary-color);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.achievement i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.achievement span {
    font-weight: 600;
    color: var(--primary-color);
}

/* Reservations Section - Completamente Único */
.reservations {
    position: relative;
}

.reservation-hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.reservation-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reservation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.8) 0%, rgba(26, 77, 114, 0.7) 100%);
    display: flex;
    align-items: center;
}

.reservation-content {
    text-align: center;
    color: var(--text-light);
}

.reservation-content h2 {
    font-family: 'Crimson Text', serif;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.reservation-content > p {
    font-size: 1.3rem;
    margin-bottom: 4rem;
    opacity: 0.95;
}

.reservation-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.quick-contact h3,
.reservation-info h3 {
    font-family: 'Crimson Text', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.contact-method i {
    font-size: 2rem;
    color: var(--accent-color);
    width: 50px;
    text-align: center;
}

.method-title {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.method-detail {
    display: block;
    opacity: 0.9;
    font-size: 0.95rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-row {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-row i {
    font-size: 1.5rem;
    color: var(--accent-color);
    width: 30px;
    text-align: center;
    margin-top: 0.2rem;
}

.info-row strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.info-row p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--primary-color);
    color: var(--text-light);
}

.contact h2 {
    font-family: 'Crimson Text', serif;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 2rem;
    color: var(--accent-color);
    width: 50px;
    text-align: center;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.social-media {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.social-media h3 {
    font-family: 'Crimson Text', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #e6c584);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-blue);
    font-size: 1.5rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.4);
}

/* Footer */
.footer {
    background: var(--navy-blue);
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(26, 77, 114, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    

    
    .experience-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .image-stack .image-back {
        display: none;
    }
    
    .menu-category {
        grid-template-columns: 1fr;
    }
    
    .chef-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .chef-achievements {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .reservation-content h2 {
        font-size: 2.5rem;
    }
    
    .reservation-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .highlight {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .dish-content {
        padding: 2rem;
    }
    
    .dish-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .price {
        margin-left: 0;
    }
    
    .experience-text h2 {
        font-size: 2rem;
    }
    
    .reservation-content h2 {
        font-size: 2rem;
    }
}