/* ============================================================
   ImageBanner Section — Full-width görsel + ortada metin
   ============================================================ */

.imagebanner-section {
    /* Sıfır padding — tam ekran görsel */
    padding: 0 !important;
    width: 100%;
    overflow: hidden;
}

.imagebanner-bg {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* 
     * Arka plan rengi önce --section-bg (template editörden gelir), 
     * yoksa fallback olarak #1a1a1a kullanılır.
     * Template editör <section>'a style="background-color:X; --section-bg:X" yazar,
     * biz bunu buradan okuyoruz — böylece renk değişimi çalışır.
     */
    background-color: var(--section-bg, #1a1a1a);
    /* Varsayılan yükseklik — DB'den override edilir */
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay — karartma tabakası */
.imagebanner-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    transition: background 0.3s ease;
}

/* Metin kutusu */
.imagebanner-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 900px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Hizalama varyantları */
.imagebanner-align-center {
    text-align: center;
    align-items: center;
}

.imagebanner-align-left {
    text-align: left;
    align-items: flex-start;
}

.imagebanner-align-right {
    text-align: right;
    align-items: flex-end;
}

/* Alt başlık */
.imagebanner-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.85;
    color: rgba(255, 255, 255, 0.8);
}

/* Ana başlık */
.imagebanner-title {
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
    /* Hafif text-shadow: görselin üstünde okunabilirlik */
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Edit modunda bg için cursor */
[data-edit-field="ib_image"] {
    cursor: pointer;
}

/* ──── Responsive ──── */
@media (max-width: 1024px) {
    .imagebanner-bg {
        height: 520px;
    }
}

@media (max-width: 768px) {
    .imagebanner-bg {
        height: 400px;
        background-attachment: scroll; /* Mobilde parallax kapat */
    }

    .imagebanner-content {
        width: 95%;
        padding: 1.25rem;
    }

    .imagebanner-title {
        font-size: clamp(1.35rem, 5.5vw, 2rem);
    }

    .imagebanner-subtitle {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .imagebanner-bg {
        height: 320px;
    }
}
