/* ============================================================
   YZ Restaurant Footer — v36 Mobile-First Redesign
   - Desktop: 3 sütun (5+4+3)
   - Tablet:  3 sütun (6+6+12)
   - Mobile:  Brand merkez + 2 sütun grid (İletişim | Yasal)
   - Sticky cart (cart-button-container) ile bottom çakışma yok
============================================================ */
.site-footer {
    background: linear-gradient(180deg, #1a1410 0%, #261b13 100%);
    color: rgba(255, 244, 230, 0.7);
    padding: 50px 0 0;
    margin-top: 60px;
    margin-bottom: 70px; /* sticky cart için boşluk */
    font-size: 0.875rem;
    line-height: 1.6;
    border-top: 1px solid rgba(232, 199, 102, 0.18);
}

/* Brand title */
.site-footer .footer-title {
    color: #fff4e6;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}
.site-footer .footer-tagline {
    color: rgba(255, 244, 230, 0.55);
    font-style: italic;
    font-size: 0.8125rem;
    margin-bottom: 12px;
}
.site-footer .footer-address {
    color: rgba(255, 244, 230, 0.75);
    font-size: 0.8125rem;
    line-height: 1.5;
    margin-bottom: 14px;
}
.site-footer .footer-address i {
    color: #F2D58F;
}

/* Section headings */
.site-footer .footer-heading {
    color: #fff4e6;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(232, 199, 102, 0.4);
    position: relative;
}
.site-footer .footer-heading::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, #F2D58F 0%, #C9A847 100%);
}

/* Link list */
.site-footer .footer-links { list-style: none; padding: 0; margin: 0; }
.site-footer .footer-links li { margin-bottom: 10px; }
.site-footer .footer-links a {
    color: rgba(255, 244, 230, 0.72);
    text-decoration: none;
    font-size: 13.5px;
    transition: all 180ms ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height: 1.4;
}
.site-footer .footer-links a:hover { color: #fff4e6; transform: translateX(3px); }
.site-footer .footer-links a i {
    color: #F2D58F;
    width: 18px;
    text-align: center;
    opacity: 0.9;
    flex-shrink: 0;
}
.site-footer .footer-links a:hover i { opacity: 1; color: #ffa372; }

/* Social links — büyük, dokunulabilir */
.site-footer .social-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.site-footer .social-links a {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(232, 199, 102, 0.15);
    color: #fff4e6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.0625rem;
    transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(232, 199, 102, 0.28);
}
.site-footer .social-links a:hover {
    background: linear-gradient(135deg, #E8C766 0%, #8a6d2e 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(232, 199, 102, 0.45);
    border-color: rgba(232, 199, 102, 0.6);
}

/* ====== TRIPADVISOR — PNG icon (custom) ====== */
.site-footer .social-links a.social-tripadvisor {
    /* Diğer ikonlarla AYNI zemin (şeffaf altın) */
    padding: 0;
    overflow: hidden;
}
.site-footer .social-links a.social-tripadvisor img {
    display: block;
    width: 22px;
    height: 22px;
    object-fit: contain;
    /* PNG ne renk olursa olsun BEYAZ yap (diğer ikonlarla uyumlu) */
    opacity: 0.95;
    transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
}
.site-footer .social-links a.social-tripadvisor:hover {
    background: linear-gradient(135deg, #E8C766 0%, #8a6d2e 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(232, 199, 102, 0.45);
    border-color: rgba(232, 199, 102, 0.6);
}
.site-footer .social-links a.social-tripadvisor:hover img {
    opacity: 1;
    transform: scale(1.1);
}

/* Footer bottom */
.site-footer .footer-bottom {
    margin-top: 40px;
    padding: 20px 0 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 244, 230, 0.5);
    font-size: 0.75rem;
}
.site-footer .footer-bottom .powered { color: rgba(255, 244, 230, 0.5); }
.site-footer .footer-bottom .powered a {
    color: rgba(255, 244, 230, 0.75);
    text-decoration: none;
    transition: color 180ms ease;
}
.site-footer .footer-bottom .powered a:hover { color: #F2D58F; }

/* ====================================================
   MOBILE-FIRST OVERRIDES (≤768px)
   - Brand sütunu merkez, sticker görünüm
   - İletişim + Yasal yan yana 2 sütun grid
   - Daha büyük tappable area
==================================================== */
@media (max-width: 768px) {
    .site-footer {
        padding-top: 30px;
        margin-top: 30px;
        margin-bottom: 80px; /* sticky cart bar için ek boşluk */
        text-align: center;
    }

    /* Brand sütunu merkez */
    .site-footer .col-lg-5,
    .site-footer .col-lg-4,
    .site-footer .col-lg-3 {
        text-align: center;
    }

    .site-footer .footer-title {
        font-size: 1.5rem;
        background: linear-gradient(135deg, #fff4e6 0%, #F2D58F 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 4px;
    }
    .site-footer .footer-tagline {
        font-size: 0.8125rem;
        margin-bottom: 14px;
    }
    .site-footer .footer-address {
        font-size: 0.8125rem;
        text-align: center;
        margin-bottom: 16px;
        padding: 0 12px;
    }

    /* Sosyal linkler merkez ve daha belirgin */
    .site-footer .social-links {
        justify-content: center;
        margin-bottom: 28px;
        gap: 12px;
    }
    .site-footer .social-links a {
        width: 46px;
        height: 46px;
        font-size: 1.1875rem;
    }

    /* İletişim + Yasal — 2 sütun grid */
    .site-footer .row.gy-4 {
        --bs-gutter-y: 0;
    }
    .site-footer .col-lg-4.col-md-6,
    .site-footer .col-lg-3.col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
        text-align: left;
        padding: 0 12px;
        margin-bottom: 16px;
    }

    /* Heading mobile */
    .site-footer .footer-heading {
        font-size: 0.75rem;
        margin-bottom: 10px;
        padding-bottom: 6px;
    }
    .site-footer .footer-links li {
        margin-bottom: 12px;
    }
    .site-footer .footer-links a {
        font-size: 12.5px;
        line-height: 1.35;
    }
    .site-footer .footer-links a i {
        width: 16px;
        font-size: 0.75rem;
    }

    /* Footer bottom — merkez stack */
    .site-footer .footer-bottom {
        text-align: center;
        margin-top: 24px;
        padding: 16px 0;
        font-size: 11.5px;
    }
    .site-footer .footer-bottom .col-md-6 {
        margin-bottom: 8px;
    }
    .site-footer .footer-bottom .col-md-6:last-child {
        margin-bottom: 0;
    }
    .site-footer .footer-bottom .powered {
        font-size: 0.6875rem;
    }
}

/* Çok küçük ekranlar (≤380px) — extra fix */
@media (max-width: 380px) {
    .site-footer .col-lg-4.col-md-6,
    .site-footer .col-lg-3.col-md-6 {
        padding: 0 8px;
    }
    .site-footer .footer-links a {
        font-size: 11.5px;
    }
    .site-footer .footer-heading {
        font-size: 0.6875rem;
        letter-spacing: 0.5px;
    }
}
