/* ── Indowaves Hero Slider ── */
*, *::before, *::after { box-sizing: border-box; }

.iwhs-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 520px;
    max-height: 900px;
    overflow: hidden;
    background: #1a1a1a;
    font-family: 'Georgia', serif;
}

/* ── Track & Slides ── */
.iwhs-track { position: relative; width: 100%; height: 100%; }

.iwhs-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.9s ease;
    pointer-events: none;
}
.iwhs-slide.iwhs-active {
    opacity: 1;
    pointer-events: auto;
}

/* ── Dark Overlay ── */
.iwhs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(0,0,0,0.62) 0%,
        rgba(0,0,0,0.28) 60%,
        rgba(0,0,0,0.10) 100%
    );
}

/* ── Content Block ── */
.iwhs-content {
    position: absolute;
    bottom: 15%;
    left: 6%;
    max-width: 520px;
    z-index: 2;
    animation: iwhs-fadeUp 0.7s ease forwards;
}
@keyframes iwhs-fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Eyebrow ── */
.iwhs-eyebrow {
    display: block;
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C9A96E;
    margin-bottom: 10px;
}

/* ── Heading ── */
.iwhs-heading {
    font-size: clamp(32px, 5.5vw, 62px);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

/* ── Subtext ── */
.iwhs-subtext {
    font-size: clamp(13px, 1.6vw, 17px);
    color: rgba(255,255,255,0.82);
    margin: 0 0 28px 0;
    font-style: italic;
    letter-spacing: 0.3px;
}

/* ── Button ── */
.iwhs-btn {
    display: inline-block;
    padding: 13px 32px;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    background: transparent;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}
.iwhs-btn:hover {
    background: #C9A96E;
    border-color: #C9A96E;
    color: #1a1a1a;
}

/* ── Dot Navigation ── */
.iwhs-dots {
    position: absolute;
    bottom: 28px;
    left: 6%;
    display: flex;
    gap: 10px;
    z-index: 10;
}
.iwhs-dot {
    width: 32px;
    height: 3px;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, width 0.3s ease;
    border-radius: 2px;
}
.iwhs-dot.iwhs-dot-active {
    background: #C9A96E;
    width: 48px;
}

/* ── Arrow Buttons ── */
.iwhs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 18px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease;
    backdrop-filter: blur(4px);
}
.iwhs-arrow:hover { background: rgba(201,169,110,0.55); }
.iwhs-prev { left: 20px; }
.iwhs-next { right: 20px; }

/* ── Mobile ── */
@media (max-width: 768px) {
    .iwhs-slider { height: 90vw; min-height: 380px; max-height: 600px; }
    .iwhs-content { bottom: 18%; left: 5%; right: 5%; max-width: 100%; }
    .iwhs-arrow { display: none; }
    .iwhs-btn { padding: 11px 24px; font-size: 11px; }
}
