/* General footer styling */
/* General footer styling */
.footer {
    padding: clamp(10px, 2vw, 42px); /* Responsive padding */
    text-align: center;
    position: relative;
}
.footer:before{
    content: "";
    width: 100%;
    height: 100%;
    display:inline-block;
    background-color: #BAD8741F;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.footer__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(10px, 2vw, 20px); /* Responsive margin */
}
.footer__inner figure {
    max-width: 128px;
    margin: 0;
    overflow: hidden;
}

.footer__inner figure img {
    width: 100%;
    height: auto;
    display: block;
}
/* Title styling */
.footer__title {
    font-size: clamp(18px, 2vw, 32px); /* Responsive font-size */
    text-decoration: none;
}

/* Footer menu styling */
.footer__nav {
    display: flex;
    margin-top: 28px;
}

.footer__menu {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 2vw, 30px); /* Responsive gap */
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer__menu li{
    position: relative;
    padding-right: 1rem;
}


.footer__menu li a {
    text-decoration: none;
    font-size: 1rem; /* Responsive font-size */
    transition:.5s;
    font-family: "Noto Sans", sans-serif;
    color: #000;
}
.footer__menu li a:hover{
    color: #43B869;
}
/* Copyright styling */
.footer__copyright {
    font-size: clamp(12px, 1vw, 16px); /* Responsive font-size */
    color: #bbb;
    margin-top: clamp(10px, 1vw, 20px); /* Responsive margin */
}
.footer__copyLight{
    color: #A07B35;
}
.footer__copyLite p{
    margin-top: 1rem;
    font-size: 10px;
    color: #A07B35;
}
/* Mobile Design */
@media (min-width: 768px) {
    .footer{
        margin-top: 128px;
        padding: clamp(16px, 2vw, 32px); /* Responsive padding */
    }
    .footer__inner {
        align-items: center;
    }

    .footer__nav {
        margin-top: clamp(10px, 2vw, 20px); /* Responsive margin */
    }

    .footer__menu {
        gap: clamp(5px, 1.5vw, 10px); /* Responsive gap */
        flex-direction: row;
    }
    .footer__menu li:not(:last-child):before {
        content: "";
        height: 20px;
        border-right: 1px dotted;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .footer__copyLite p{
        margin-top: 54px;
    }
}

