/* ============================================================
   HOMEPAGE.CSS - STYLES COMMUNS POUR LA PAGE D'ACCUEIL
   ============================================================

   Contient les styles communs (container, grille, etat vide).

   FICHIERS SEPARES (charges via layout.php) :
   - carte_annonce.css : Styles des annonces
   - carte_banniere.css : Styles des bannieres (services regionaux)
   - carte_pub.css : Styles des publicites sponsorisees

   CONFIGURATION :
   - homepage-config.css : Variables modifiables pour personnaliser

   ============================================================ */


/* ============================================================
   SECTION 1 : CONTAINER ET GRILLE
   ============================================================ */

/* Container principal des annonces */
.hp-listings-container {
    margin-top: 2.5rem;
}

/* Grille des annonces */
.hp-listings-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: var(--hp-card-gap);
}

.hp-listings-list {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: var(--hp-card-gap);
}

/* Desktop : 3 colonnes pour grid */
@media (min-width: 448px) {
    .hp-listings-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


/* ============================================================
   SECTION 2 : ETAT VIDE (AUCUN RESULTAT)
   ============================================================ */

.hp-empty-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--hp-color-text-light);
    padding: 60px 20px;
    text-align: center;
    min-height: 300px;
}

.hp-empty-state__icon {
    font-size: 64px;
    color: #fb2109;
    margin-bottom: 20px;
}

.hp-empty-state__text {
    font-size: 18px;
    color: var(--hp-color-text);
    margin-bottom: 30px;
    max-width: 500px;
}

.hp-empty-state__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background-color: var(--hp-color-primary);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hp-empty-state__btn:hover {
    background-color: var(--hp-color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Responsive empty state */
@media (max-width: 768px) {
    .hp-empty-state {
        padding: 40px 15px;
    }

    .hp-empty-state__icon {
        font-size: 48px;
    }

    .hp-empty-state__text {
        font-size: 16px;
    }
}


/* ============================================================
   SECTION 3 : UTILITAIRES
   ============================================================ */

/* Ligne de pub (occupe toute la largeur) */
.hp-full-width-row {
    grid-column: 1 / -1 !important;
    width: 100%;
    display: block;
}

/* Separateur entre sections */
.hp-separator {
    grid-column: 1 / -1;
    height: 1px;
    background: var(--hp-color-border);
    margin: 1rem 0;
}

/* Titre de section */
.hp-section-title {
    grid-column: 1 / -1;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--hp-color-title);
    margin-bottom: 1rem;
}
