/* --- Footer Component --- */

/* Main container for the entire footer */
.footer {
    padding: 50px 0;
    background-color: #0a3148;
    color: #f4f4f4; /* Default text color for the footer */
    font-family: 'Montserrat', sans-serif; /* Explicitly set font */
}

/* Inner container for layout control */
.footer__container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Generic styles for a section within the footer */
.footer__section {
    /* No general styles needed here, specific sections will have their own */
}

/* Logo image styling */
.footer__logo {
    height: 100px;
    margin-bottom: 15px;
}

/* Description text under the logo */
.footer__description {
    font-size: 13px;
    line-height: 1.6;
    color: #f4f4f4;
    margin: 0;
}

/* Titles for each footer section (e.g., 'Navegación', 'Contacto') */
.footer__title {
    font-family: 'Chunkfive', serif; /* Explicitly set font */
    font-size: 18px;
    font-weight: normal; /* Override any browser default bolding on h5 */
    color: #fabd49;
    margin: 0 0 20px 0;
}

/* Unordered list in the navigation section */
.footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Links within the navigation list */
.footer__link {
    display: block;
    margin-bottom: 8px;
    color: #f4f4f4;
    text-decoration: none;
    font-size: 14px;
    font-weight: normal;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: #fabd49; /* Highlight on hover */
}

/* Contact information text */
.footer__contact-info {
    font-size: 15px;
    color: #f4f4f4;
    margin: 0 0 8px 0;
}