/*
Theme Name: Kele Premium
Author: Antigravity
Description: Diseño de lujo clonado del diseño original, adaptado a colores claros (Beige Arena, Salmón, Dorado Fino, Blanco Limpio).
Version: 1.0
*/

:root {
    --bg-color: #F9F6F0; /* Beige Arena */
    --card-bg: #FFFFFF; /* Blanco Limpio */
    --text-color: #333333; /* Dark gray for readability */
    --gold: #A67C00; /* Dorado Fino adaptado a fondo claro */
    --salmon: #FA8072; /* Salmón Elegante */
    --salmon-hover: #e07063;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, .serif-title {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-weight: 600;
}

a {
    text-decoration: none;
}

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

/* Header */
.site-header {
    padding: 20px 0;
    border-bottom: 1px solid rgba(156, 122, 49, 0.2);
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--text-color);
    font-weight: 600;
}
.main-nav a {
    margin-left: 20px;
    color: var(--text-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-salmon {
    background-color: var(--salmon);
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 4px;
    display: inline-block;
    font-weight: 500;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-salmon:hover {
    background-color: var(--salmon-hover);
}
.btn-outline {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 12px 24px;
    border-radius: 4px;
    display: inline-block;
    font-weight: 500;
    text-align: center;
}

/* Hero */
.hero-split {
    display: flex;
    min-height: 80vh;
}
.hero-content {
    flex: 1;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-subtitle {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 2px;
}
.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin: 20px 0;
}
.hero-actions {
    margin: 30px 0;
    display: flex;
    gap: 15px;
}
.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: auto;
    border-top: 1px solid rgba(156, 122, 49, 0.2);
    padding-top: 20px;
}
.hero-stats strong {
    display: block;
    font-size: 24px;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}
.hero-image {
    flex: 1;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
}

/* Features Grid */
.features-grid, .pricing-section {
    padding: 80px 0;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.feature-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(156, 122, 49, 0.1);
}
.feature-card .icon {
    font-size: 30px;
    margin-bottom: 15px;
    display: block;
}
.feature-card h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
}
.feature-card p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Activities */
.bg-white {
    background-color: var(--card-bg);
    padding: 80px 0;
}
.activities-split {
    display: flex;
    gap: 40px;
    align-items: center;
}
.activities-text {
    flex: 1;
}
.activities-image {
    flex: 1;
    height: 400px;
    background-color: #eee;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}
ul.check-list {
    list-style: none;
    padding: 0;
}
ul.check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}
ul.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.price-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 8px;
    position: relative;
    border: 1px solid rgba(156, 122, 49, 0.2);
}
.price-card.highlight {
    border: 2px solid var(--gold);
}
.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gold);
    color: #fff;
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 12px;
}
.season {
    font-size: 12px;
    letter-spacing: 1px;
    color: #888;
}
.price-card .price {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: var(--gold);
    margin: 10px 0;
}
.period {
    font-size: 14px;
}
.price-card hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 20px 0;
}
.w-100 {
    width: 100%;
    box-sizing: border-box;
    margin-top: 20px;
}

/* MotoPress specific overrides */
.mphb-calendar, .mphb-booking-form {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(166, 124, 0, 0.2);
}
.mphb-calendar input, .mphb-booking-form input, .mphb-booking-form select, .mphb-booking-form textarea {
    background-color: #fafafa;
    color: var(--text-color);
    border: 1px solid rgba(166, 124, 0, 0.2);
    padding: 10px;
    border-radius: 4px;
}

/* Efectos Premium Hover */
.price-card, .feature-card, .rule-card, .activities-image, .galeria-item, .floating-badge { transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.price-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(166,124,0,0.15); border-color: var(--gold); }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); border-top-color: var(--gold); }
.rule-card:hover { transform: scale(1.02); background: #fffaf9; border-color: var(--salmon); }
.activities-image:hover { transform: scale(1.01); box-shadow: 0 15px 40px rgba(0,0,0,0.15); }
.galeria-item:hover { transform: scale(1.03); box-shadow: 0 15px 30px rgba(0,0,0,0.1); z-index: 2; position: relative; cursor: pointer; }
.btn-salmon:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(250,128,114,0.3); }
.btn-outline:hover { background: var(--gold); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(166,124,0,0.2); }
.floating-badge:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.15); }

.mphb-book-button, 
input[type="submit"].button,
.mphb-confirm-reservation,
.mphb-checkout-button {
    background-color: var(--salmon) !important;
    color: #fff !important;
    border-radius: 6px;
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 10px;
}
.mphb-book-button:hover, 
input[type="submit"].button:hover,
.mphb-confirm-reservation:hover,
.mphb-checkout-button:hover {
    background-color: var(--salmon-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(250, 128, 114, 0.3);
}
.mphb-remove-from-cart {
    color: #ff4444 !important;
    text-decoration: underline;
    font-size: 0.9rem;
    margin-left: 15px;
}

/* MotoPress Pages Premium Styling (Results & Checkout) */
.mphb-room-type {
    border: 1px solid rgba(166,124,0,0.1);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.mphb-room-type-title {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 15px;
}
.mphb-price {
    font-size: 1.8rem;
    color: var(--salmon);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}
.mphb-checkout-form input[type="text"],
.mphb-checkout-form input[type="email"],
.mphb-checkout-form input[type="tel"],
.mphb-checkout-form input[type="number"],
.mphb-checkout-form textarea,
.mphb-checkout-form select {
    width: 100%;
    background-color: #fcfcfc;
    border: 1px solid rgba(166,124,0,0.2);
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.mphb-checkout-form input:focus,
.mphb-checkout-form select:focus,
.mphb-checkout-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(166,124,0,0.1);
}
.mphb-checkout-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}
.mphb-details-title, .mphb-booking-details-title, .mphb-customer-details-title {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(166,124,0,0.1);
    padding-bottom: 10px;
}
.mphb-reserve-room-section {
    margin-top: 20px;
    text-align: right;
}
.mphb-gateways-list {
    padding: 20px;
    background: #fffaf9;
    border-left: 4px solid var(--salmon);
    border-radius: 4px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .hero-split, .activities-split {
        flex-direction: column;
    }
    .hero-image {
        min-height: 300px;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 10px;
    }
}
