/* ============================= */
/* RESET GENERAL */
/* ============================= */

html, body {
    margin: 0 !important;
    padding: 0 !important;
    height: 100% !important;
}

/* ============================= */
/* FONDO PANTALLA COMPLETA */
/* ============================= */

body {
    background-image: url("https://centrokalma.com/img/welcome.jpg") !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    min-height: 100vh !important;
    font-family: 'Segoe UI', sans-serif !important;
}

/* ============================= */
/* CONTENEDOR PRINCIPAL */
/* (Formulario de reservas) */
/* ============================= */

.mr-page,
.mr-wrapper,
.mr-container,
.mr-content {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(6px) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    margin: 40px auto !important;
    max-width: 900px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
}

/* ============================= */
/* TÍTULOS */
/* ============================= */

h1, h2, h3 {
    color: #8c5a4a !important;
    text-align: center !important;
}

/* ============================= */
/* BOTONES */
/* ============================= */

button,
.mr-btn,
input[type="submit"] {
    background-color: #c79a6c !important;
    color: white !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 12px 24px !important;
    font-size: 16px !important;
    transition: 0.3s ease !important;
    cursor: pointer !important;
}

button:hover,
.mr-btn:hover,
input[type="submit"]:hover {
    background-color: #a87950 !important;
    transform: scale(1.05) !important;
}

/* ============================= */
/* CAMPOS INPUT */
/* ============================= */

input,
select,
textarea {
    border-radius: 12px !important;
    border: 1px solid #ddd !important;
    padding: 10px !important;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {
    .mr-page,
    .mr-wrapper,
    .mr-container,
    .mr-content {
        margin: 20px !important;
        padding: 20px !important;
    }
}