/**
 * WM Hero - Frontend Styles
 */



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

.wm-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
}

.wm-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: end;
    justify-content: center;
    height: 100%;
 padding: 20px;
}



.wm-hero-text {background-color: var(--wp--preset--color--dark-1)!important; text-align: center; padding: 20px; border-radius: 14px; margin-bottom: 28px;}
.wm-hero-text * {color: var(--wp--preset--color--light-1)!important; margin: 0;}




/* Responsive adjustments */
@media (max-width: 768px) {
    .wm-hero-content {
        padding: 15px;
    }
    
    .wm-hero-text h1 {
        margin-bottom: 0.5rem;
    }
}

/* Performance optimization */
@media (prefers-reduced-motion: reduce) {
    .wm-hero-bg {
        will-change: auto;
    }
}