/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height:  100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image Background */
.hero__image {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

/* Overlay for better text readability */
.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width:  100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 2;
}

/* Content */
.hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    color:  #fff;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero__image {
        width: 100%;
        height:  100%;
    }
}