/* General Body Styling */
body {
    margin: 0;
    padding: 0;
    font-family: var(--prata-font);
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, #f5f5dc 0%, #e8f5e9 100%);
    padding: 20px 0;
    /* Force footer text colors to override utility classes like .text-light/.text-dark */
    color: #2c3e50 !important;
}

/* Footer Navigation */
.footer-nav {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

/* Logo Styling */
.footer-logo {
    font-size: 28px;
    font-weight: 600;
}

.footer-section .premier-text {
    color: #2ecc71 !important;
    font-weight: 700;
}

.footer-section .mall-text {
    color: #2c3e50 !important;
    font-weight: 400;
}

/* Navigation Menu */
.footer-menu {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-section .footer-menu .nav-link {
    color: #2c3e50 !important;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 0;
}

.footer-menu .nav-link:hover {
    color: #2ecc71;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-section .social-link {
    color: #2c3e50 !important;
    font-size: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    color: #2ecc71;
    transform: translateY(-3px);
}

/* Footer Bottom Section */
.footer-bottom {
    padding-top: 20px !important;
}

.footer-section .copyright-text {
    color: #7f8c8d !important;
    font-size: 14px;
}

.footer-section .footer-link {
    color: #7f8c8d !important;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #2ecc71;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-logo {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-menu {
        justify-content: center;
        margin-bottom: 20px;
    }

    .social-icons {
        justify-content: center;
        margin-bottom: 20px;
    }

    .footer-bottom .col-md-6 {
        text-align: center !important;
        margin-bottom: 10px;
    }

    .footer-link {
        display: inline-block;
    }
}