/* Footer için Özel CSS */

/* Temel Değişkenler */
:root {
    --footer-bg: #1A1A2E;
    --footer-bg-light: #232342;
    --footer-text: #E6E6E6;
    --footer-text-muted: #A0A0A0;
    --footer-accent: #5E60CE;
    --footer-accent-hover: #818CF8;
    --footer-border: rgba(255, 255, 255, 0.1);
    --footer-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    --footer-transition: all 0.3s ease;
    --footer-border-radius: 8px;
}

/* Footer Ana Stili */
.site-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    position: relative;
    box-shadow: var(--footer-shadow);
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--footer-accent), #FF5E78);
}

/* Footer Üst Kısmı */
.footer-top {
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background-color: var(--footer-border);
}

/* Footer Container */
.site-footer .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Footer Satırı */
.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
}

/* Footer Sütunları */
.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col:first-child {
    flex: 1.5;
}

/* Footer Marka Alanı */
.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
    transition: var(--footer-transition);
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-desc {
    color: var(--footer-text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Footer Başlıkları */
.footer-title {
    position: relative;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--footer-text);
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--footer-accent);
    border-radius: 3px;
}

/* Footer Linkleri */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link {
    margin-bottom: 0.85rem;
}

.footer-link a {
    color: var(--footer-text-muted);
    text-decoration: none;
    transition: var(--footer-transition);
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-link a i {
    margin-right: 0.75rem;
    font-size: 0.85rem;
    color: var(--footer-accent);
    transition: var(--footer-transition);
}

.footer-link a:hover {
    color: var(--footer-text);
    transform: translateX(5px);
}

.footer-link a:hover i {
    color: var(--footer-accent-hover);
}

/* İletişim Linkleri */
.contact-links .footer-link a i {
    width: 20px;
    text-align: center;
    margin-right: 1rem;
}

/* Sosyal Medya İkonları */
.footer-social {
    display: flex;
    gap: 0.85rem;
    margin-top: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--footer-text);
    border-radius: 50%;
    transition: var(--footer-transition);
    text-decoration: none;
    font-size: 1rem;
}

.social-icon:hover {
    background-color: var(--footer-accent);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(94, 96, 206, 0.3);
}

/* Bülten Aboneliği */
.footer-newsletter {
    margin-top: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-input {
    padding: 0.85rem 1rem;
    border: 1px solid var(--footer-border);
    border-radius: var(--footer-border-radius);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--footer-text);
    font-size: 0.9rem;
    transition: var(--footer-transition);
    width: 100%;
}

.footer-input:focus {
    outline: none;
    border-color: var(--footer-accent);
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-btn {
    padding: 0.85rem 1.5rem;
    background-color: var(--footer-accent);
    color: white;
    border: none;
    border-radius: var(--footer-border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--footer-transition);
    width: 100%;
    font-size: 0.95rem;
}

.footer-btn:hover {
    background-color: var(--footer-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(94, 96, 206, 0.3);
}

/* Footer Alt Kısmı */
.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    color: var(--footer-text-muted);
    font-size: 0.9rem;
}

.footer-bottom .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.copyright, .brand-link {
    margin: 0;
}

.brand-link a {
    color: var(--footer-accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--footer-transition);
}

.brand-link a:hover {
    color: var(--footer-accent-hover);
    text-decoration: underline;
}

/* Responsive Ayarlar */
@media (max-width: 992px) {
    .footer-col:first-child {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-row {
        gap: 2rem;
    }
    
    .footer-col {
        min-width: 45%;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-row {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-col {
        width: 100%;
    }
    
    .footer-title {
        margin-bottom: 1.25rem;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Animasyon Efektleri */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-col {
    animation: fadeInUp 0.5s ease forwards;
}

.footer-col:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-col:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-col:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-col:nth-child(4) {
    animation-delay: 0.4s;
}

/* Yardımcı Sınıflar */
.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.gap-1 {
    gap: 0.5rem;
}

.gap-2 {
    gap: 1rem;
}

.gap-3 {
    gap: 1.5rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.text-center {
    text-align: center;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.w-100 {
    width: 100%;
} 