/* ================================================
   🖼️ BACKGROUND & MEDIA SYSTEMS
   ================================================ */

/* Full-Screen Background Image Section */
.section-fullscreen-image {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Background Image Layer */
.background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Content Overlay for Text on Images */
.content-overlay {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    margin-top: 40vh;
    font-size: 2em;
}