/* =========================================
   HOME HOTELS - CORE STYLES
   ========================================= */

:root {
    --hh-primary: #E07A5F;
    --hh-primary-hover: #D0674D;
    --hh-secondary: #81B29A;
    --hh-text: #2B2D42;
    --hh-bg: #F8F9FA;

    /* Reemplazar tipografía de Bootstrap */
    --bs-body-font-family: 'Plus Jakarta Sans', sans-serif;
    --bs-body-color: var(--hh-text);
}

body {
    background-color: var(--hh-bg);
    -webkit-font-smoothing: antialiased;
}

/* Botones Personalizados */
.btn-primary-hh {
    background-color: var(--hh-primary);
    border-color: var(--hh-primary);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    /* Bordes redondeados estilo Airbnb */
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary-hh:hover {
    background-color: var(--hh-primary-hover);
    border-color: var(--hh-primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(224, 122, 95, 0.3);
}

/* Tarjetas de Propiedades */
.property-card {
    border: none;
    border-radius: 16px;
    background: transparent;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.property-card:hover {
    transform: translateY(-5px);
}

.property-card .img-wrapper {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1;
}

.property-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover img {
    transform: scale(1.05);
}

/* Tipografía de la Tarjeta */
.property-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 0.8rem;
    margin-bottom: 0.2rem;
}

.property-location {
    color: #6C757D;
    font-size: 0.95rem;
}

.property-price {
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Hero Section */
.hero-section {
    padding: 6rem 0 4rem;
    text-align: center;
}

.hero-section h1 {
    font-weight: 800;
    font-size: 3.5rem;
    letter-spacing: -1px;
}