/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

/* :root {
    --primary-orange: #d4593a;
    --dark-bg: #0a0a0a;
    --white: #ffffff;
} */

/* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
} */

/* section { outline: 2px solid lime; }
footer { outline: 2px solid red; }
main { outline: 2px solid blue; } */

.footer-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    color: white
}

.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    /* padding: 3rem 0 1rem; */
    font-family: "Inter", sans-serif;
    margin-top: 0;
}

.footer .container {
    max-width: 1200px;
    padding: 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 75px;
    /* adjust: 60–90 */
    align-items: start;
}

.footer-column {
    text-align: left;
    min-width: 0;
}

/* Headings */
.footer-column h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

/* Footer column titles */
.footer-column h4 {
    font-family: "Oswald", sans-serif;
    /* or your site font */
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    /* THIS is key */
    letter-spacing: 0.1px;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: none;
}

/* Logo */
.footer-logo {
    font-family: "Oswald", sans-serif;
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: none;
    text-align: left;
}

/* Text and links */
.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--white);
    opacity: 0.95;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 5px;
}

.footer-column a {
    color: #ffffff;
    opacity: 0.9;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-column a:hover {
    color: var(--primary-orange);
}

/* Follow Us column */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-bottom {
    text-align: center;
    /* margin-top: 2.5rem; */
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    color: #bdbdbd;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

#footer-phone-number,
#footer-email {
    white-space: nowrap;
}