﻿/* Footer styles */
footer .container {
    padding-bottom: 40px;
    border-top: solid 1px #CACACA;
}

.footer-logo {
    width: 105px;
    aspect-ratio: 1/1;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.footer-nav a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #BE9F57;
}

.social-media-section {
    text-align: left;
    margin-left: auto;
    width: fit-content;
}

.social-media-title {
    color: #000;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 400;
}

.social-icons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white !important;
    font-size: 16px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.social-icon.facebook {
    background-color: #1877F2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.social-icon.youtube {
    background-color: #FF0000;
}

.social-icon.twitter {
    background-color: #000000;
}

.social-icon.linkedin {
    background-color: #0077B5;
}

.footer-bottom {
    padding: 20px 0;
    margin-top: 0;
}

.copyright-text {
    color: #000;
    font-weight: 400;
    font-size: 12px;
    margin: 0;
}

.footer-bottom small,
.footer-bottom small a {
    margin: 0;
    color: #BE9F5799;
    font-size: 10px;
    font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 992px) {

    .social-media-section {
        text-align: center;
        margin-top: 20px;
        margin: 0px auto;
    }


    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        margin: 20px 0;
    }

    .footer-section {
        padding: 20px 0;
    }
}

@media (max-width: 576px) {
    .footer-nav {
        gap: 10px;
    }

    .footer-nav a {
        font-size: 0.9rem;
    }

    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}