* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
}

.hero-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .hero-container {
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile */
    }
    
    .hero-image {
        object-fit: cover;
        object-position: center center;
        min-height: 100vh;
        min-height: 100dvh;
    }
}