@import "./global.css";
#footer-placeholder {
    width: 100%;
}

/* Footer */
.site-footer {
    background: #2f2f2f;
    color: #fff;
    width: 100%;
    font-family: 'Poppins', Arial, sans-serif;
}

/* Main footer layout */
.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3.5rem 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

/* Columns */
.footer-col {
    flex: 1 1 220px;
}

.footer-brand {
    flex: 2 1 420px;
}

/* Logo */
.footer-logo {
    width: 60px;
    margin-bottom: 1rem;
}

/* Brand text */
.footer-brand-text {
    color: #f39c12;
    line-height: 1.6;
    font-size: 1rem;
}

.footer-brand-text span {
    color: #ffd27d;
    font-weight: 600;
}

/* Business info */
.footer-business h4 {
    color: #f39c12;
    margin: 1.4rem 0 0.5rem;
}

.footer-business p {
    line-height: 1.6;
}

/* Titles */
.footer-col h4 {
    color: #f39c12;
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
}

/* Links */
.footer-col a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.footer-col a:hover {
    color: #f39c12;
}

/* Contact */
.footer-contact p {
    margin: 0.4rem 0;
    font-size: 0.95rem;
}

.footer-contact i {
    color: #f39c12;
    margin-right: 0.6rem;
}

/* Social */
.follow-title {
    margin-top: 1.2rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #e74c3c;
    color: #fff;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: #fff;
    color: #e74c3c;
}

/* Bottom strip */
.footer-bottom {
    border-top: 1px solid #555;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #f39c12;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}
