/**
 * Hero Video CTA Widget Styles
 */

.hero-video-container {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    background-color: #000;
    background-size: cover;
    background-position: center;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-wrapper iframe,
.hero-video-wrapper video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    padding: 0 0 60px 60px;
    width: 100%;
}

.hero-heading {
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.hero-subheading {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 30px 0;
    line-height: 1.2;
}

.hero-button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.hero-button-wrap {
    display: inline-block;
}

.hero-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-align: center;
}

.hero-button:hover {
    background-color: #fff;
    color: #000;
}

@media (max-width: 1024px) {
    .hero-heading {
        font-size: 38px;
    }
    
    .hero-subheading {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .hero-content {
        padding: 20px !important;
    }
  
    
    .hero-heading {
        font-size: 32px;
    }
    
    .hero-subheading {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .hero-button-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-button {
        padding: 10px 20px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 0 30px 20px;
    }
    
    .hero-heading {
        font-size: 28px;
    }
    
    .hero-subheading {
        font-size: 24px;
    }
} 