/* Yeni Header Tasarımı - Slider Üzerine Oturan */

/* Eski header stillerini sıfırla */
header.transparent,
header .de-flex,
header .de-flex-col,
header .header-col-mid {
    display: none !important;
}

/* Yeni Header Yapısı - Slider üzerine oturan */
.new-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    width: 100% !important;
    background: transparent !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Üst Bilgi Çubuğu */
.new-topbar {
    background: rgba(26, 95, 58, 0.9) !important;
    color: white !important;
    padding: 8px 0 !important;
    font-size: 14px !important;
    backdrop-filter: blur(5px) !important;
    display: block !important;
    visibility: visible !important;
}

.new-topbar .contact-info {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
}

.new-topbar .contact-item {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
}

.new-topbar i {
    font-size: 16px !important;
    color: #ffffff !important;
}

/* Ana Header - Tamamen şeffaf */
.new-main-header {
    background: transparent !important;
    padding: 15px 0 !important;
    position: relative !important;
    display: block !important;
    visibility: visible !important;
}

.new-main-header .header-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

/* Logo */
.new-logo {
    display: flex !important;
    align-items: center !important;
}

/* Admin panelden yüklenen logo */
.new-logo-image {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
    transition: transform 0.3s ease !important;
}

.new-logo-image:hover {
    transform: scale(1.05) !important;
}

.new-logo-img {
    max-height: var(--logo-height, 60px) !important;
    max-width: var(--logo-width, 200px) !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1)) !important;
}

/* Varsayılan logo */
.new-logo-circle {
    width: 80px !important;
    height: 80px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 50% !important;
    border: 2px solid #333 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 15px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    backdrop-filter: blur(10px) !important;
}

.new-logo-title {
    font-size: 12px !important;
    font-weight: bold !important;
    color: #333 !important;
    line-height: 1 !important;
    text-align: center !important;
}

.new-logo-anchor {
    font-size: 24px !important;
    margin: 2px 0 !important;
}

.new-logo-subtitle {
    font-size: 10px !important;
    color: #333 !important;
    text-align: center !important;
    line-height: 1 !important;
}

/* Ana Menü - Şeffaf arka plan */
.new-menu-container {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 25px !important;
    padding: 10px 20px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    display: block !important;
    visibility: visible !important;
}

.new-menu-list {
    display: flex !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    gap: 20px !important;
}

.new-menu-item {
    margin: 0 !important;
}

.new-menu-link {
    color: #333 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    padding: 8px 15px !important;
    border-radius: 15px !important;
    transition: all 0.3s ease !important;
    display: block !important;
}

.new-menu-link:hover {
    background: rgba(74, 144, 164, 0.1) !important;
    color: #4a90a4 !important;
    transform: translateY(-2px) !important;
}

/* Mobil Menü Butonu */
.new-mobile-btn {
    display: none !important;
    width: 40px !important;
    height: 40px !important;
    position: relative !important;
    cursor: pointer !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50% !important;
    padding: 8px !important;
    transition: all 0.3s ease !important;
    border: 2px solid #4a90a4 !important;
}

.new-mobile-btn:hover {
    background: rgba(255, 255, 255, 1) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.new-mobile-btn::before,
.new-mobile-btn::after,
.new-mobile-btn span {
    content: '' !important;
    position: absolute !important;
    width: 20px !important;
    height: 3px !important;
    background: #4a90a4 !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
    left: 10px !important;
}

.new-mobile-btn::before {
    top: 12px !important;
}

.new-mobile-btn span {
    top: 18.5px !important;
}

.new-mobile-btn::after {
    top: 25px !important;
}

/* Slider section'ını sayfa üstünden başlat */
#section-intro {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

#content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Responsive */
@media only screen and (max-width: 768px) {
    .new-mobile-btn {
        display: block !important;
        z-index: 10001;
    }
    .new-menu-container {
        display: none !important;
    }
    .mobile-menu-panel {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        width: 100vw;
        height: 100vh;
        background: #fff;
        z-index: 10000;
        padding-top: 60px;
        transition: all 0.3s;
        overflow-y: auto;
    }
    .mobile-menu-panel.active {
        display: block;
    }
    #mobileMenuNav .new-menu-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    #mobileMenuNav .new-menu-item {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    #mobileMenuNav .new-menu-link {
        display: block !important;
        width: 100%;
        padding: 22px 24px !important;
        font-size: 1.3rem !important;
        color: #222 !important;
        background: none !important;
        border-radius: 0 !important;
        text-align: left !important;
        font-weight: 600 !important;
        transition: background 0.2s, color 0.2s;
    }
    #mobileMenuNav .new-menu-link:hover,
    #mobileMenuNav .new-menu-link:focus {
        background: #f0f0f0 !important;
        color: #22c55e !important;
    }
    
    /* Mobil logo ayarları - CSS değişkenleri ile dinamik olarak ayarlanacak */
    .new-logo-img {
        max-height: var(--logo-mobile-height, 45px) !important;
        max-width: var(--logo-mobile-width, 150px) !important;
    }
    
    .new-logo-circle {
        width: 60px !important;
        height: 60px !important;
    }
    
    .new-logo-title {
        font-size: 10px !important;
    }
    
    .new-logo-anchor {
        font-size: 18px !important;
    }
    
    .new-logo-subtitle {
        font-size: 8px !important;
    }
}

@media only screen and (max-width: 480px) {
    .new-topbar {
        padding: 5px 0 !important;
        font-size: 12px !important;
    }
    
    .new-main-header {
        padding: 10px 0 !important;
    }
} 