/**
 * Styles Frontend pour Lieux Historiques RQM
 *
 * @package Lieux_Historiques_RQM
 */

/* ==========================================================================
   Variables CSS
   ========================================================================== */

:root {
    --lh-rqm-primary: #333;
    --lh-rqm-primary-hover: #000;
    --lh-rqm-accent: #e91e63;
    --lh-rqm-text: #333;
    --lh-rqm-text-light: #666;
    --lh-rqm-border: #ddd;
    --lh-rqm-bg: #f5f5f5;
    --lh-rqm-white: #fff;
    --lh-rqm-shadow: rgba(0, 0, 0, 0.1);
    --lh-rqm-radius: 8px;
}

/* ==========================================================================
   Conteneur principal
   ========================================================================== */

.lh-rqm-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* ==========================================================================
   Formulaire de filtres
   ========================================================================== */

.lh-rqm-filters {
    background: var(--lh-rqm-white);
    padding: 30px;
    border-radius: var(--lh-rqm-radius);
    margin-bottom: 40px;
    box-shadow: 0 2px 12px var(--lh-rqm-shadow);
}

.lh-rqm-filter-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Section de recherche */
.lh-rqm-search-section {
    margin-bottom: 10px;
}

.lh-rqm-search-field {
    display: flex;
    position: relative;
    max-width: 500px;
}

.lh-rqm-search-field input[type="text"] {
    flex: 1;
    padding: 14px 50px 14px 20px;
    border: 2px solid var(--lh-rqm-border);
    border-radius: 30px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--lh-rqm-white);
}

.lh-rqm-search-field input[type="text"]:focus {
    outline: none;
    border-color: var(--lh-rqm-primary);
    box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.1);
}

.lh-rqm-search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--lh-rqm-primary);
    color: var(--lh-rqm-white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.lh-rqm-search-btn:hover {
    background: var(--lh-rqm-primary-hover);
}

.lh-rqm-search-btn svg {
    width: 18px;
    height: 18px;
}

/* Ligne des filtres (décennies + catégories) */
.lh-rqm-filters-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Sections de filtres */
.lh-rqm-filter-section {
    display: flex;
    flex-direction: column;
}

.lh-rqm-filter-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--lh-rqm-text);
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--lh-rqm-bg);
}

/* Groupe de checkboxes */
.lh-rqm-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lh-rqm-checkbox-label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.lh-rqm-checkbox {
    display: none;
}

.lh-rqm-checkbox-text {
    display: inline-block;
    padding: 8px 16px;
    background: #e0e0e0;
    border: 2px solid #ccc;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    transition: all 0.2s ease;
}

.lh-rqm-checkbox-label:hover .lh-rqm-checkbox-text {
    background: #d0d0d0;
    border-color: #999;
}

.lh-rqm-checkbox:checked + .lh-rqm-checkbox-text {
    background: #222 !important;
    color: #fff !important;
    border-color: #222 !important;
}

/* Fallback avec sélecteur plus spécifique */
.lh-rqm-checkbox-label input[type="checkbox"]:checked + .lh-rqm-checkbox-text {
    background: #222 !important;
    color: #fff !important;
    border-color: #222 !important;
}

/* Actions du formulaire */
.lh-rqm-filter-actions {
    display: flex;
    justify-content: flex-start;
    padding-top: 10px;
    border-top: 1px solid var(--lh-rqm-bg);
}

.lh-rqm-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lh-rqm-btn-reset {
    background: transparent;
    color: var(--lh-rqm-text-light);
    border: 1px solid var(--lh-rqm-border);
}

.lh-rqm-btn-reset:hover {
    background: var(--lh-rqm-bg);
    color: var(--lh-rqm-text);
}

/* ==========================================================================
   Zone de résultats
   ========================================================================== */

.lh-rqm-results-wrapper {
    position: relative;
    min-height: 200px;
}

/* Indicateur de chargement */
.lh-rqm-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.lh-rqm-spinner {
    border: 4px solid var(--lh-rqm-bg);
    border-top: 4px solid var(--lh-rqm-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: lh-rqm-spin 0.8s linear infinite;
}

@keyframes lh-rqm-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Compteur de résultats */
.lh-rqm-results-count {
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--lh-rqm-text-light);
}

/* Grille de résultats */
.lh-rqm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

/* Aucun résultat */
.lh-rqm-no-results {
    text-align: center;
    padding: 60px 20px;
    background: var(--lh-rqm-bg);
    border-radius: var(--lh-rqm-radius);
    color: var(--lh-rqm-text-light);
    font-size: 16px;
    grid-column: 1 / -1;
}

/* ==========================================================================
   Cartes de lieux (vignette + titre)
   ========================================================================== */

.lh-rqm-card {
    background: var(--lh-rqm-white);
    border-radius: var(--lh-rqm-radius);
    overflow: hidden;
    box-shadow: 0 2px 8px var(--lh-rqm-shadow);
    transition: all 0.3s ease;
}

.lh-rqm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.lh-rqm-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Image de la carte */
.lh-rqm-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--lh-rqm-bg);
}

.lh-rqm-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.lh-rqm-card:hover .lh-rqm-card-image img {
    transform: scale(1.08);
}

/* Placeholder pour image manquante */
.lh-rqm-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
}

.lh-rqm-no-image span {
    font-size: 12px;
    color: var(--lh-rqm-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Titre de la carte */
.lh-rqm-card-title {
    margin: 0;
    padding: 15px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--lh-rqm-text);
    text-align: center;
    background: var(--lh-rqm-white);
}

.lh-rqm-card:hover .lh-rqm-card-title {
    color: var(--lh-rqm-primary-hover);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
    .lh-rqm-filters {
        padding: 20px;
    }

    .lh-rqm-filters-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .lh-rqm-search-field {
        max-width: 100%;
    }

    .lh-rqm-checkbox-group {
        gap: 8px;
    }

    .lh-rqm-checkbox-text {
        padding: 6px 12px;
        font-size: 13px;
    }

    .lh-rqm-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .lh-rqm-card-title {
        font-size: 13px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .lh-rqm-wrapper {
        padding: 10px;
    }

    .lh-rqm-filters {
        padding: 15px;
        margin-bottom: 25px;
    }

    .lh-rqm-search-field input[type="text"] {
        padding: 12px 45px 12px 15px;
        font-size: 14px;
    }

    .lh-rqm-search-btn {
        width: 35px;
        height: 35px;
    }

    .lh-rqm-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .lh-rqm-card-title {
        font-size: 12px;
        padding: 10px;
    }
}
