/* ============================================
   INDEX.CSS - Page d'accueil
   ============================================ */

.hero-image {
    width: 100%;
    height: calc(100vh - 70px - 120px);
    object-fit: cover;
    object-position: center;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-image {
        height: calc(100vh - 70px - 180px);
    }
}

@media (max-width: 768px) {
    body {
        overflow: auto;
    }
    
    .hero-image {
        height: auto;
        max-height: 350px;
        object-fit: cover;
        object-position: center;
    }
}

@media (max-width: 480px) {
    .hero-image {
        max-height: 250px;
    }
}