/* Footer styles - 85-footer.css
   - Four responsive columns with sand background
   - White copyright bar underneath
*/

.footer-top-black {
    background: #000;
    padding: 48px 0;
}

.footer-top-black .footer-widgets {
    background-color: #000;
}

.footer-widgets .footer-widget {
    margin-bottom: 1rem;
}

/* Widget titles: uppercase, white, bold, with sand-colored underline */
.footer-widgets .footer-widget-title {
    font-size: 0.95rem;
    margin-bottom: 1.1rem;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid #ffd382;
    display: inline-block;
}

/* Reset lists inside footer widgets */
.footer-widgets .menu,
.footer-widgets ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-widgets .menu li {
    margin-bottom: 0.6rem;
}

/* Links: light grey -> white on hover */
.footer-widgets .menu li a {
    color: #bfbfbf;
    text-decoration: none;
    transition: color 150ms ease;
    font-size: 0.9rem;
}

.footer-widgets .menu li a:hover,
.footer-widgets .menu li a:focus {
    color: #ffffff;
}

/* Use Font Awesome small chevrons instead of bullets */
.footer-widgets .menu li a::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f054";
    display: inline-block;
    margin-right: 0.45rem;
    color: #d9c7a6;
    font-size: 0.7rem;
    /* smaller, delicate */
    width: 0.75rem;
    text-align: center;
}

.footer-bottom-white {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 14px 0;
}

/* Middle bar with payment, delivery and social */
.footer-mid {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 28px 0;
    font-size: 0.95rem;
}

.footer-mid-item {
    white-space: nowrap;
}

.footer-mid img {
    max-height: 40px;
    display: inline-block;
}

.footer-mid .join-title {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.015em;
    margin-right: 10px;
}

.payment-label,
.delivery-label {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.015em;
}

.footer-mid .social-icon {
    color: #ffffff;
    font-size: 1.6rem;
    transition: color 150ms ease;
}

.footer-mid .social-icon:hover {
    color: #ffd382;
}

/* Spacing/gaps tweaks */
.footer-top-inner {
    padding-left: 28px;
    padding-right: 28px;
}

/* Divider line between columns and payment/delivery/social bar */
.footer-divider {
    background: rgba(255, 255, 255, 0.1);
    height: 1px;
    margin: 0;
}

/* Bootstrap gap utility fallback */
.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 1rem;
}

/* Prevent global .container/card styles from affecting footer */
.footer-no-card .container,
.footer-no-card .footer-top-inner,
.footer-no-card .footer-mid .container,
.footer-no-card .footer-bottom-white .container {
    background: transparent !important;
    border: 0 !important;
}

.footer-no-card {
    background: #000;
}

.footer-bottom-white .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border: 0px;
}

.footer-bottom-white .copyright {
    color: #666;
    font-size: 0.9rem;
}

/* Bottom menu tweaks */
.footer-bottom-white .footer-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-bottom-white .footer-menu li {
    display: inline-block;
    margin-left: 1rem;
}

/* Responsive: stack on small screens */
@media (max-width: 767.98px) {
    .footer-widgets .col-12 {
        margin-bottom: 1.5rem;
    }
}

/* Improve spacing for small viewports */
@media (max-width: 575.98px) {
    .footer-widgets .menu li a::before {
        margin-right: 0.45rem;
    }
}

/* ===================================
   FOOTER CONTACT INFO - 4th column
   =================================== */

.footer-contact-info {
    color: #ffffff;
}

/* Phone section with icon */
.footer-contact-info .contact-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-contact-info .contact-icon {
    font-size: 1.75rem;
    color: #ffd382;
}

.footer-contact-info .phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-info .phone-number:hover {
    color: #ffd382;
}

/* Contact details text */
.footer-contact-info .contact-hours,
.footer-contact-info .contact-email,
.footer-contact-info .contact-company,
.footer-contact-info .contact-address {
    font-size: 0.85rem;
    color: #bfbfbf;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.footer-contact-info .contact-email a {
    color: #bfbfbf;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-info .contact-email a:hover {
    color: #ffffff;
}

/* Contact form button */
.footer-contact-info .btn-contact-form {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 0;
}

.footer-contact-info .btn-contact-form:hover {
    background: #ffd382;
    border-color: #ffd382;
    color: #000;
}

/* Mobile responsiveness for contact section */
@media (max-width: 767.98px) {
    .footer-contact-info .phone-number {
        font-size: 1.25rem;
    }

    .footer-contact-info .contact-icon {
        font-size: 1.5rem;
    }

    .footer-contact-info .btn-contact-form {
        width: 100%;
    }
}
