/* 
 * Hero Section Styles for Text Readability
 * Path: /assets/css/hero.css
 */

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-bg img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center;
}

.hero-overlay {
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(33, 37, 41, 0.6) 50%, 
        rgba(0, 0, 0, 0.8) 100%
    ) !important;
}

.hero-content {
    z-index: 10;
    position: relative;
}

.hero-text h1 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text p.lead {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-stat h3 {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.hero-stat small {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    opacity: 0.9;
}

/* Hero Form Card Enhancement */
.hero-form-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Button Enhancements */
.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

.btn-success {
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.4);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 135, 84, 0.5);
}

/* Mobile Responsive */
@media (max-width: 767.98px) {
    .hero-section {
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p.lead {
        font-size: 1.1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}