﻿/* Ana Footer Kapsayıcısı */
.site-footer {
    background: linear-gradient(135deg, #3b5f44 20%, #385b40 35%, #34563c 70%, #2f4d36 40%);
    color: #f7f5f0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    padding: 55px 24px 20px 24px;
}

/* 4 Kolonlu Grid Düzeni */
.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.3fr 1.1fr;
    gap: 40px;
}


/* Sol Kolon - Logo & Marka */
.branding-col {
    text-align: center;
}

.logo-wrapper {
    margin-bottom: 14px;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    background-color: #e5dcc7; /* Sitenin açık krem tonu */
    border-radius: 50%; /* Tam yuvarlak çerçeve */
    border: 1px solid rgba(229, 220, 199, 0.5); /* Hafif altın/bej kenarlık */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    filter: none !important; /* Tüm bozan filtreleri iptal eder */
}

/* Footer içerisindeki video kutusu ve sarmalayıcı */
.footer-col.branding-col .logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo-video {
    width: 140px; /* Footer'daki eski logo genişliğiyle uyumlu boyut */
    height: 140px;
    border-radius: 50%; /* Tam yuvarlak çerçeve (isterseniz 20px yapıp yumuşak köşeli de yapabilirsiniz) */
    object-fit: cover;
    display: block;
    border: 1px solid rgba(229, 220, 199, 0.4); /* Zarif krem/altın tonunda kenarlık */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.brand-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: #e5dcc7;
}

.brand-subtitle {
    font-size: 13px;
    color: #d6e0db;
    margin: 0;
}

/* Başlıklar (HIZLI BAĞLANTI, ÇALIŞMA ALANLARI, vb.) */
.footer-heading {
    color: #e5dcc7; /* Görseldeki zarif krem/altın tonu */
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-top: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Liste Bağlantıları */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        position: relative;
        padding-left: 14px;
        margin-bottom: 10px;
        font-size: 13.5px;
        line-height: 1.45;
    }

        /* Görseldeki nokta/bullet detayı */
        .footer-links li::before {
 
            position: absolute;
            left: 0;
            color: #e5dcc7;
            font-size: 14px;
        }

    .footer-links a {
        color: #ffffff;
        text-decoration: none;
        transition: opacity 0.2s ease, color 0.2s ease;
    }

        .footer-links a:hover {
            color: #e5dcc7;
            opacity: 0.85;
        }

/* İletişim Kolonuna Özel Stiller */
.contact-label {
    display: block;
    font-size: 13px;
    color: #ffffff;
    margin-bottom: 3px;
}

.contact-value {
    display: block;
    color: #ffffff !important;
    font-size: 13.5px;
    word-break: break-all;
}

/* Sosyal Medya İkonları */
.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 18px;
    padding-left: 14px;
}

    .social-icons a {
        color: #ffffff;
        transition: transform 0.2s ease, color 0.2s ease;
    }

        .social-icons a:hover {
            color: #e5dcc7;
            transform: translateY(-2px);
        }

/* En Alt Çizgi & Telif Alanı */
.footer-bottom {
    max-width: 1240px;
    margin: 45px auto 0 auto;
    padding-top: 18px;
    border-top: 1px solid rgba(229, 220, 199, 0.25);
    text-align: center;
}

    .footer-bottom p {
        margin: 0;
        font-size: 12.5px;
        color: #ffffff;
        letter-spacing: 0.3px;
    }

    .footer-bottom a {
        color: #ffffff;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .footer-bottom a:hover {
            color: #e5dcc7;
        }

.divider {
    margin: 0 6px;
    color: rgba(229, 220, 199, 0.4);
}

/* Mobil ve Tablet Uyumluluğu (Responsive) */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .branding-col {
        text-align: left;
    }

    .social-icons {
        padding-left: 0;
    }
}


@media (max-width: 576px) {
    /* Başlıkları tıklanabilir birer ok simgeli akordeon başlığına dönüştürüyoruz */
    .site-footer .footer-heading {
        position: relative;
        cursor: pointer;
        padding-right: 25px;
        user-select: none;
        border-bottom: 1px solid rgba(229, 220, 199, 0.15);
        padding-bottom: 10px;
        margin-bottom: 15px;
    }

        /* Başlıkların sağ tarafına aşağı ok işareti ekliyoruz */
        .site-footer .footer-heading::after {
            content: "▾";
            position: absolute;
            right: 0;
            top: 0;
            font-size: 16px;
            transition: transform 0.3s ease;
        }

    /* Açık olduğunda oku döndür */
    .site-footer .footer-col.active .footer-heading::after {
        transform: rotate(180deg);
    }

    /* Mobilde listeleri başlangıçta gizle */
    .site-footer .footer-col .footer-links {
        display: none;
        margin-bottom: 15px;
    }

    /* Kolona 'active' sınıfı eklendiğinde listeyi aç */
    .site-footer .footer-col.active .footer-links {
        display: block;
        animation: fadeInFooter 0.3s ease;
    }
}

@keyframes fadeInFooter {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}