.spot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.spot-card {
    background: var(--white);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    height: 380px;
}

.spot-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-app);
}

/* Image de fond en plein écran dans la carte */
.spot-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Overlay dégradé pour la lisibilité du texte */
.spot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: white;
}

.spot-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.spot-location {
    font-size: 0.85rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Filtres de catégorie (Scroll horizontal comme les chaînes TV) */
.filter-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 0 20px;
}

.filter-btn {
    white-space: nowrap;
    padding: 8px 20px;
    border-radius: 25px;
    background: var(--white);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}
.spot-tags-container {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 3;
    display: flex;
    flex-direction: column; /* Les tags s'empilent verticalement */
    align-items: flex-end;
    gap: 5px;
}

.spot-category {
    background: rgba(172, 13, 13, 0.9); /* Ton rouge #AC0D0D */
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}