/* LOH Hero Slider — hero-slider.css */

.loh-hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

/* ── Slides ─────────────────────────────── */
.loh-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--loh-trans, 1200ms) ease-in-out;
}

.loh-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.loh-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.loh-slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
}

/* ── Content ─────────────────────────────── */
.loh-slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 5%;
    gap: 1.25rem;
}

.loh-align-center {
    align-items: center;
    text-align: center;
}

.loh-align-left {
    align-items: flex-start;
    text-align: left;
}

.loh-align-right {
    align-items: flex-end;
    text-align: right;
}

/* ── Title ─────────────────────────────── */
.loh-slide-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
    margin: 0;
}

/* ── Description ─────────────────────────── */
.loh-slide-desc {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    max-width: 620px;
    margin: 0;
}

.loh-align-center .loh-slide-desc {
    text-align: center;
}

/* ── Button ─────────────────────────────── */
.loh-slide-btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    color: #c9a84c;
    background: transparent;
    border: 2px solid #c9a84c;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.28s ease, color 0.28s ease;
    margin-top: 0.25rem;
}

.loh-slide-btn:hover,
.loh-slide-btn:focus {
    background: #c9a84c;
    color: #ffffff;
    text-decoration: none;
}

/* ── Navigation Arrows ─────────────────────── */
.loh-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.22s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.loh-nav-btn:hover {
    background: rgba(255, 255, 255, 0.30);
}

.loh-nav-btn svg {
    stroke: currentColor;
    fill: none;
}

.loh-nav-prev { left: 20px; }
.loh-nav-next { right: 20px; }

/* FA icon inside arrow button */
.loh-nav-btn i {
    font-size: 18px;
    line-height: 1;
}

/* ── Dot Navigation ─────────────────────── */
.loh-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

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

.loh-dot.active {
    background: #c9a84c;
    transform: scale(1.35);
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 768px) {
    .loh-hero-slider {
        height: 420px;
    }

    .loh-nav-btn {
        width: 38px;
        height: 38px;
    }

    .loh-nav-prev { left: 10px; }
    .loh-nav-next { right: 10px; }

    .loh-slide-title {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }

    .loh-slide-content {
        padding: 1.5rem 4%;
    }
}

@media (max-width: 480px) {
    .loh-hero-slider {
        height: 360px;
    }

    .loh-slide-btn {
        padding: 10px 22px;
        font-size: 0.82rem;
    }
}
