
/* footer */

footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    background-image: url(/assets/images/b-pat-2.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

footer p{
    color: #B5B2B2;
}

.footer-bg-overlay{
    padding-top: 140px;
    height: 100%;
    background-color: #00000000;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    margin-left: 80px;
    margin-right: 80px;
}

.footer-content ul li{
    margin-left: 0;
}

.footer-bottom-links li{
    margin: 0;
}

.footer-column:nth-child(1){
    width: 40%;
}

.footer-column{
    width: fit-content;
}

.footer-column h3 {
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    font-size: 18px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
}

.footer-links a {
    color: #B5B2B2;
    font-weight: 400;
    font-size: 17px;
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: var(--color-secondary);
}

.social-links {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
    padding: 5px;
    border-radius: 50%;
    color: var(--color-white);
    transition: background-color var(--transition-base);
}

.social-links a:hover {
    background-color: #fff;
}

.footer-container{
    max-width: 1440px;
    margin: auto;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
}

.footer-bottom p{
    margin: 0;
    color: #B5B2B2;
}

.footer-bottom .content-container{
    display: flex;
    justify-content: center;
    width: 100%;
    margin-left: 80px;
    margin-right: 80px;
}

.footer-bottom .content-container .col{
    width: 30%;
    text-align: left;
}

.footer-links {
    list-style: none;
}

.footer-bottom-links{
    display: flex;
    gap: 30px;
}

.footer-bottom-links li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
}

.footer-bottom-links i {
    margin-right: var(--space-sm);
    width: 20px;
}

.footer-bottom-links a {
    color: #B5B2B2;
    font-weight: 400;
    font-size: 17px;
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-bottom-links a:hover {
    color: var(--color-secondary);
}

@media (max-width: 768px) {
    footer{
        padding-top: 50px;
    }

    .footer-bg-overlay{
        padding-top: 50px;
    }

    .footer-content{
        flex-direction: column;
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 0px;
        gap: 20px;
    }

    .footer-bottom .content-container{
        flex-direction: column;
        justify-content: center;
        margin-left: 20px;
        margin-right: 20px;
        gap: 20px;
    }

    .footer-bottom .content-container .col{
        width: 100%;
        text-align: center;
    }

    .footer-bottom-links a{
        font-size: 15px;
    }

    .footer-bottom-links{
        justify-content: center;
    }

    .footer-links a {
        font-size: 15px;
    }

    .footer-container .nav-logo{
        margin-bottom: 20px;
    }

    .footer-links li{
        margin-bottom: 12px;
    }

    .footer-bottom .content-container div:nth-child(3){
        display: none;
    }

    .social-links a {
        width: 30px;
        height: 30px;
    }

    .footer-column:nth-child(1){
        width: fit-content;
    }
}

/* Mobile Landscape (431px to 768px) */
@media (min-width: 431px) and (max-width: 768px) {
    .footer-content{
        flex-direction: row;
        justify-content: initial;
    }

    .footer-bottom .content-container{
        flex-direction: row;
    }
}