/* Variables de Identidad */
:root {
    --verde-oscuro: #1B2D1B;
    --dorado: #B68F40;
    --blanco: #ffffff;
    --whatsapp: #25d366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--verde-oscuro);
    color: var(--blanco);
    line-height: 1.6;
}

/* Navbar */
header {
    background: rgba(27, 45, 27, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--dorado);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-text {
    color: var(--dorado);
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links a {
    color: var(--blanco);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--dorado);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
}

.main-logo {
    max-width: 300px;
    width: 80%;
    filter: drop-shadow(0 0 10px rgba(182, 143, 64, 0.3));
    animation: fadeIn 2s ease-in;
}

/* Sección Carta */
.menu-section {
    padding: 4rem 5%;
    text-align: center;
}

.section-title {
    color: var(--dorado);
    margin-bottom: 3rem;
    font-size: 2rem;
    text-transform: uppercase;
}

.menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-image {
    width: 100%;
    border-radius: 8px;
    border: 2px solid var(--dorado);
    transition: transform 0.3s;
}

.menu-image:hover {
    transform: scale(1.02);
}

/* Botón WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--whatsapp);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    z-index: 1000;
}

/* Footer */
footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid var(--dorado);
    margin-top: 3rem;
    color: var(--dorado);
    font-size: 0.8rem;
}

/* Responsive Menú Hamburguesa */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Se activa con JS */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--verde-oscuro);
        padding: 2rem;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 1rem 0;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
        background: none;
        border: none;
    }

    .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: var(--dorado);
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}