﻿/* --- Preloader Logo Animasyonu --- */
.logo-preloader {
    animation: pulse-animation 1.5s infinite ease-in-out;
    max-width: 250px;
}

@keyframes pulse-animation {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.8;
    }
}

/* --- Mobil Topbar Metin Ayarı --- */
@media (max-width: 575px) {
    .header-top-notice p {
        font-size: 13px !important;
        margin-bottom: 0;
    }
}

/* --- Sosyal Medya Listesi Genel Yapısı --- */
.tp-social-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tp-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: #ffffff !important;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .tp-social-icon:hover {
        background-color: #ffffff;
        color: #a68153 !important;
        border-color: #ffffff;
        transform: translateY(-2px);
    }

/* --- Çerez (Cookie) Uyarı Kutusu --- */
.cookie-modern-box {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.cookie-icon {
    font-size: 30px;
    margin-right: 15px;
}

.cookie-text h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 18px;
}

.cookie-text p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-text a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-cookie {
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-cookie.primary {
        background-color: #28a745;
        color: white;
    }

        .btn-cookie.primary:hover {
            background-color: #218838;
            transform: translateY(-2px);
        }

    .btn-cookie.secondary {
        background-color: #f8f9fa;
        color: #555;
        border: 1px solid #ddd;
    }

        .btn-cookie.secondary:hover {
            background-color: #e2e6ea;
        }
