/* FOOTER */
.footer {
    position: relative;
    overflow: hidden;
    color: #f5e6d3;
    min-height: 350px;
    font-family: "Poppins", sans-serif;
}

.footer-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(55, 30, 18, 0.84);
    z-index: 2;
}

.footer-inner {
    position: relative;
    z-index: 3;
    padding: 58px 8% 34px;
}

/* LOGO ALANI */
.footer-logo {
    text-align: center;
    margin-bottom: 42px;
}

.footer-logo img {
    display: block;
    margin: 0 auto 18px;
    width: 230px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.footer-logo p {
    font-size: 17px;
    color: #fff2e4;
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
}

/* İÇERİK ALANI */
.footer-content {
    max-width: 1180px;
    margin: 0 auto 38px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
    text-align: center;
    align-items: start;
}

.footer-box {
    text-align: center;
}

.footer-box h3 {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 16px;
    text-align: center;
}

.footer-box p {
    color: #f1ddc9;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
    text-align: center;
}

.footer-hours {
    line-height: 1.9;
}

/* SOSYAL MEDYA */
.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: fit-content;
    color: #f1ddc9;
    text-decoration: none;
    font-size: 17px;
    line-height: 1;
    font-weight: 700;
    transition: 0.25s ease;
}

.social-link:hover {
    color: #f0ad4e;
    transform: translateY(-3px);
}

.social-icon {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    flex-shrink: 0;
}

.social-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    display: block;
}

/* ALT KISIM */
.footer-bottom {
    max-width: 1180px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 22px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    margin: 0;
    font-weight: 400;
    text-align: center;
}

/* MOBİL */
@media (max-width: 768px) {
    .footer-inner {
        padding: 48px 25px 28px;
    }

    .footer-logo {
        margin-bottom: 34px;
    }

    .footer-logo img {
        width: 170px;
        padding: 0;
        border-radius: 0;
    }

    .footer-logo p {
        font-size: 15px;
        line-height: 1.6;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
        margin-bottom: 34px;
    }

    .footer-box {
        text-align: center;
    }

    .footer-box h3 {
        font-size: 21px;
        margin-bottom: 12px;
    }

    .footer-box p {
        font-size: 15px;
        line-height: 1.7;
    }

    .social-links {
        align-items: center;
        margin-top: 10px;
    }

    .social-link {
        width: auto;
        justify-content: center;
    }
}