/* ========================================
   Butcher's Universe - Global Stylesheet
   (mobile-first; desktop overrides @ min-width: 992px)
   ======================================== */

@import url('index.css');
@import url('menu.css');
@import url('faq.css');

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #847c7c;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   Header (mobile)
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background-color: #fff;
    box-shadow: 0 4px 21px rgba(0, 0, 0, 0.09);
    z-index: 1000;
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 32px;
    width: auto;
}

.nav {
    display: flex;
    gap: 12px;
}

.nav-link {
    font-size: 13px;
    font-weight: 700;
    color: #1c1c1c;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #c41e3a;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 68px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline {
    border: 5px solid #fff;
    background: transparent;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #1c1c1c;
}

/* ========================================
   Footer (mobile)
   ======================================== */
.footer {
    background-color: #131212;
    width: 100%;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.footer-left,
.footer-center,
.footer-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.faq-link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.faq-icon {
    width: 117px;
    height: 51px;
}

.faq-link span {
    font-size: 24px;
    font-weight: 700;
}

.footer-contact {
    font-size: 16px;
    font-weight: 400;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact a {
    text-decoration: underline;
}

.footer-address {
    max-width: 100%;
}

.footer-center img {
    width: 153px;
    height: auto;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 24px;
    height: 24px;
    color: #fff;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.7;
}

.footer-bottom {
    background-color: #1c1c1c;
    text-align: center;
    padding: 8px 0;
    font-size: 12px;
    color: #999;
}

/* ========================================
   Desktop Overrides (≥ 992px)
   ======================================== */
@media (min-width: 992px) {
    .header-container {
        padding: 0 25px;
    }

    .logo img {
        height: 38px;
    }

    .nav {
        gap: 33px;
    }

    .nav-link {
        font-size: 18px;
    }

    .btn {
        padding: 18px 40px;
        font-size: 18px;
    }

    .footer-container {
        padding: 63px 84px 40px;
        flex-direction: row;
        gap: 0;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
    }

    .footer-left {
        flex: 1;
        align-items: flex-start;
        text-align: left;
    }

    .footer-left .faq-link {
        justify-content: flex-start;
    }

    .footer-center {
        flex: 1;
    }

    .footer-right {
        flex: 1;
        align-items: flex-end;
        padding-top: 65px;
    }

    .footer-address {
        max-width: 287px;
    }
}
