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

/* --- BODY --- */
body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Open Sans', sans-serif;
    background-color: var(--blanco);
    overflow: hidden;
}

/* --- ENCABEZADO --- */
header {
    background-color: #512e04;
    display: flex;
    align-items: center;
    padding: 0 1%;
    height: 80px;
    flex-shrink: 0;
}

.logo {
    display: flex;
    flex-direction: column;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #ffb400;
    line-height: 1.2;
    text-transform: uppercase;
    margin-right: 4rem;
    min-width: 90px;
}

nav {
    flex: 1;
}

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

.menu a {
    text-decoration: none;
    color: #ffffff;
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.menu a:hover {
    color: #ffb400;
}

/* --- PRINCIPAL --- */
main {
    flex: 1;
    display: flex;
    align-items: center;
    overflow: visible;
    position: relative;
}

/* --- CONTENIDO TEXTO --- */
.contenido {
    flex-basis: 55%;
    padding: 0 5% 0 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
}

.contenido h1 {
    font-family: 'Exo 2', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #512e04;
    line-height: 1.1;
    text-transform: uppercase;
}

.contenido h1 .destacado {
    color: var(--amarillo);
    display: block;
}

.contenido p {
    color: #2a1a00;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 480px;
}

/* --- BOTONES --- */
.botones {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.btn-reservar,
.btn-llevar {
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.btn-reservar {
    background-color: #512e04;
    color: #ffffff;
    border: 2px solid #512e04;
}

.btn-reservar:hover {
    background-color: #ffb400;
    border-color: #ffb400;
    color: #512e04;
}

.btn-llevar {
    background-color: transparent;
    color: #512e04;
    border: 2px solid #512e04;
}

.btn-llevar:hover {
    background-color: #512e04;
    color: #ffffff;
}

/* --- IMAGEN --- */
.imagen {
    flex-basis: 45%;
}

.imagen img {
    position: fixed;
    right: 0;
    top: 0;
    width: 45%;
    height: 100vh;
    object-fit: cover;
    
    object-position: bottom center;
}

/* --- PIE DE PÁGINA --- */
footer {
    padding: 1rem 2%;
    flex-shrink: 0;
}

footer p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    color: #8f602c;
}
