/* Liquid Hero Slider — frontend styles */

.lhs-hero-wrap {
    position: relative;
    width: 100%;
    height: var(--lhs-h-desktop, 100vh);
    overflow: hidden;
    background: #111;
    display: block;
}

@media (max-width: 768px) {
    .lhs-hero-wrap {
        height: var(--lhs-h-mobile, 60vh);
    }
}

/* WebGL canvas fills the wrapper */
.lhs-hero-wrap .lhs-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    display: block;
    z-index: 1;
}

/* Navigation */
.lhs-nav {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    pointer-events: none;
}

.lhs-prev,
.lhs-next {
    pointer-events: all;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lhs-prev:hover,
.lhs-next:hover {
    background: rgba(255,255,255,0.3);
}

.lhs-dots {
    display: flex;
    gap: 8px;
    pointer-events: all;
}

.lhs-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.3s;
}

.lhs-dot.active {
    background: #fff;
    transform: scale(1.3);
}

/* Hide nav arrows on very small screens, keep dots */
@media (max-width: 480px) {
    .lhs-prev,
    .lhs-next {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    .lhs-nav {
        bottom: 16px;
        gap: 10px;
    }
}
