/* Standalone Hero Video Section */
.hero-video-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-content {
    z-index: 3;
    color: white;
    padding: 40px 20px;
}

.hero-video-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-video-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease-out;
}

.hero-video-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease-out;
}

.hero-video-buttons .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-video-buttons .btn-primary {
    background: linear-gradient(135deg, #F2062F, #E01035);
    border: none;
}

.hero-video-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(224, 16, 53, 0.4);
}

.hero-video-buttons .btn-outline-light {
    border: 2px solid white;
    background: transparent;
}

.hero-video-buttons .btn-outline-light:hover {
    background: white;
    color: #E01035;
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-video-section {
        height: 450px;
    }
    
    .hero-video-title {
        font-size: 2rem;
    }
    
    .hero-video-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-video-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-video-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}
