/* ----index.html/general---- */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}
body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #333;
}
header {
    background-color: #f5ebe0;
    padding: 1rem 2rem; 
    text-align: center;
}
nav {
    margin: 0 auto;
    max-width: 1000px;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}
nav ul li a {
    padding: 0.5rem 1rem;
    border: 2px solid #918a8c;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    background-color: #fdfdfd;
}
nav ul li a:hover {
    background-color: #918a8c;
    color: #fff;
}
.contacto {
    text-align: center;
    padding: 2rem 1rem;
}
.botonreserva {
    background-color: #6b4e3d;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
}
.carrusel {
    text-align: center;
    margin: 2rem auto;
}
.carrusel img {
    width: 400px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.controles {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}
.controles button {
    padding: 0.6rem 1.2rem;
    background-color: #6b4e3d;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}
.controles button:hover {
    background-color: #553e31;
}

/* ----Servicios.html---- */
.servicios {
    padding: 2rem;
    text-align: center;
}
main { flex: 1; }
footer {
    background-color: #f5ebe0;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}
.servicios h2 {
    color: #553e31;
    margin-bottom: 1rem;
}
.servicios table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.servicios th, .servicios td {
    border: 1px solid #ddd;
    padding: 1rem;
    text-align: center;
}
.servicios th {
    background-color: #f5ebe0;
    color: #333;
}
.servicios img {
    width: 120px;
    border-radius: 5px;
}

/* ----galeria.html---- */
.galeria {
    padding: 2rem;
    text-align: center;
}
.galeria h2 {
    color: #553e31;
    margin-bottom: 1rem;
}
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 4%;
}
.galeria-grid img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* ----sobre.html---- */
.sobre {
    padding: 2rem;
    text-align: center;
}
.sobre h2 {
    color: #553e31;
    margin-bottom: 1rem;
}
.sobre p {
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.6;
}
.equipo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.equipo article {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem;
}
.equipo img {
    max-width: 100%;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

/* ----contacto.html---- */
.error { color: red; font-weight: bold; }
.exito { color: green; font-weight: bold; }
form {
    max-width: 500px;
    margin: 0 auto;
    padding: 1rem;
    background-color: #cecdcd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
form label { text-align: left; }
form input, form select, form textarea {
    padding: 0.5rem;
    border: 1px solid #000;
    border-radius: 5px;
}
form button {
    align-self: center;
    padding: 0.6rem 1.2rem;
    background-color: #6b4e3d;
    color: #fff;
    border: none;
    border-radius: 6px;
}
form button:hover { background-color: #553e31; }

/* ----Diseño para movil y resoluciones bajas---- */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        gap: 0.5rem;
    }
    nav ul li {
        width: 100%;
        text-align: center;
    }
    nav ul li a {
        display: block;
        margin: 0.3rem auto;
        width: 80%;
    }
    .galeria-grid {
        grid-template-columns: 1fr;
    }
    .equipo {
        grid-template-columns: 1fr;
    }
    form {
        width: 90%;
    }
    .carrusel img {
        width: 100%;
    }
    .servicios table {
        font-size: 0.9rem;
    }
    .botonreserva {
        display: inline-block;
        margin-top: 1rem;
    }
    header h1 {
        font-size: 1.8rem;
    }
    .contacto h2,
    .servicios h2,
    .galeria h2,
    .sobre h2 {
        font-size: 1.5rem;
    }
    .controles {
        flex-direction: column;
        align-items: center;
    }

    .controles button {
        width: 80%;
        margin: 0.3rem 0;
    }
}
