/* --- FOOTER STYLES --- */
.main-footer {
    padding: 40px 0;
    text-align: center;
    width: 100%;
}
.footer-logo {
    height: 35px;
    margin-bottom: 1rem;
    animation: float-animation 3s ease-in-out infinite;
}
.footer-credit {
    font-size: 0.85rem;
    margin-top: 1.5rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.6); /* Adjusted color for visibility */
}

@keyframes float-animation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* --- FOOTER SOCIAL ICONS --- */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: transparent;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-icon:hover {
    background-color: var(--accent-purple);
    color: #fff;
    border-color: var(--accent-purple);
    transform: translateY(-5px);
}

/* --- CUSTOM BOOTSTRAP TOOLTIP STYLE --- */
.tooltip .tooltip-inner {
    background-color: #000;
    color: #fff;
    padding: 6px 12px;
    border-radius: 0.3rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
}
.tooltip .tooltip-arrow::before {
    border-top-color: #000;
}

/* On mobile, the footer credit needs a different color on the cream background */
@media (max-width: 768px) {
    .main-footer {
        padding-bottom: 20px; /* Less padding on mobile */
    }
}

/*
 * STYLES FOR FOOTER POLICY LINKS
*/
.footer-links {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Space sa pagitan ng links */
    flex-wrap: wrap; /* Para responsive sa maliliit na screen */
}

.footer-links a {
    color: var(--dim-gray); /* Ginamit natin ang existing color mo */
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 10px;
}

.footer-links a:hover {
    color: var(--text-light); /* Magliliwanag kapag tinapat ang mouse */
    text-decoration: underline;
}

/* Vertical line separator */
.footer-links .separator {
    color: var(--dim-gray);
    font-size: 0.9em;
}

/* Itatago natin ang separator sa maliliit na screen kung saan nagbabalot ang mga link */
@media (max-width: 480px) {
    .footer-links .separator {
        display: none;
    }
}