/**
 * Hero Component Styles
 * Used on homepage and category pages
 */

.hero-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
    background-size: 60px 60px;
    opacity: 0.5;
}

.hero-section .hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-section .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 24px 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-section .hero-subtitle {
    font-size: 1.25rem;
    margin: 0 0 32px 0;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-section .hero-cta {
    display: inline-flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-section .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all .2s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.hero-section .btn-primary {
    background: #fff;
    color: #667eea;
}

.hero-section .btn-primary:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero-section .btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

.hero-section .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

/* Homepage Hero */
.home .hero-section {
    padding: 100px 0 120px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    margin-bottom: -40px;
}

/* Category Hero */
.category-hero {
    padding: 60px 0;
    background: #f8f9fa;
}

.category-hero .hero-title {
    color: #1a1a1a;
    font-size: 2.5rem;
}

.category-hero .hero-subtitle {
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section .hero-title {
        font-size: 2rem;
    }
    
    .hero-section .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-section .btn {
        padding: 12px 20px;
        font-size: 0.9375rem;
    }
    
    .home .hero-section {
        padding: 80px 0 100px;
    }
    
    .category-hero .hero-title {
        font-size: 1.875rem;
    }
}
