/* Hero Video Section Styles */
.hero-video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

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

.hero-video-pc {
    display: block;
}

.hero-video-mobile {
    display: none;
}

@media (max-width: 768px) {
    .hero-video-section {
        height: 70vh;
        min-height: 400px;
        max-height: 600px;
    }
    
    .hero-video-pc {
        display: none;
    }
    
    .hero-video-mobile {
        display: block;
    }
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-content {
    text-align: center;
    color: white;
    z-index: 10;
    padding: 0 20px;
}

.hero-video-content .hero-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-video-content .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .hero-video-content .hero-subtitle {
        font-size: 0.875rem;
    }
    
    .hero-video-content .hero-title {
        font-size: 1.5rem;
    }
}
