/**
 * Hero CSS - Homepage hero section styles
 * Path: public_html/css/hero.css
 * Version: 1.5.0
 * 
 * This file contains styles for the dark gradient hero section
 * with quick filter buttons. Used ONLY on the homepage.
 */

/* ====================================================================
   HERO SECTION - Dark gradient background
   ==================================================================== */
.hero-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e293b 100%);
    color: #ffffff;
    padding: 44px 20px 120px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #ffffff;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.5;
}

/* Hero Quick Filter Buttons */
.hero-quick-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: none;
    border-radius: 9999px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 44px;
}

.hero-filter-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.hero-filter-btn.active {
    background: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.hero-filter-btn .filter-icon {
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
}

/* ====================================================================
   HERO RESPONSIVE - Mobile
   ==================================================================== */

/* Tablet responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-section {
        padding: 36px 20px 110px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Mobile screens */
@media (max-width: 768px) {
    .hero-section {
        padding: 32px 16px 100px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-quick-filters {
        justify-content: center;
        gap: 8px;
    }
    
    .hero-filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        min-height: 44px;
    }
}

/* Small mobile screens */
@media (max-width: 480px) {
    .hero-section {
        padding: 28px 12px 80px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-quick-filters {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .hero-filter-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        justify-content: center;
    }
}

/* Very narrow screens */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.35rem;
    }
    
    .hero-filter-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
}

/* Focus styles for keyboard navigation */
.hero-filter-btn:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.5);
}

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

/* High contrast mode support for hero buttons */
@media (prefers-contrast: high) {
    .hero-filter-btn {
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid #ffffff;
    }
    
    .hero-filter-btn:hover {
        background: rgba(255, 255, 255, 0.3);
    }
    
    .hero-filter-btn.active {
        background: #ffffff;
        color: #000000;
    }
}