/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

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

.hero-video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Completely hide video controls */
    pointer-events: none;
    appearance: none;
    -webkit-appearance: none;
    -webkit-media-controls: none;
    -webkit-media-controls-panel: none;
    -webkit-media-controls-play-button: none;
    -webkit-media-controls-start-playback-button: none;
}

/* Remove play button overlay on mobile */
.hero-video-background video::-webkit-media-controls {
    display: none !important;
}

.hero-video-background video::-webkit-media-controls-panel {
    display: none !important;
}

.hero-video-background video::-webkit-media-controls-play-button {
    display: none !important;
}

.hero-video-background video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.hero-video-background img {
    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(135deg, 
        rgba(44, 82, 130, 0.7) 0%, 
        rgba(56, 161, 105, 0.6) 100%);
    z-index: 1;
}

.hero-section::before {
    display: none; /* Remove old overlay since we have video-overlay now */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    opacity: 1;
    animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--heading-font);
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: heroTitleSlide 1.2s ease-out 0.2s both;
}

@keyframes heroTitleSlide {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    animation: heroSubtitleSlide 1.2s ease-out 0.4s both;
}

@keyframes heroSubtitleSlide {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

