/**
 * =====================================================================================
 * FILE: /css/site_object_page.css
 * MODULE: Object SEO Page Styles
 * TYPE: Stylesheet
 *
 * PROPÓSITO:
 * Definir los estilos visuales de la página pública SEO para objetos:
 * - Venues
 * - Boats
 * - Events
 *
 * REGLAS:
 * - No contiene JavaScript.
 * - No contiene lógica PHP.
 * - No modifica estilos globales fuera del scope de esta página.
 * - Todo se encapsula bajo clases wk-object-* y wk-card-*.
 *
 * AUTHOR:
 * Weeket WebMaster
 * =====================================================================================
 */

.wk-object-page {
    background: #f8f9fa;
    min-height: 100vh;
}

.wk-object-main {
    width: 100%;
}

.wk-object-hero {
    padding: 24px 12px 10px;
}

.wk-object-title {
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
}

.wk-object-intro {
    max-width: 900px;
    margin: 0 auto;
    color: #495057;
    font-size: 1rem;
    line-height: 1.6;
}

.wk-object-container {
    max-width: 97% !important;
}

.wk-object-grid {
    display: grid;
    gap: 1.5rem;
    padding: 1rem;
}

@media (max-width: 767.98px) {
    .wk-object-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) and (max-width: 1399.98px) {
    .wk-object-grid {
        grid-template-columns: repeat(4, 1fr);
        padding: 0 30px;
    }
}

@media (min-width: 1400px) {
    .wk-object-grid {
        grid-template-columns: repeat(7, 1fr);
    }
}

.wk-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.wk-card-link:hover {
    color: inherit;
    text-decoration: none;
}

.wk-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.wk-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0,0,0,.16);
}

.wk-card-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}

.wk-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wk-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    padding: 6px 13px;
    border-radius: 20px;
    color: #fff;
    background: #005BAB;
    font-size: .78rem;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0,0,0,.2);
}

.wk-card-body {
    padding: 14px;
}

.wk-card-category {
    font-size: .72rem;
    color: #6c757d;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.wk-card-title {
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 800;
    color: #222;
    margin-bottom: 5px;
}

.wk-card-subtitle {
    color: #495057;
    font-size: .86rem;
    margin-bottom: 7px;
    font-style: italic;
}

.wk-card-meta {
    color: #495057;
    font-size: .86rem;
    margin-bottom: 5px;
}

.wk-card-price {
    color: #222;
    font-size: .9rem;
    font-weight: 700;
    margin: 0;
}

/**
 * =====================================================================================
 * MODALES SOBRE MENÚ
 * =====================================================================================
 *
 * Fuerza los modales Bootstrap por encima de cualquier menú/header fijo del sitio.
 */

.modal-backdrop {
    z-index: 2147483000 !important;
}

.modal {
    z-index: 2147483001 !important;
}

.modal-dialog {
    z-index: 2147483002 !important;
}