.parallax-banner-wrap {
    max-height:90vh;
}

.parallax-banner-wrap .hero-banner {

}

.parallax-banner-wrap .hero-banner.hero-banner-image{
    height:80vh;
}

.parallax-banner-wrap .hero-banner .portrait-video {
    background-color: #000;
}

.parallax-banner-wrap .hero-banner .portrait-video video {
    height: 100%;
    width: auto;
    margin: 0 auto;
    background-color: #000;
    display: block;
}
.parallax-banner-wrap .hero-banner .landscape-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;    
}

.parallax-banner-wrap .hero-banner .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: #fff;
}

.parallax-banner-wrap .hero-banner .container .banner-title {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    color:#fff;
    margin-bottom:40px;
    letter-spacing: 3%;
}

.parallax-banner-wrap .hero-banner .container .banner-button a{
    background: #FF0044;
    color:#fff;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 3%;
    text-align: center;
    text-transform: uppercase;
    border-radius: 999px;
    padding-top: 10px;
    padding-right: 30px;
    padding-bottom: 10px;
    padding-left: 30px;


}

/* Lazy Video Loading Styles */
.hero-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}

.hero-video-container .video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-video-container .video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.hero-video-container:hover .video-play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.hero-video-container .video-play-button svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.hero-video-container.video-loading .video-play-button {
    opacity: 0.5;
}

.hero-video-container.video-ready .video-play-button {
    opacity: 0;
    pointer-events: none;
}

.hero-video-container .lazy-loaded-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.video-play-button-overlay .video-play-button {
    position: static;
    transform: none;
    opacity: 1;
}

/* Loading animation */
.hero-video-container.video-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 2;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
