@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

:root {
    --brand-blue: #1D4ED8; 
}

/* Custom styles for minimal link hover */
.footer-link, .legal-link, .social-text-link {
    color: #374151; /* Dark Gray text */
    transition: color 0.2s, opacity 0.2s;
    text-decoration: none; /* Ensure no default underline */
}

.footer-link:hover, .legal-link:hover, .social-text-link:hover {
    color: var(--brand-blue); /* Use brand blue on hover */
    opacity: 1; 
    text-decoration: none; /* Explicitly remove underline on hover */
}

/* Ensure the footer itself has padding and margins for layout testing */
.standalone-footer-wrapper {
    margin: 0;
}

/* Styling for the logo image */
.footer-logo {
    height: 40px; /* h-10 equivalent */
    width: auto;
    display: inline-block;
}
