.bg-head{
    position: relative;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    padding: 60px 35px;
    border-radius: 14px;
    overflow: hidden;
}

.bg-head:before{
    position: absolute;
    content: "";
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.45));
    z-index: 0;
    transition: 0.4s ease;
}

/* Başlık yazısı daha belirgin olsun */
.bg-head h2{
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 1px;
}

.category-header {
    position: relative;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover !important;
    background-position: center !important;
    cursor: pointer;
    margin-bottom: 10px;
}

.category-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 30px;
    backdrop-filter: blur(4px);
}
.hero-header {
    position: relative;
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
}

.hero-logo-box {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.55);
    padding: 12px 20px;
    border-radius: 16px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-logo-box img {
    max-height: 80px;
    width: auto;
    display: block;
}
@media(max-width:768px){
    .hero-header { height: 180px; }
    .hero-logo-box img { max-height: 60px; }
}
