* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #fffdfa;
    color: #40240c;
    line-height: 1.6;
}

header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(181, 115, 7, 0.05);
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5vw;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 2rem;
    color: #bf7407;
    font-weight: bold;
    gap: 0.7rem;
}
.logo img {
    width: 45px;
    height: 45px;
    background: #fff6e1;
    border-radius: 50%;
    padding: 0.4rem;
    box-shadow: 0 2px 8px rgba(181, 115, 7, 0.10);
}

nav a {
    color: #704314;
    margin-left: 2vw;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
    position: relative;
}
nav a:hover {
    color: #bf7407;
}

.hero {
    background: linear-gradient(rgba(181,115,7,0.5),rgba(255,241,206,0.7)), url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    color: #fff;
    min-height: 52vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-text {
    background: rgba(0,0,0,0.32);
    padding: 2.3rem 4vw;
    border-radius: 18px;
}
.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.7rem;
    letter-spacing: 1px;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.3rem;
}
.btn {
    background: #bf7407;
    color: #fff;
    padding: 0.8rem 2.3rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(181,115,7,0.12);
    transition: background 0.2s;
}
.btn:hover {
    background: #a75f00;
}

.menu {
    background: #fff6e1;
    padding: 4rem 7vw 2.5rem 7vw;
    text-align: center;
}
.menu h2 {
    color: #bf7407;
    margin-bottom: 2rem;
    font-size: 2rem;
}
.menu-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.menu-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(181, 115, 7, 0.06);
    padding: 1.1rem;
    width: 230px;
    transition: transform 0.15s, box-shadow 0.15s;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.menu-card:hover {
    transform: translateY(-6px) scale(1.035);
    box-shadow: 0 6px 22px rgba(181, 115, 7, 0.14);
}
.menu-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 2.5px solid #fff6e1;
}
.menu-card h3 {
    margin-bottom: 0.7rem;
    color: #a75f00;
    font-size: 1.15rem;
}
.menu-card p {
    font-size: 1rem;
    margin-bottom: 0.7rem;
}
.menu-card span {
    font-size: 1.1rem;
    font-weight: bold;
    color: #bf7407;
    background: #fff6e1;
    border-radius: 10px;
    padding: 0.2rem 0.8rem;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    box-shadow: 0 1px 4px rgba(181,115,7,0.08);
}
.menu-nota {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: #bb9c56;
}

/* Galería */
.galeria {
    padding: 4rem 7vw 3rem 7vw;
    background: #fffdfa;
    text-align: center;
}
.galeria h2 {
    color: #bf7407;
    margin-bottom: 2rem;
    font-size: 2rem;
}
.galeria-fotos {
    display: flex;
    gap: 1.3rem;
    justify-content: center;
    flex-wrap: wrap;
}
.galeria-fotos img {
    width: 195px;
    height: 130px;
    object-fit: cover;
    border-radius: 13px;
    box-shadow: 0 2px 9px rgba(181, 115, 7, 0.10);
    border: 2px solid #fff6e1;
    transition: transform 0.11s;
}
.galeria-fotos img:hover {
    transform: scale(1.06);
}

/* Nosotros */
.nosotros {
    background: #fff;
    padding: 3.2rem 7vw;
    text-align: center;
}
.nosotros h2 {
    color: #bf7407;
    margin-bottom: 1.3rem;
    font-size: 2rem;
}

/* Contacto */
.contacto {
    padding: 4rem 7vw 3rem 7vw;
    background: #fff6e1;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    align-items: flex-start;
}
.contacto h2 {
    color: #bf7407;
    margin-bottom: 1rem;
    width: 100%;
    text-align: center;
}
.contacto form {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(181, 115, 7, 0.08);
    display: flex;
    flex-direction: column;
    padding: 2rem 2vw;
    min-width: 250px;
    max-width: 350px;
    gap: 1rem;
    flex: 1;
}
.contacto form input,
.contacto form textarea {
    padding: 0.7rem;
    border: 1px solid #ffe4ae;
    border-radius: 6px;
    font-size: 1rem;
    resize: none;
}
.contacto form button {
    background: #bf7407;
    color: #fff;
    border: none;
    padding: 0.8rem 0;
    border-radius: 9px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.contacto form button:hover {
    background: #a75f00;
}
.contacto-info {
    flex: 1;
    min-width: 220px;
    font-size: 1rem;
    color: #704314;
    padding: 1.1rem 1.5rem;
}
.contacto-info p {
    margin-bottom: 0.7rem;
}
.contacto-info a {
    color: #bf7407;
    text-decoration: underline;
}

/* Footer */
footer {
    background: #bf7407;
    color: #fffdfa;
    text-align: center;
    padding: 1rem;
    letter-spacing: 1px;
    font-size: 1rem;
}

/* Responsivo */
@media (max-width: 950px) {
    .menu-lista, .galeria-fotos {
        flex-direction: column;
        align-items: center;
    }
    .contacto {
        flex-direction: column;
        align-items: stretch;
    }
    header {
        flex-direction: column;
        padding: 1rem 3vw;
    }
    .logo {
        margin-bottom: 0.4rem;
    }
}
.mapa iframe {
    width: 100%;
    min-height: 200px;
    border-radius: 12px;
    border: 0;
    box-shadow: 0 2px 12px rgba(181,115,7,0.07);
    margin-top: 0.6rem;
}
