/* General */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4; /* Fondo gris claro */
    color: #3e3e3e;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Tipografía */
h1, h2, h3, p {
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-family: 'Merriweather', serif; /* Fuente con estilo clásico */
}

p {
    font-family: 'Roboto', sans-serif;
}

/* Header */
header {
    height: 400px;
    background: url('img/asado.jpg') center/cover no-repeat;
    position: relative;
    color: white;
    background-size: cover;
    border-bottom: 5px solid #8e5b3d; /* Línea marrón oscuro al final */
}
header .overlay {
    background: rgba(0, 0, 0, 0.6);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
header h1 {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #fff;
}
header p {
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 400;
    opacity: 0.85;
    color: #e67e22;
}
header button {
    padding: 18px 35px;
    font-size: 18px;
    background-color: #8e5b3d; /* Color madera */
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
header button:hover {
    background-color: #a76d4c;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Secciones */
.historia, .servicios, .galeria, .ubicacion, #reserva {
    max-width: 900px;
    margin: 30px auto;
    padding: 40px 30px;
    background-color: #fff; /* Fondo blanco */
    color: #3e3e3e;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    border-top: 4px solid #8e5b3d; /* Línea superior marrón */
}

/* Historia */
.historia h2, .servicios h2, .ubicacion h2 {
    font-size: 30px;
    color: #8e5b3d; /* Color madera */
    margin-bottom: 15px;
    font-weight: 600;
}

/* Servicios */
.servicios .card {
    background-color: #faf1e6; /* Fondo color claro */
    color: #3e3e3e;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 8px solid #8e5b3d; /* Borde madera oscuro */
}
.servicios .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.servicios .card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #8e5b3d;
    margin-bottom: 20px;
}
.servicios .card p {
    font-size: 16px;
    color: #6b6b6b;
    margin-bottom: 15px;
}
.servicios .card .precio {
    font-size: 24px;
    font-weight: 700;
    color: white;
    background-color: #8e5b3d;
    padding: 15px 25px;
    border-radius: 8px;
    margin-top: 15px;
    width: fit-content;
    margin: 0 auto;
}

/* Galería */
.galeria .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.galeria img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.galeria img:hover {
    transform: scale(1.05);
    filter: brightness(0.85);
}

/* Reserva */
.reserva-card {
    max-width: 480px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 35px;
    background-color: #faf1e6; /* Fondo claro */
    color: #3e3e3e;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-left: 8px solid #8e5b3d; /* Borde madera */
}

.reserva-card input {
    padding: 14px;
    width: 100%;
    border-radius: 8px;
    border: 2px solid #ccc;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.reserva-card input:focus {
    border-color: #8e5b3d; /* Borde color madera */
    outline: none;
}

.reserva-card button {
    padding: 16px 28px;
    font-size: 18px;
    background-color: #8e5b3d;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.reserva-card button:hover {
    background-color: #a76d4c;
}

/* Pasarela de pago */
#pantallaPago {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}
.pago-box {
    background: #fff; /* Fondo blanco */
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-left: 8px solid #8e5b3d; /* Borde madera */
}

.pago-box h2 {
    color: #8e5b3d; /* Color madera */
    font-size: 28px;
    margin-bottom: 25px;
}

.pago-box input {
    padding: 14px;
    margin: 10px 0;
    width: 100%;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

.pago-box input:focus {
    border-color: #8e5b3d;
    outline: none;
}

.pago-box button {
    padding: 16px 28px;
    font-size: 18px;
    background-color: #8e5b3d;
    color: white;
    border: none;
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pago-box button:hover {
    background-color: #a76d4c;
}

/* Loader */
#loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
}
.spinner {
    border: 5px solid #f3f3