/* Hero Section Full Screen Fix */
.hero-section {
    margin-top: -1px !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
}

/* Ensure hero section background covers full area */
.hero-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

/* Fix for mobile devices */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll !important;
    }
}

/* Ensure no gap between header and hero */
body {
    margin: 0 !important;
    padding: 0 !important;
}

header + * {
    margin-top: 0 !important;
}

/* Better image fit */
.bg-cover-enhanced {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    object-fit: cover !important;
}