/*
#footer {
    background-color: var(--primary-color-dark);
    width: 100%;
    height: 10vh;
    align-content: center;
    padding-left: 2.5%;
    font-family: var(--font-family);
    font-style: var(--font-weight-bold);
    font-size: 1vw;
    color: var(--secondary-color-dark-s2);
}


@media (max-width: 768px) or (orientation: portrait) {
    #footer {
        height: 20vw;
        padding-left: 5vw;
        font-size: 3vw;
    }
}
*/

#footer {
    background-color: var(--primary-color-dark);
    width: 100%;
    padding: 3vh 1.5%;
    font-family: var(--font-family);
    font-style: var(--font-weight-bold);
    font-size: 2vh;
    color: var(--secondary-color-dark-s2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.footer-separator {
    width: min(300px, 100%);
    border: none;
    border-top: 1px solid var(--secondary-color-dark-s2);
    margin: 1.5vh 0 2vh 0;
}


.footer-socials {
    display: flex;
    gap: 2vh;
}

/* Circle container for icons */
.social-icon-circle {
    width: 3vh;
    height: 3vh;
    background-color: var(--secondary-color-dark-s2); /* or choose another */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.social-icon-circle:hover {
    transform: scale(1.1);
    cursor: pointer;
}

/* Make sure all icons fit within the circle */
.social-icon-circle img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

@media (max-width: 768px) or (orientation: portrait) {
    #footer {
        font-size: 1.5vh;
        padding: 3vh 1.5vh;
    }
}


/*

@media (max-width: 768px) or (orientation: portrait) {
    #footer {
        font-size: 3vw;
        padding-left: 5vw;
        align-items: flex-start;
    }

    .footer-socials img {
        width: 6vw;
    }
}


@media (max-width: 768px) or (orientation: portrait) {
    .social-icon-circle {
        width: 8vw;
        height: 8vw;
    }
}
*/
