/* --- Style Portfolio Landes Photographe --- */

.category-filter-wrapper {
    margin: 30px 0;
    text-align: center;
}

.category-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 10px;
}

/* Style des boutons encadrés */
.cat-btn {
    display: inline-block !important;
    padding: 10px 20px !important;
    border: 1px solid #4491e0 !important;
    border-radius: 4px !important;
    color: #4491e0 !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    min-width: 210px !important;
    background-color: #ffffff !important;
}

/* Effet au survol (Inversion des couleurs) */
.cat-btn:hover {
    background-color: #4491e0 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(68, 145, 224, 0.2);
    transform: translateY(-2px);
}

/* Ligne de séparation */
hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 30px 0;
}

/* Grille de la galerie photo */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 50px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Style des tags en bas d'article */
.tags .label {
    margin-right: 5px;
    padding: 5px 10px;
    background-color: #4491e0;
    color: white;
    border-radius: 3px;
    font-size: 0.8rem;
    text-decoration: none;
}

/* Cache les tags uniquement dans l'entête Hero */
#blog-hero .tags {
display: none !important;
}

/* Cache les tags dans l'entête classique si l'image hero est absente */
.content-title .tags {
    display: none !important;
}

/* Style pour les flèches de navigation Featherlight */
.featherlight-next, .featherlight-previous {
    display: block !important;
    background: rgba(0,0,0,0.3) !important; /* Petit fond sombre pour voir les flèches */
    width: 60px !important;
}

.featherlight-next span, .featherlight-previous span {
    color: #fff !important;
    font-size: 60px !important;
    line-height: 100vh !important;
    display: inline-block !important;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5) !important;
}

/* On force l'icône de la flèche si elle ne s'affiche pas */
.featherlight-next span:before { content: '›' !important; }
.featherlight-previous span:before { content: '‹' !important; }
