/* Hero section specific styles */

.hero-section {
    position: relative;
    height: 80vh;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: left;
    padding: 2rem;
}

.tagline-container {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 3;
    text-align: center;
}

.hero-tagline {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    margin: 0;
}

@media (max-width: 768px) {
    .tagline-container {
        bottom: 30px;
        left: 30px;
        right: 30px;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        padding: 1rem;
    }
}