/* =====================================================
   Hair Harbor Slider – hhs-style.css  v2.0
   Theme: Luxury Gold & Cream / Elegant Hair Brand
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:wght@400;500;600&display=swap');

:root {
    --hhs-gold:        #000;
    --hhs-gold-light:  #E8C97A;
    --hhs-gold-dark:    #8A2F6E;
    --hhs-cream:       #fff;
    --hhs-warm-white:  #8A2F6E;
    --hhs-text-dark:   pink;
    --hhs-text-mid:    #5a4a2a;
    --hhs-text-light:  pink;
    --hhs-radius:      16px;
    --hhs-radius-sm:   10px;
    --hhs-gap:         18px;
    --hhs-shadow:      0 8px 40px rgba(180,140,60,.13);
    --hhs-transition:  0.4s cubic-bezier(.4,0,.2,1);
}

/* ---- SECTION WRAPPER ---- */
.hhs-section {
    position: relative;
/*     background: var(--hhs-cream); */
    padding: 80px 32px 80px;
    overflow: hidden;
    font-family: 'poppins', sans-serif;
}

/* Decorative blobs */
.hhs-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
    pointer-events: none;
}
.hhs-blob-1 {
    width: 420px; height: 420px;
/*     background: radial-gradient(circle, #C9A84C, transparent); */
    top: -120px; left: -100px;
}
.hhs-blob-2 {
    width: 300px; height: 300px;
/*     background: radial-gradient(circle, #E8C97A, transparent); */
    bottom: -80px; right: -60px;
}

/* ---- HEADING BLOCK ---- */
.hhs-heading-wrap {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.hhs-main-heading {
    font-family: 'Poppins', serif;
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 500;
    color: var(--hhs-gold);
    margin: 0 0 14px;
    letter-spacing: -0.5px;
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(201,168,76,.2);
}

.hhs-subheading {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    color: var(--hhs-text-mid);
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.7;
    font-weight: 400;
}

/* Gold line divider */
.hhs-heading-line {
    display: flex;
    justify-content: center;
}
.hhs-heading-line span {
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--hhs-gold), transparent);
    border-radius: 2px;
}

/* ---- SLIDER SHELL ---- */
.hhs-slider-shell {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.hhs-track-wrapper {
    overflow: hidden;
    flex: 1;
    border-radius: var(--hhs-radius);
}

.hhs-track {
    display: flex;
    gap: var(--hhs-gap);
    transition: transform var(--hhs-transition);
    will-change: transform;
}

/* ---- SLIDES PER VIEW ---- */

/* Desktop: 5 */
.hhs-slide {
    flex: 0 0 calc((100% - var(--hhs-gap) * 4) / 5);
    min-width: 0;
}

/* Tablet: 3 */
@media (max-width: 1024px) {
    .hhs-slide {
        flex: 0 0 calc((100% - var(--hhs-gap) * 2) / 3);
    }
}

/* Mobile: 1 */
@media (max-width: 768px) {
    :root { --hhs-gap: 0px; }
    .hhs-slide {
        flex: 0 0 100%;
    }
    .hhs-section {
        padding: 40px 0px 40px;
    }
}

/* ---- VIDEO CARD ---- */
.hhs-video-card {
    background: var(--hhs-warm-white);
    border-radius: var(--hhs-radius);
    overflow: hidden;
    box-shadow: var(--hhs-shadow);
    border: 1.5px solid rgba(201,168,76,.15);
    transition: transform var(--hhs-transition), box-shadow var(--hhs-transition), border-color var(--hhs-transition);
    position: relative;
}
.hhs-video-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--hhs-radius);
    background: linear-gradient(135deg, rgba(201,168,76,.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity var(--hhs-transition);
}
.hhs-video-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 60px rgba(180,140,60,.22);
    border-color: rgba(201,168,76,.5);
}
.hhs-video-card:hover::before {
    opacity: 1;
}

/* Media wrap – 16:9 */
.hhs-media-wrap {
    position: relative;
    padding-top: 56.25%;
    background: #f5efe0;
	min-height:450px !important;
}
.hhs-media-wrap iframe,
.hhs-media-wrap video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

/* Video title */
.hhs-video-title {
    margin: 0;
    padding: 10px 14px 12px;
    font-family: 'poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--hhs-text-mid);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.3px;
    border-top: 1px solid rgba(201,168,76,.12);
}

/* ---- ARROWS ---- */
.hhs-arrow {
    flex-shrink: 0;
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(201,168,76,.35);
    background: var(--hhs-warm-white);
    color: var(--hhs-gold);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(180,140,60,.12);
    transition: all var(--hhs-transition);
}
.hhs-arrow svg {
    width: 30px; height: 30px;
}
.hhs-arrow:hover {
    background: var(--hhs-gold);
    border-color: var(--hhs-gold);
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(180,140,60,.35);
}
.hhs-arrow:disabled {
/*     opacity: 0.3; */
    cursor: default;
    transform: none;
}

/* ---- DOTS ---- */
.hhs-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.hhs-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: rgba(201,168,76,.25);
    cursor: pointer;
    border: none;
    transition: all var(--hhs-transition);
}
.hhs-dot.active {
    background: var(--hhs-gold);
    transform: scale(1.4);
    box-shadow: 0 0 8px rgba(201,168,76,.5);
}

/* ---- PROGRESS BAR ---- */
.hhs-progress-bar {
    width: 80%;
    height: 2px;
    background: pink;
    border-radius: 2px;
    margin: 34px auto 0;
    overflow: hidden;
}
.hhs-progress-fill {
    height: 100%;
    background:  #8A2F6E;
    border-radius: 2px;
    width: 0%;
    transition: width var(--hhs-transition);
}

