/*
Theme Name: Casas Minimal
Theme URI: https://hogar-regio.com
Author: admin
Author URI: https://hogar-regio.com
Description: Tema minimalista para portal de bienes raíces. Separación clara entre frontend (HTML5/CSS) y backend (PHP). Aprendizaje práctico con WordPress.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: casas-minimal
Tags: real-estate, minimal, html5, css3, learning

Este tema está diseñado para mostrar propiedades inmobiliarias con:
- Listado en página principal
- Detalle por ID único
- CRUD para usuarios registrados
- Sistema de expiración por tiempo de exposición
*/

/* === ESTILOS REALES COMIENZAN AQUÍ === */

/* Usamos W3.CSS como base ligera */
@import url('https://www.w3schools.com/w3css/5/w3.css');

/* Tus estilos personalizados */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

.contenedor {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.tarjeta-propiedad {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.tarjeta-propiedad img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tarjeta-propiedad h3 {
    padding: 10px;
    margin: 0;
    font-size: 1.2em;
}

.tarjeta-propiedad .precio {
    padding: 0 10px 10px;
    color: #e74c3c;
    font-weight: bold;
}

/* Estilo para galería en detalle */
.galeria img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin: 5px;
    border: 1px solid #eee;
}

/* Botones */
.boton {
    background-color: #2196F3;
    color: white;
    border: none;
    padding: 10px 15px;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    cursor: pointer;
}

.boton:hover {
    background-color: #0b7dda;
}