/*==== SLOGAN BANNER STYLES ====*/

.slogan-banner {
    position: relative;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease-out;
    
    /* Ana renkler - Bu kısmı özelleştirebilirsiniz */
    background: linear-gradient(135deg, #667eea 0%, #5a67d8 100%);
    color: #ffffff;
}

.slogan-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.slogan-text {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.slogan-icon {
    font-size: 16px;
    animation: pulse 2s infinite;
}

.slogan-action {
    flex-shrink: 0;
}

.slogan-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    color: inherit;
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.slogan-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: inherit;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slogan-close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.close-btn {
    background: none;
    border: none;
    color: inherit;
    font-size: 16px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.close-btn:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Animasyonlar */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .slogan-banner {
        padding: 10px 0;
        font-size: 13px;
    }
    
    .slogan-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .slogan-text {
        justify-content: center;
    }
    
    .slogan-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .slogan-close {
        position: absolute;
        right: 15px;
        top: 10px;
        transform: none;
    }
}

@media (max-width: 480px) {
    .slogan-text span {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .slogan-content {
        padding: 0 40px 0 15px;
    }
}

/* Banner kapatıldığında gizle */
.slogan-banner.hidden {
    display: none;
}

/*==== RENK TEMALARı - İSTEĞE GÖRE AKTİF EDİLEBİLİR ====*/

/* Kırmızı Tema */
.slogan-banner.theme-red {
    background: linear-gradient(135deg, var(--ng-danger, #e74c3c) 0%, #c0392b 100%);
    color: #ffffff;
}

/* Yeşil Tema */
.slogan-banner.theme-green {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    color: #ffffff;
}

/* Turkuaz Tema */
.slogan-banner.theme-teal {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: #ffffff;
}

/* Turuncu Tema */
.slogan-banner.theme-orange {
    background: linear-gradient(135deg, #fd7e14 0%, #e55a00 100%);
    color: #ffffff;
}

/* Mor Tema */
.slogan-banner.theme-purple {
    background: linear-gradient(135deg, #6f42c1 0%, #5a2d91 100%);
    color: #ffffff;
}

/* Koyu Tema */
.slogan-banner.theme-dark {
    background: linear-gradient(135deg, #343a40 0%, #212529 100%);
    color: #ffffff;
}

/* Açık Tema */
.slogan-banner.theme-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #495057;
}

.slogan-banner.theme-light .slogan-action {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
}

.slogan-banner.theme-light .slogan-action:hover {
    background: rgba(0, 0, 0, 0.15);
}

.slogan-banner.theme-light .slogan-close {
    background: rgba(0, 0, 0, 0.1);
}

.slogan-banner.theme-light .slogan-close:hover {
    background: rgba(0, 0, 0, 0.15);
}

/*==== ÖZEL EFEKTLER ====*/

/* Gölge efekti */
.slogan-banner.shadow-lg {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Kenarlık efekti */
.slogan-banner.with-border {
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
}

/* Animasyonlu arka plan */
.slogan-banner.animated-bg {
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
