/* Footer */

footer {
    background-color: var(--light-grey);
    padding: 60px 0;
    color: var(--white);
}

footer .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    /* Four columns */
    gap: 40px;
    /* Space between columns */
}

footer .footer-content .footer-logo img {
    width: 250px;
    margin-bottom: 20px;
}

footer .footer-content .footer-logo p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
}

footer .footer-content h4 {
    font-size: 20px;
    font-weight: bold;
    color: var(--orange);
    margin-bottom: 20px;
}

footer .footer-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .footer-content ul li {
    margin-bottom: 15px;
}

footer .footer-content ul li a {
    color: var(--white);
    font-size: 16px;
    transition: color 0.3s ease;
}

footer .footer-content ul li a:hover {
    color: var(--orange);
}

div p a:hover {
    color: var(--orange);
    /* Change color on hover (adjust to your preferred color) */
    /* Add underline on hover */
}

footer .footer-content .contact-details p {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--white);
}

footer .footer-content .social-links {
    display: flex;
    gap: 15px;
}

footer .footer-content .social-links a {
    color: var(--white);
    font-size: 24px;
    transition: color 0.3s ease;
}

footer .footer-content .social-links a:hover {
    color: var(--orange);
}


/* Footer Bottom */

footer .footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--white);
}

footer .footer-bottom p {
    font-size: 14px;
    color: var(--white);
    margin: 0;
}


/* Media Queries for Mobile Responsiveness */

@media (max-width: 768px) {
    footer {
        padding: 40px 0;
    }
    footer .footer-content {
        grid-template-columns: 1fr 1fr;
        /* 2 columns for tablets */
        gap: 30px;
    }
    footer .footer-content .footer-logo img {
        width: 200px;
    }
    footer .footer-content .footer-logo p {
        font-size: 14px;
    }
    footer .footer-content h4 {
        font-size: 18px;
    }
    footer .footer-content ul li a {
        font-size: 14px;
    }
    footer .footer-content .contact-details p {
        font-size: 14px;
    }
    footer .footer-content .social-links a {
        font-size: 20px;
    }
    footer .footer-bottom p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    footer .footer-content {
        grid-template-columns: 1fr;
        /* 1 column for mobile */
        gap: 20px;
    }
    footer .footer-content .footer-logo img {
        width: 180px;
    }
    footer .footer-content .footer-logo p {
        font-size: 13px;
    }
    footer .footer-content h4 {
        font-size: 16px;
    }
    footer .footer-content ul li a {
        font-size: 13px;
    }
    footer .footer-content .contact-details p {
        font-size: 13px;
    }
    footer .footer-content .social-links a {
        font-size: 18px;
    }
    footer .footer-bottom p {
        font-size: 11px;
    }
}