* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
}

/* --- HEADER --- */
header {
    background-color: #512e04;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 2%;
    flex-basis: 13vh;
    gap: 4rem;
}

.logo p {
    font-family: 'Exo 2', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #ffb400;
    line-height: 1.2;
    text-transform: uppercase;
}

.menu {
    list-style: none;
    display: flex;
    gap: 3rem;
}

.menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    transition: color 0.3s;
}

.menu a:hover {
    color: #ffb400;
}

/* --- MAIN --- */
main {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 5% 0 7%;
    overflow: hidden;
}

.contenido {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.contenido h1 {
    font-size: 3.8rem;
    font-weight: 800;
    color: #512e04;
    line-height: 1.05;
    text-transform: uppercase;
}

.contenido h1 .destacado {
    color: #ffb400;
}

.contenido p {
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
    max-width: 480px;
}

.botones {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.5rem;
}

.btn-reservar {
    background-color: #512e04;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 0.75rem 2rem;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: background-color 0.3s;
}

.btn-reservar:hover {
    background-color: #ffb400;
    cursor: pointer;
}

.btn-llevar {
    background-color: transparent;
    color: #512e04;
    border: 2.5px solid #512e04;
    border-radius: 30px;
    padding: 0.75rem 2rem;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: background-color 0.3s, color 0.3s;
}

.btn-llevar:hover {
    background-color: #8f602c;
    color: #ffffff;
    border-color: #8f602c;
    cursor: pointer;
}

/* --- IMAGEN --- */
.imagen {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 38%;
    z-index: 1;
    pointer-events: none;
}

.imagen img {
    width: 100%;
    display: block;
}

/* --- FOOTER --- */
footer {
    padding: 1rem 7%;
    font-size: 0.85rem;
    color: #555555;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}