/* Base Styles */
.jo-super-section {
    position: relative;
    width: 100%;
    min-height: 300px; /* Default minimum height */
    overflow: hidden;
}

/* Parallax Effect */
.jo-super-section.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Ensure videos don't use parallax */
.jo-super-section.parallax video,
.jo-super-section.parallax iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-attachment: scroll; /* Disable parallax for videos */
}

/* Foreground Content */
.foreground-module {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center; /* Default alignment */
    padding: 20px; /* Default padding */
    z-index: 10;
    color: #fff; /* Default text color */
}

/* Responsive Behavior */
@media (max-width: 768px) {
    .jo-super-section.parallax {
        background-attachment: scroll;
    }
}