/* Header Background Templates */

/* Hero Style - Koyu overlay, beyaz yazı */
.header-bg-hero {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
}

.header-bg-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.dynamic-header.header-bg-hero .logo-container,
.dynamic-header.header-bg-hero .site-title,
.dynamic-header.header-bg-hero .menu-container a,
.dynamic-header.header-bg-hero .mobile-menu-toggle,
.dynamic-header.header-bg-hero .menu-item a {
    position: relative;
    z-index: 2;
    color: white !important;
}

.dynamic-header.header-bg-hero .menu-container a:hover,
.dynamic-header.header-bg-hero .menu-item a:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.header-bg-hero .logo img {
    filter: brightness(0) invert(1);
}

/* Soft Style - Açık overlay, koyu yazı */
.header-bg-soft {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
}

.header-bg-soft::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.85);
    z-index: 1;
}

.dynamic-header.header-bg-soft .logo-container,
.dynamic-header.header-bg-soft .site-title,
.dynamic-header.header-bg-soft .menu-container a,
.dynamic-header.header-bg-soft .mobile-menu-toggle,
.dynamic-header.header-bg-soft .menu-item a {
    position: relative;
    z-index: 2;
    color: #374151 !important;
}

.dynamic-header.header-bg-soft .menu-container a:hover,
.dynamic-header.header-bg-soft .menu-item a:hover {
    color: #1f2937 !important;
}

/* Side Style - Yan gradient, orta kontrast */
.header-bg-side {
    background-size: cover !important;
    background-position: left center !important;
    background-repeat: no-repeat !important;
    position: relative;
}

.header-bg-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.1) 0%, rgba(255,255,255,0.9) 70%);
    z-index: 1;
}

.dynamic-header.header-bg-side .logo-container,
.dynamic-header.header-bg-side .site-title,
.dynamic-header.header-bg-side .menu-container a,
.dynamic-header.header-bg-side .mobile-menu-toggle,
.dynamic-header.header-bg-side .menu-item a {
    position: relative;
    z-index: 2;
}

.dynamic-header.header-bg-side .logo-container,
.dynamic-header.header-bg-side .site-title {
    color: white !important;
}

.dynamic-header.header-bg-side .menu-container a,
.dynamic-header.header-bg-side .menu-item a {
    color: #374151 !important;
}

/* Clean Style - Minimal blur, temiz */
.header-bg-clean {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
}

.header-bg-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1;
}

.dynamic-header.header-bg-clean .logo-container,
.dynamic-header.header-bg-clean .site-title,
.dynamic-header.header-bg-clean .menu-container a,
.dynamic-header.header-bg-clean .mobile-menu-toggle,
.dynamic-header.header-bg-clean .menu-item a {
    position: relative;
    z-index: 2;
    color: #374151 !important;
}

.header-bg-clean .logo img {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-bg-hero::before,
    .header-bg-soft::before,
    .header-bg-side::before,
    .header-bg-clean::before {
        opacity: 0.9;
    }
    
    .header-bg-side::before {
        background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(255,255,255,0.8) 50%);
    }
}

/* Hover effects */
.header-bg-hero .menu-item:hover,
.header-bg-soft .menu-item:hover,
.header-bg-side .menu-item:hover,
.header-bg-clean .menu-item:hover {
    background: rgba(255,255,255,0.1) !important;
    border-radius: 6px;
    transition: all 0.3s ease;
}

/* Logo hover effects */
.header-bg-hero .logo:hover,
.header-bg-soft .logo:hover,
.header-bg-side .logo:hover,
.header-bg-clean .logo:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}
