/* Footer Container */
.footer {
    background-color: var(--base-200);
    border-top: 1px solid var(--base-content) / 10;
    padding: 40px 0;
    color: var(--base-content);
    text-align: center;
}

/* Footer Link Item */
.footer-link-item {
    text-align: center;
}

/* Footer Link Styles */
.footer-link-item a {
    text-decoration: none;
    font-weight: 600;
    color: var(--base-content); /* Ensure links are base content color by default */
}

.footer-link-item a:hover {
    color: var(--primary-color); /* Change color on hover */
}

/* Footer Paragraph Styles */
.footer p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

/* Footer Title */
.footer-title {
    font-weight: 600;
    color: var(--base-content);
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Social Media Icons */
.footer .social-icons a {
    margin: 0 10px;
    color: var(--base-content);
}

.footer .social-icons a:hover {
    color: var(--primary-color);
}