/* Corrections finales pour les images et encadrés */

/* Forcer les styles pour toutes les images */
img {
    max-width: 100%;
    height: auto;
}

/* Images dans les cartes */
.card img, 
.chambre-card img,
.region-card img,
.activite-card img {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}

/* Images de galerie */
.photo-item img,
.gallery-item img {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    object-position: center !important;
}

/* Widgets avec encadrements forcés */
.widget-container {
    background: white !important;
    border: 2px solid #ddd !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
    overflow: hidden !important;
    margin-bottom: 20px !important;
}

.widget-header {
    background: linear-gradient(135deg, #c17a5b, #8b4513) !important;
    color: white !important;
    padding: 15px !important;
    text-align: center !important;
    font-weight: bold !important;
}

.widget {
    padding: 20px !important;
    min-height: 150px !important;
    background: white !important;
}

/* Encadrements pour les sections */
.widgets-section {
    background: #f8f9fa !important;
    padding: 30px !important;
    border-radius: 12px !important;
    margin: 30px 0 !important;
}

/* Responsive forcé */
@media (max-width: 768px) {
    .card img, 
    .chambre-card img,
    .region-card img,
    .activite-card img,
    .photo-item img,
    .gallery-item img {
        height: 200px !important;
    }
}

