/* Hero Banner - Basit ve Temiz Tasarım */
.hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Admin Preview için küçük boyut */
.hero-banner-preview {
    min-height: 300px;
}

/* Arkaplan */
.hero-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-banner-gradient {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
}

/* Overlay kaldırıldı */

/* İçerik */
.hero-banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 16rem;
    color: white;
    text-align: center;
}

/* Başlık */
.hero-banner-title {
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

/* Alt başlık */
.hero-banner-subtitle {
    font-size: 1.2rem;
    margin: 0 0 30px 0;
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
}

/* Buton */
.hero-banner-button {
    display: inline-block;
    background: white;
    color: #1a1a1a;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: var(--btn-border-radius);
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-banner-button:hover {
    background: #f8f9fa;
    border-color: #e9ecef;
    color: #1a1a1a;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-banner {
        min-height: 400px;
    }

    .hero-banner-preview {
        min-height: 250px;
    }

    .hero-banner-content {
        padding: 40px 30px;
    }

    .hero-banner-title {
        font-size: 2.2rem;
    }

    .hero-banner-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        min-height: 350px;
    }

    .hero-banner-preview {
        min-height: 200px;
    }

    .hero-banner-content {
        padding: 30px 20px;
    }

    .hero-banner-title {
        font-size: 1.8rem;
    }

    .hero-banner-subtitle {
        font-size: 0.9rem;
    }

    .hero-banner-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}