/* --- 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/hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    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;
}

/* Buton Düzenlemeleri */
.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-outline-dark {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.btn-outline-dark:hover {
    background: #ffffff;
    color: #000000;
}

/* 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;
    }
    .hero-btns {
        justify-content: center;
    }
}