/* Footer Styles */
.footer {
    background-color: var(--light_gray);
    color: var(--black);
    padding: 60px 0 30px;
}

/* Main footer content with columns */
.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* First column with logo and description */
.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-description p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--black);
    font-weight: 300;
    margin: 0;
}

/* Column titles */
.footer-title {
    color: var(--black);
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 20px 0;
}

/* Link lists */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--dark_gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--black);
    text-decoration: underline;
}

/* Social media icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--dark_gray);
    color: var(--light_gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--blue);
    color: var(--white);
}

.social-icon .material-symbols-outlined {
    font-size: 20px;
}

/* Copyright section */
.footer-bottom {
    border-top: 1px solid var(--dark_gray);
    padding-top: 20px;
    text-align: left;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--black);
    margin: 0;
    font-weight: 300;
}
