/* footer.css */

/* Typsnitt */
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400&display=swap");

/* Footer-huvudcontainer */
.footer {
    display: flex;
    flex-wrap: wrap;
    padding: 6rem 10% 4rem 10%;
    gap: 4rem;
    align-items: center;
    background-color: transparent;
    width: 100%;
}

/* Footer-nederdel */
.footer-bottom {
    width: 100%;
    position: absolute;
    display: flex;
    padding: 3rem 0;
    align-items: center;
    gap: 4rem;
    align-self: stretch;
    padding-inline: 10%;
    background: var(--4-secondary-purple-blue-800, #2D2868);
    z-index: 3 !important;
}

/* Länkar i footern */
.footer-links {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    flex: 1 0 0;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    flex: 1 0 0;
}

.footer-link {
    color: var(--2-grey-dark-grey-grey-200, #D0D1D3);
    font-family: "Source Sans Pro";
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--1-base-black-white-white, #FAFAFA);
}

/* Footer-text och logga */
.footer-text-container {
    flex-grow: 1;
}

.footer-text-main {
    color: var(--2-grey-dark-grey-grey-300, #B7B9BC);
    font-family: "Source Sans Pro";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
}

.footer-text-main-bold {
    color: var(--2-grey-dark-grey-grey-300, #B7B9BC);
    font-family: "Source Sans Pro";
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5rem;
    align-self: stretch;
}

.footer-text-secondary {
    color: var(--2-grey-dark-grey-grey-300, #B7B9BC);
    font-family: "Source Sans Pro";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    align-self: stretch;
}

/* Sociala ikoner */
.social-icons-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Logga och stödjande text */
.logo-and-supporting-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
}