/* --- HERO MODERN SECTION --- */
.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px; /* Header boşluğu */
    overflow: hidden;
    
    background-image: 
        linear-gradient(to right, rgba(0,0,0,0.9) 30%, rgba(0,0,0,0.2) 70%), 
        url('../images/blog-hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #ffffff;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.text-accent {
    color: #ff1a1a;
    text-shadow: 0 0 15px rgba(255, 26, 26, 0.5);
}

.hero-animation {
    position: relative;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-hero-variant {
    position: relative;
    background: linear-gradient(135deg, rgba(5, 5, 10, 0.85) 0%, rgba(230, 0, 0, 0.15) 100%),
                url('../images/blog-hero.webp') center / cover no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: var(--spacing-3xl, 100px) 0;
    overflow: hidden;
}

/* Mobil Cihazlar */
@media (max-width: 768px) {
    .hero-modern {
        background-attachment: scroll; /* Performans için mobilde parallax kapatılır */
        padding-top: 120px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content {
        margin: 0 auto;
    }
}