/* Hero Block Additional Styles */

.hero-video-subtitle {
    margin-bottom: 40px !important;
}

.hero-video-info {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.hero-video-role {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 20px;
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
    font-family: var(--font-sans);
}

.hero-video-evidence {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: var(--color-white);
    margin-bottom: 30px;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-video-description {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 50px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
    font-family: var(--font-sans);
}

.hero-video-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hero-btn {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-family: var(--font-sans);
    padding: 0;
    border: none;
    background: transparent;
    color: var(--color-white);
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
    position: relative;
    padding-bottom: 8px;
}

.hero-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-white);
    transition: width 0.4s ease;
}

.hero-btn:hover::after {
    width: 100%;
}

.hero-btn:hover {
    color: var(--color-white);
    opacity: 0.9;
}

.hero-btn-primary {
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-btn-primary::after {
    background-color: var(--color-white);
}

.hero-btn-secondary {
    opacity: 0.8;
}

.hero-btn-secondary::after {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--color-white);
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.hero-scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(5px);
}

.hero-scroll-indicator svg {
    display: block;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-video-subtitle {
        margin-bottom: 30px !important;
    }
    
    .hero-video-info {
        margin-bottom: 40px;
    }
    
    .hero-video-role {
        font-size: 10px;
        margin-bottom: 15px;
    }
    
    .hero-video-evidence {
        font-size: 28px;
        letter-spacing: 1px;
        margin-bottom: 25px;
    }
    
    .hero-video-description {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 40px;
    }
    
    .hero-video-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .hero-btn {
        font-size: 10px;
        padding-bottom: 6px;
    }
    
    .hero-scroll-indicator {
        bottom: 80px;
    }
    
    .hero-scroll-indicator svg {
        width: 20px;
        height: 20px;
    }
}
