/* =============================================
   Video Background Hero Section - Premium Style
   ============================================= */

.wpvbs-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 640px;
    overflow: hidden;
    background: #0f0f0f;
}

/* Make video fill container perfectly */
.wpvbs-slider video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Overlay with better depth & readability */
.wpvbs-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5vw;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.35) 40%,
        rgba(0, 0, 0, 0.45) 70%
    );
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* Top small uppercase line */
.wpvbs-overlay h4 {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ff9f1c;                    /* warm orange */
    margin-bottom: 1.2rem;
    opacity: 0.95;
}

/* Main headline */
.wpvbs-overlay h1 {
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    font-weight: 800;
    line-height: 1.05;
    color: white;
    margin: 0 0 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.7);
    max-width: 1100px;
}

/* Description / subtext */
.wpvbs-overlay p {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    max-width: 780px;
    margin: 0 auto 2.5rem;
}

/* CTA Button */
.wpvbs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.6rem;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    background: #ff9f1c;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 8px 30px rgba(255, 159, 28, 0.35);
    border: 2px solid #ff9f1c;
}

/* Hover states */
.wpvbs-btn:hover,
.wpvbs-btn:focus {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(255, 159, 28, 0.45);
    border-color: white;
}

/* Optional subtle shine animation on hover */
.wpvbs-btn:hover::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.7s ease;
}

.wpvbs-btn:hover::after {
    left: 120%;
}

/* =============================================
   Responsive Adjustments
   ============================================= */

@media (max-width: 1024px) {
    .wpvbs-overlay h1 {
        font-size: clamp(2.6rem, 6.5vw, 4.2rem);
    }
    .wpvbs-overlay p {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .wpvbs-slider {
        height: 80vh;
        min-height: 560px;
    }

    .wpvbs-overlay {
        padding: 0 6vw;
    }

    .wpvbs-overlay h4 {
        font-size: 0.95rem;
        letter-spacing: 3px;
    }

    .wpvbs-overlay h1 {
        font-size: clamp(2.4rem, 8vw, 3.6rem);
    }

    .wpvbs-overlay p {
        font-size: 1.1rem;
        max-width: 90%;
    }

    .wpvbs-btn {
        padding: 0.95rem 2.4rem;
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .wpvbs-overlay h1 {
        font-size: 2.1rem;
    }
    .wpvbs-overlay p {
        font-size: 1rem;
    }
    .wpvbs-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}