/*
 Theme Name: Divi Child
 Template: Divi
*/

/* Custom Slider */
.hero-slider-wrap {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    max-width: 100%;
}

.full-width {
    margin-left: calc(-100vw/2 + 100%/2);
    margin-right: calc(-100vw/2 + 100%/2);
    max-width: 100vw;
    width: 100vw;
}

.hs-slides-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    transition: transform 0.9s cubic-bezier(0.77, 0, 0.18, 1);
    will-change: transform;
}

.hs-slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.hs-slide.active {
    opacity: 1;
}

.hs-overlay {
    position: absolute;
    inset: 0;
    background: #0b1729;
    z-index: 1;
    opacity: .3;
}

.hs-content-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    gap: 60px;
}

.hs-left,
.hs-right {
    flex: 1;
}

.hs-title-left {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.1;
}

.hs-subtitle-left {
    color: rgba(255,255,255,0.85);
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin: 0;
}

.hs-left {
    border-right: 1px solid rgba(255,255,255,0.25);
    padding-right: 60px;
}

.hs-title-right {
    color: #fff;
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 600;
    margin: 0 0 12px;
}

.hs-text-right {
    color: rgba(255,255,255,0.8);
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    line-height: 1.7;
    margin: 0 0 24px;
}

.hs-btn {
    display: inline-block;
    padding: 12px 32px;
    background: #fff;
    color: #111;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background 0.2s, color 0.2s;
}

.hs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    font-size: 1.4rem;
    width: 48px;
    height: 48px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.hs-arrow:hover {
    background: rgba(255,255,255,0.3);
}

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

/* End Custom Slider */

/* --- Media Queries --- */
@media only screen and (max-width: 1280px) {
    .hs-content-wrap {
        padding: 0 100px;
    }
}
@media only screen and (max-width: 768px) {
    .hs-content-wrap {
        flex-direction: column;
        padding: 40px 24px;
        gap: 32px;
    }
    .hs-left {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.25);
        padding-bottom: 32px;
    }
}
