/* bullet point area */
.b-area {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; 
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
}

/*bullet points*/
 .b-point {
    color: inherit;
    font-size: 0.95rem;
    cursor: pointer;
    transition: color 0.2s ease;
    text-decoration: none;
} 

.site-footer {
    font-size: 0.9rem;
    gap: 2rem;
    padding-inline: 5%;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.apps {
    grid-template-columns: 150px 150px 150px;
}

.more-info{
    width: 100%;
}

.back-to-top {
    text-decoration: underline;
    color: inherit;
    transition: color 0.2s ease;
}

.back-to-top:hover {
    color: var(--highlight);
}

/*  Toggle Button */
.footer-toggle {
    background: none;
    border: none;
    width: 100%;
    cursor: pointer;
}

.footer-toggle .arrow-icon {
    transition: transform 0.3s ease;
}

.footer-section {
    gap: 1rem;
}

/* expanded state */
.footer-section.active .arrow-icon {
    transform: rotate(180deg);
}

.arrow-icon {
    display: none;
}

.arrow-icon-img {
    transition: filter 0.2s ease;
}

:root[data-theme="dark"] .arrow-icon-img {
    filter: invert(1);
}

:root[data-skin="rmb"] .arrow-icon-img {
    filter: invert(1);
}

.text-right{
    display: flex;
    justify-content: flex-end;
}


/* Phone: less than 600px */
@media (max-width: 599px) {
    /* styles for phones */
    .site-footer {
        padding-inline: 5%;
    }

    .footer-columns {
        display: flex;
        flex-direction: column;
        /* grid-template-columns: 1fr; */
    }
}


/* Mobile accordion behavior */
@media (max-width: 768px) { 
    .site-footer {
        padding-inline: 5%;
    }
    
    .arrow-icon {
        display: inline-block;
    }

    .footer-columns {
        display: flex;
        flex-direction: column;
        /* grid-template-columns: 1fr; */
    }

    .footer-section .b-area {
        display: none;
    }

    .footer-section.active .b-area {
        display: flex;
    }

    .more-info {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .back-to-top {
        justify-content: flex-end;
    }

    .apps {
        display: flex;
        flex-direction: column;
        width: 35%;
    }
}
#togglebuttons{
    display: none;
}