/* ========================================
   DYNAMIC FOOTER STYLES
   ======================================== */

/* Footer CSS - Body ayarları style.css'de mevcut */

/* Footer Ana Container */
.footer-container {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    clear: both;
}

/* Footer Arka Plan Efekti */
.footer-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

/* Footer İçerik */
.footer-content {
    position: relative;
    z-index: 2;
}

/* Footer Başlıkları */
.footer-title {
    font-family: 'Tinos', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #3498db;
    border-radius: 1px;
}

/* Footer Linkleri */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: #3498db;
    transform: translateX(3px);
}

.footer-links a i {
    font-size: 0.9rem;
    width: 14px;
    text-align: center;
    color: #bdc3c7;
}

/* İletişim Bilgileri */
.footer-contact {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.footer-contact-text {
    flex: 1;
}

.footer-contact-label {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.footer-contact-value {
    color: #ecf0f1;
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-contact-value a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-value a:hover {
    color: #2980b9;
}

/* Sosyal Medya */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.footer-social-link:hover {
    background: #3498db;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
    border-color: #2980b9;
}

/* Platform Spesifik Renkler */
.footer-social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.3);
}

.footer-social-link.linkedin:hover {
    background: #0077b5;
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.3);
}

.footer-social-link.twitter:hover {
    background: #1da1f2;
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.3);
}

.footer-social-link.facebook:hover {
    background: #4267b2;
    box-shadow: 0 8px 25px rgba(66, 103, 178, 0.3);
}

.footer-social-link.whatsapp:hover {
    background: #25d366;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* Hızlı Linkler */
.footer-quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

/* Çalışma Saatleri */
.footer-hours {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
}

.footer-hours-item:last-child {
    border-bottom: none;
}

.footer-hours-day {
    color: #bdc3c7;
    font-weight: 500;
}

.footer-hours-time {
    color: #ecf0f1;
    font-weight: 600;
}

.footer-hours-time.closed {
    color: #3498db;
    font-weight: 600;
}

/* Footer Alt */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #95a5a6;
    font-size: 0.9rem;
    margin: 0;
}

.footer-credits {
    color: #7f8c8d;
    font-size: 0.8rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-credits a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credits a:hover {
    color: #2980b9;
}

.footer-credits::before {
    content: '|';
    color: #7f8c8d;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .footer-container {
        padding: 2rem 0 1rem;
    }
    
    .footer-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .footer-contact {
        padding: 1rem;
    }
    
    .footer-contact-item {
        padding: 0.5rem;
        gap: 0.75rem;
    }
    
    .footer-contact-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .footer-quick-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .footer-container {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .footer-contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-social {
        gap: 0.75rem;
    }
    
    .footer-social-link {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-content > div {
    animation: fadeInUp 0.6s ease-out;
}

.footer-content > div:nth-child(1) { animation-delay: 0.1s; }
.footer-content > div:nth-child(2) { animation-delay: 0.2s; }
.footer-content > div:nth-child(3) { animation-delay: 0.3s; }
.footer-content > div:nth-child(4) { animation-delay: 0.4s; }

/* Hover Efektleri */
.footer-container:hover .footer-title::after {
    width: 80px;
    transition: width 0.3s ease;
}

/* Scroll Animasyonu */
.footer-container {
    opacity: 1;
    transform: none;
    transition: none;
}

.footer-container.visible {
    opacity: 1;
    transform: none;
}

/* Cache cleared: 2025-09-22 13:27:38 */
/* Cache cleared: 2025-09-22 13:28:41 */
/* Cache cleared: 2025-09-22 13:29:48 */
/* Cache cleared: 2025-09-22 13:29:50 */