/* ============================================
   HERO BANNER - Ultra Minimalist 2025
   ============================================ */

.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

/* Subtle pattern background with color */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

[data-theme="light"] .hero::before {
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.03) 0%, transparent 40%);
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.06em;
    line-height: 0.9;
    margin-bottom: var(--space-sm);
    text-transform: lowercase;
}

.hero-title .accent-word {
    color: var(--accent-color);
    position: relative;
}

/* Decorative line */
.hero-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--accent-color) 50%,
        transparent 100%
    );
    margin: var(--space-md) auto;
    animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.5;
        width: 60px;
    }
    50% {
        opacity: 1;
        width: 80px;
    }
}

.hero-subtitle {
    font-size: clamp(0.875rem, 2vw, 1.125rem);
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-xl);
    text-transform: uppercase;
}

.hero-btn {
    padding: 16px 40px;
    font-size: var(--font-size-base);
    font-weight: 500;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition-base);
    letter-spacing: 0.02em;
    background: var(--accent-color);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    background: var(--accent-color-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.hero-btn:active {
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE - Hero Banner
   ============================================ */

@media (max-width: 1024px) {
    .hero {
        min-height: 60vh;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 50vh;
        padding: var(--space-lg) 0;
    }
    
    .hero-container {
        padding: 0 var(--space-md);
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 5rem);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-sm);
        margin-bottom: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 40vh;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
    }
}
