/* Elegant theme — Footer
   Daha onceden _Footer/Default.cshtml icindeki inline <style> blogundan
   tasinmistir. CSS degiskenleri (--bg-header, --bg-button, --color-header-hover)
   _ThemeCss.cshtml tarafindan runtime'da uretilir. */

/* Ana Footer */
/* Kontrast: WCAG AA 4.5:1 - rgba alpha 0.5 -> 3.5:1 (FAIL).
   0.78+ alpha ile dark navy uzerinde 5.0:1+ saglanir. */
.site-footer {
    background-color: var(--bg-footer);
    color: rgba(255, 255, 255, 0.78);
}

/* Ust Bolum */
.site-footer__main {
    padding: 80px 0 60px;
}

/* Logo */
.site-footer__logo-img {
    height: 60px;
    width: auto;
}

/* Aciklama */
.site-footer__desc {
    font-size: .875rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
    max-width: 340px;
    margin-bottom: 1.5rem;
}

/* Sosyal Butonlar */
.site-footer__social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: border-color .2s, color .2s;
}

.site-footer__social-btn:hover {
    border-color: var(--bg-button);
    color: var(--bg-button);
}

/* Menu Basliklari
   h6 yerine h2 kullaniliyor (heading order — sayfada h1 -> h2 hierarchy).
   Gorsel boyut buradan kontrol edildigi icin semantic upgrade gorunumu degistirmez. */
.site-footer__nav-title {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

/* Menu Linkleri */
.site-footer__nav-link {
    font-size: .875rem;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color .2s;
}

    .site-footer__nav-link:hover {
        color: var(--color-footer-link-hover);
    }

/* Iletisim Ikon Rengi */
.site-footer__contact-icon {
    color: var(--color-footer-link);
}

/* Iletisim Metin */
.site-footer__contact-text {
    font-size: .875rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}

/* Iletisim alani uzerindeki kucuk etiket — "Rezervasyon Numarasi",
   "Telefon" gibi acik anlam veren basliklar. Numaranin ne icin oldugu
   kullaniciya net olsun. */
.site-footer__contact-label {
    font-size: .7rem;
    letter-spacing: .06em;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
    margin-bottom: 2px;
}

/* Alt Bar */
.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
}

/* Copyright Yazisi */
.site-footer__copy {
    font-size: .8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Alt Bar Linkleri */
.site-footer__bottom-link {
    font-size: .8rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color .2s;
}

    .site-footer__bottom-link:hover {
        color: var(--color-footer-link-hover);
    }
