/* =====================================================
   FOOTER BASE
===================================================== */

.site-footer {

    margin-top: 60px;

    background:
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
        url("/assets/images/bg-wood.webp") center no-repeat;

    background-size: 110% auto;

    border-top: 2px solid #caa85a;

    padding: 28px 40px;
    color: #d2b48c;
}


/* =====================================================
   INNER LAYOUT
===================================================== */

.footer-inner {

    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;

    gap: 40px;
}


/* =====================================================
   COLUMNS
===================================================== */

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-center {
    align-items: center;
}

.footer-right {
    align-items: flex-end;
}


/* =====================================================
   ICON LINE
===================================================== */

.footer-line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.footer-icon {
    width: 18px;
    height: 18px;
    fill: #d2b48c;

    filter:
        drop-shadow(0 1px 0 #000)
        drop-shadow(0 2px 3px rgba(0,0,0,0.8));

    flex-shrink: 0;
}


/* =====================================================
   LINKS
===================================================== */

.footer-link {
    color: #d2b48c;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.footer-link:hover {
    opacity: 0.8;
}


/* =====================================================
   COPYRIGHT + LOGO
===================================================== */

.footer-copy {
    font-size: 13px;
    opacity: 0.85;
    text-align: right;
}

.footer-logo {
    width: 48px;
    height: auto;

    margin-top: 6px;

    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.6));
}


/* =====================================================
   POWERED BY
===================================================== */

.powered-by {
    font-size: 12px;
    margin-top: 6px;
    opacity: 0.75;
}

.powered-by a {
    color: #d2b48c;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.powered-by a:hover {
    opacity: 1;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 18px;
    }

    .footer-col,
    .footer-right,
    .footer-center {
        align-items: center;
    }

    .footer-copy {
        text-align: center;
    }
}


/* =========================
   SOCIAL MEDIA FOOTER
========================= */

.footer-social {
    margin-top: 15px;
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #112c27;
    color: #d2b48c;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s ease;
}

.social-icon:hover {
    background: #163a34;
    transform: translateY(-2px);
}