/* footer.css */

.site-footer {
    background-color: #111; /* Dark professional background */
    color: #fff;
    padding: 50px 0 20px 0;
    font-family: 'Trip Sans', sans-serif;
    width: 100%;
    box-sizing: border-box;
}

.footer-container {
    display: flex;
    justify-content: space-between; /* Spreads the 4 sections out */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap; /* Stacks columns on mobile */
}

.footer-section {
    flex: 1; /* Gives each section equal width */
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #f4f4f4;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fff; /* Light up on hover */
}

/* Social Media Section Specifics */
.social-icon {
    width: 28px;  /* Control icon size here */
    height: 28px;
    transition: transform 0.2s ease;
}

.social-icon:hover {
    transform: scale(1.1); /* Slight pop when hovering icons */
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 10px;
    color: #666;
    font-size: 13px;
}

.footer-section:last-child ul {
    display: flex;
    gap: 15px;
}

#footer-placeholder {
    width: 100%;
}