

/* ============================================
   TITRE DE LA PAGE
   ============================================ */
.tiles-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
    border-bottom: 2px solid #8b6914;
    padding-bottom: 0.5rem;
}

/* ============================================
   GRILLE DES TUILES
   ============================================ */
.tiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    padding: 0.5rem 0;
}

/* ============================================
   TUILE INDIVIDUELLE
   ============================================ */
.tile {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background-color: #fff;
    cursor: pointer;
}

.tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* ============================================
   IMAGE DE LA TUILE
   ============================================ */
.tile-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3; /* Format paysage régulier */
}

.tile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.tile:hover .tile-image {
    transform: scale(1.05);
}

/* ============================================
   OVERLAY AU SURVOL
   ============================================ */
.tile-overlay {
    position: absolute;
    inset: 0; /* top/right/bottom/left = 0 */
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tile:hover .tile-overlay {
    opacity: 1;
}

.tile-overlay-text {
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}

/* ============================================
   LÉGENDE DE LA TUILE
   ============================================ */
.tile-caption {
    padding: 0.75rem 1rem;
    flex-grow: 1;
}

.tile-titre {
    font-size: 1rem;
    font-weight: bold;
    margin: 0 0 0.25rem 0;
    color: #222;
}

.tile-description {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   LIEN RETOUR
   ============================================ */
.retour-galeries {
    margin-top: 2rem;
}

.retour-galeries a {
    color: #8b6914;
    text-decoration: none;
    font-weight: bold;
}

.retour-galeries a:hover {
    text-decoration: underline;
}

/* ============================================
   MESSAGE D'ERREUR
   ============================================ */
.erreur {
    color: #c0392b;
    font-weight: bold;
    padding: 1rem;
    border: 1px solid #c0392b;
    border-radius: 4px;
    background: #fdecea;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 600px) {
    .tiles-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }

    .tiles-title {
        font-size: 1.4rem;
    }
}


