/* HERO GENEL YAPI */
.hero {
    position: relative;
    width: 100%;
    height: 15vh;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* HERO OVERLAY */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    box-sizing: border-box;
}

/* HERO CONTENT */
.hero-content {
    max-width: 800px;
    color: #fff;
}

/* BA?LIK */
.hero-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 600;

    /* Premium Glow + Deep Shadow Hybrid FX */
    text-shadow:
        0 0 12px rgba(255,255,255,0.45),   /* daha güçlü glow */
        0 0 24px rgba(255,255,255,0.25),   /* geniş soft glow */
        0 6px 18px rgba(0,0,0,0.55);       /* derin 3D gölge */
}
/* ALT BA?LIK */
.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

/* BUTON */
.hero-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #a67c52;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.hero-button:hover {
    background-color: #8c6239;
}

/* MOBIL OPTIMIZASYON */
@media (max-width: 768px) {
    .hero {
        height: 45vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}