/* ==========================================================================
   REDISEÑO MINIMALISTA - OCTORATE (PEPE'S HOUSE STYLE)
   ========================================================================== */

/* 1. FUENTES Y GENERALES */
body, .ui-widget, .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
    color: #333 !important;
    -webkit-font-smoothing: antialiased;
}

/* Fondo general más limpio */
body, #main-wrapper {
    background-color: #f9f9f9 !important;
}

/* Títulos más limpios y modernos */
h1, h2, h3, .room-title {
    font-weight: 600 !important;
    color: #1a1a1a !important;
    letter-spacing: -0.5px;
}

/* ==========================================================================
   2. TARJETAS DE HABITACIONES (ROOM CARDS)
   ========================================================================== */

/* Contenedor de cada habitación: Efecto tarjeta flotante */
.room-item, .room-container, .search-result-item { 
    background: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important; /* Sombra suave */
    margin-bottom: 30px !important;
    padding: 25px !important;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.room-item:hover {
    transform: translateY(-2px); /* Pequeña elevación al pasar el mouse */
}

/* Imágenes de las habitaciones */
.room-image img, .gallery-image {
    border-radius: 8px !important;
    border: none !important;
}

/* Descripción de la habitación */
.room-description {
    color: #666 !important;
    line-height: 1.6 !important;
    font-size: 14px !important;
}

/* Iconos de servicios (amenities) más sutiles */
.amenity-icon, .service-icon {
    opacity: 0.7;
    filter: grayscale(100%); /* Iconos en gris para menos ruido visual */
}

/* ==========================================================================
   3. PRECIOS Y BOTONES
   ========================================================================== */

/* Precio destacado y limpio */
.price-value, .total-price, .room-price {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #2c3e50 !important; /* Azul oscuro elegante */
}

.currency-symbol {
    font-size: 16px !important;
    vertical-align: super;
    font-weight: 500;
}

/* BOTONES PRINCIPALES (Reservar / Buscar) */
.btn, .button, input[type="submit"], button.ui-button, .btn-book {
    background-image: none !important; /* Quitar gradientes antiguos */
    background-color: #1a1a1a !important; /* Negro o Gris muy oscuro para contraste máximo */
    color: #ffffff !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 12px 25px !important;
    text-transform: uppercase;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 1px;
    box-shadow: none !important;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover, .button:hover, button.ui-button:hover {
    background-color: #333333 !important; /* Un poco más claro al hover */
    opacity: 1;
}

/* BOTONES SECUNDARIOS (Detalles, Info) */
.btn-secondary, .btn-details {
    background-color: transparent !important;
    color: #1a1a1a !important;
    border: 1px solid #e0e0e0 !important;
}

/* ==========================================================================
   4. BARRA DE BÚSQUEDA (HEADER)
   ========================================================================== */

/* Contenedor del buscador */
#search-widget, .search-container {
    background: #ffffff !important;
    border-bottom: 1px solid #eeeeee !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03) !important;
    padding: 20px 0 !important;
}

/* Inputs del formulario (fechas, huéspedes) */
input[type="text"], input[type="date"], select, .ui-inputfield {
    background: #f4f4f4 !important;
    border: 1px solid transparent !important;
    border-radius: 6px !important;
    padding: 10px 15px !important;
    font-size: 14px !important;
    color: #333 !important;
    box-shadow: none !important;
}

input[type="text"]:focus, select:focus {
    background: #ffffff !important;
    border-color: #ddd !important;
    outline: none;
}

/* Ocultar elementos innecesarios o decorativos viejos */
.ui-widget-header {
    background: none !important;
    border: none !important;
    color: #333 !important;
}

/* Ajuste de enlaces */
a {
    color: #1a1a1a !important;
    text-decoration: none !important;
    transition: color 0.2s;
}
a:hover {
    color: #555 !important;
    text-decoration: underline !important;
}