/*
 * Bileşen: ER-Hero
 * Kullanım:
 * <section class="er-hero">
 *   <div class="er-hero-bg-accent"></div>
 *   <div class="er-hero-content">...</div>
 * </section>
 */

.er-hero {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    border-radius: 24px;
    padding: 80px 60px;
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.er-hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
}

.er-hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
}

.er-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.er-hero-bg-accent {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.2;
    filter: blur(60px);
}

/* Category Page Hero (Modern Mini Hero) */
.er-hero-mini {
    height: 320px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    margin-bottom: 0;
}

.er-hero-mini::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 100%);
    z-index: 1;
}

.er-hero-mini .er-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.er-hero-mini-content {
    max-width: 700px;
}

.er-hero-mini h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.er-hero-mini p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .er-hero-mini { height: 260px; }
    .er-hero-mini h1 { font-size: 2rem; }
    .er-hero-mini p { font-size: 0.95rem; }
}
