/* ===========================
   ======= FONTS ============
   =========================== */
/* h1 */
@font-face {
    font-family: 'Wix Madefor Display';
    src: local('Wix Madefor Display Medium'), local('WixMadeforDisplay-Medium'),
        url('../fonts/hinted-subset-WixMadeforDisplay-Medium.woff2') format('woff2'),
        url('../fonts/hinted-subset-WixMadeforDisplay-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
/* Fliesstext */
@font-face {
    font-family: 'Inter 18pt';
    src: local('Inter 18pt Light'), local('Inter18pt-Light'),
        url('../fonts/hinted-subset-Inter18pt-Light.woff2') format('woff2'),
        url('../fonts/hinted-subset-Inter18pt-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
/* ===========================
   ======= ROOT / VARS =======
   =========================== */
:root {
    --primary-color: #606893;
    --dark-color: #1a1a1a;
    --light-bg: #d9d9d9;
    --white: #ffffff;
}
body {
    background-color: var(--white);
}
/* ===========================
   ======= TYPO ==========
   =========================== */
h1 {
    font-family: 'Wix Madefor Display', sans-serif; /* oder 'Inter', je nach Design */
    font-weight: 500; /* regular */
    font-size: 1.75rem; 
    line-height: 1.2;
    margin-bottom: 3rem; /* entspricht mb-5 */
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}
body {
    font-family: 'Inter 18pt', sans-serif;
    color: #333;
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-weight: 300; /* Default Textgewicht */
    overflow-wrap: break-word;
    word-break: break-word;
}
/* Fliess-Text */
p {
    font-size: 1rem;
    margin: 0;
    line-height: 206%; /* 54px */
    font-weight: 300; /* Default Textgewicht */
}
strong, p a {
    font-family: 'Inter 18pt', sans-serif;
    color: #606893;
    font-weight: 600; /* Default Textgewicht */
    text-decoration: none;
}
/* Highlight Text */
p.highlight-text {
color: #606893;
font-family: 'Wix Madefor Display';
font-size: 1.2rem;
font-style: normal;
font-weight: 500;
line-height: 180%; /* 54px */
padding: 0;
}
/* Team Seite */
.team-name {
    font-weight: 300;
}

/* ===========================
   ======= GLOBAL ===========
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px; /* Basis für rem */
    min-width: 320px;
    overflow-x: hidden;
    min-height: 100vh!important;
}
main {
    flex: 1;
}
/* Einheitliche max-width für den Hauptcontent auf allen Unterseiten */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
    overflow: hidden; /* optional, falls kleiner Überhang */
}

/* ===========================
   ======= BUTTON ===========
   =========================== */
.button-container {
    margin-top: 2rem;
    margin-bottom: 3rem;
    display: flex;
    justify-content: flex-end; /* Standard rechts */
}

.button-container-left {
    margin-top: 2rem;
    margin-bottom: 3rem;
    display: flex;
    justify-content: flex-start; /* links */
}

/* margin-top verkleinern */
@media (max-width: 986px) {
    .button-container {
        margin-top: 0rem;
    }
}

/* Ab einer gewissen Breite Button zentrieren */
@media (max-width: 700px) {
    .button-container {
        justify-content: center;
    }
}

/* Style für <a> als Button */
.btn-custom {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 0;
    font-weight: 400;
    letter-spacing: 0px;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem!important;
    font-family: 'Inter', sans-serif;
    text-decoration: none; /* Link-Unterstreichung entfernen */
    text-align: center;    /* sicherstellen, dass Text zentriert */
}

.btn-custom:hover {
    background-color: var(--dark-color);
    color: var(--white);
}

.btn-custom-black {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 0;
    font-weight: 400;
    letter-spacing: 0px;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem!important;
    font-family: 'Inter', sans-serif;
    text-decoration: none; /* Link-Unterstreichung entfernen */
    text-align: center;    /* sicherstellen, dass Text zentriert */
}

.btn-custom-black:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

