/* style.css */
/* =========================================
   DM SANS (Variable Font oder spezifische)
   ========================================= */

@font-face {
    font-family: 'DM Sans';
    /* Passe den Dateinamen exakt an deine heruntergeladene Datei an */
    src: url('fonts/DMSans.ttf') format('truetype');
    font-weight: 100 1000; /* Definiert den Bereich der variablen Strichstärke */
    font-style: normal;
    font-display: swap; /* Sorgt dafür, dass der Text beim Laden sichtbar bleibt */
}

/* =========================================
   DM MONO (Hat meistens keine Variable Font)
   ========================================= */
/* DM Mono - Regular (400) */
@font-face {
    font-family: 'DM Mono';
    src: url('fonts/DMMono-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-dark: #0B192F;
    --mint-accent: #03D9C0;
    --primary-blue: #115DCD;
    --text-dark: #1A202C;
    --text-light: #FFFFFF;
    --bg-light-mint: #F0FBF9;
    --border-color: #E2E8F0;
    --font-main: 'DM Sans', sans-serif;
}

footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 0 20px 0;
    display: flex;
    flex-direction: column;
}

.footer-content-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    flex-grow: 1;
}

.footer-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0;
}

.footer-brand h4 {
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: 400;
    font-size: 1.25rem;
}

.footer-brand p {
    font-size: 1rem;
    max-width: 300px;
}

.footer-links-wrapper {
    display: flex;
    gap: 50px;
}

.footer-col h5 {
    margin-bottom: 15px;
    font-size: 0.9rem;
    font-weight: 400;
}
.footer-col-links h5 {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: white;
    font-weight: 400;
}

.footer-col ul {
    color: var(--mint-accent);
}

.footer-col-links{
    list-style: circle;
    color: var(--mint-accent);
}

.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col-links ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--mint-accent);
    text-decoration: none;
    font-size: 0.85rem;
}
.footer-col-links a {
    color: var(--mint-accent);
    text-decoration: none;
    font-size: 0.85rem;
}

/* Zentrierung des Logo-Bereichs */
.dsa-logo-container {
    width: 100%;
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.powered-text {
    color: #aab6c4;
    margin-right: 10px;
    font-size: 16px;
}

.dsa-img {
    height: 35px;
    object-fit: contain;
    padding-top: 5px;
}

@media (max-width:765px) {

    .footer-brand{
        padding: 0rem 1.125rem;
    }

    .footer-brand h4 {
        margin-bottom: 15px;
        letter-spacing: 1px;
        font-weight: 400;
        font-size: 1.25rem;
    }

    .footer-brand p {
        font-size: 1.25rem;
        max-width: 400px;
    }

    .footer-col h5 {
        font-size: 1.025rem;
    }

    .footer-col a {
        font-size: 1.025rem;
    }

    .footer-col-links h5 {
        font-size: 1.025rem;
    }

    .footer-col-links a {
        font-size: 1.025rem;
    }

    .footer-links-wrapper {
        display: flex;
        gap: 50px;
        padding: 0rem 1.125rem;
    }
}

@media (min-width: 768px) {
    .footer-layout {
        flex-direction: row;
        justify-content: space-between;
        width: 90%;
        max-width: 1000px;
        margin: 0 auto;
    }
}