/* Mobile Hero Styles */
.mobile-hero-section {
    display: none; /* Hidden by default, shown only on mobile */
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    background: #f8f9fa;
}

.mobile-hero-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.mobile-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mobile-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.mobile-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.mobile-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.mobile-hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

.mobile-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.mobile-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-shadow: none;
}

.mobile-hero-btn.primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.mobile-hero-btn.primary:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.mobile-hero-btn.secondary {
    background: transparent;
    color: white;
    border-color: white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.mobile-hero-btn.secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.mobile-hero-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.mobile-hero-btn:hover i {
    transform: translateX(3px);
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .mobile-hero-section {
        display: block; /* Show on mobile */
    }
    
    .mobile-hero-title {
        font-size: 2rem;
    }
    
    .mobile-hero-description {
        font-size: 1rem;
    }
    
    .mobile-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .mobile-hero-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .mobile-hero-title {
        font-size: 1.75rem;
    }
    
    .mobile-hero-description {
        font-size: 0.95rem;
    }
    
    .mobile-hero-content {
        padding: 1.5rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: more) {
    .mobile-hero-overlay {
        background: rgba(0, 0, 0, 0.8);
    }
    
    .mobile-hero-btn {
        border-width: 3px;
    }
    
    .mobile-hero-btn.primary {
        background: #000;
        color: #fff;
    }
    
    .mobile-hero-btn.secondary {
        background: #fff;
        color: #000;
        border-color: #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .mobile-hero-btn {
        transition: none;
    }
    
    .mobile-hero-btn:hover {
        transform: none;
    }
    
    .mobile-hero-btn i {
        transition: none;
    }
    
    .mobile-hero-btn:hover i {
        transform: none;
    }
} 