/* Schriftart laden */
@font-face {
    font-family: 'FiraCode';
    src: url('fonts/FiraCode-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Farb- und Schriftdefinitionen */
:root {
    --main-orange: #ff6b00;
    --gray: #ccc;
    --background: #121212;
    --font: 'FiraCode', monospace;
}

/* Reset & Grundstruktur */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
main {
    max-width: 800px;
    width: 100%;
    text-align: left;
}


main a {
    color: var(--main-orange);
    text-decoration: none;
}

main a:hover {
    text-decoration: underline;
}


body {
    font-family: var(--font);
    background-color: var(--background);
    color: var(--gray);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

/* Header */
header {
    margin-bottom: 2rem;
}

.profile-pic {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--main-orange);
    margin-bottom: 1rem;
}

/* Typografie */
h1 {
    color: var(--main-orange);
    font-size: 2rem;
}

h2 {
    color: var(--main-orange);
    margin: 1.5rem 0 0.5rem;
}

/* Hauptbereich */
main {
    max-width: 600px;
    width: 100%;
}

main p {
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

/* Leistungsbereich (zweispaltig, untereinander ausgerichtet) */
.leistungsblock {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 0.5rem 1.5rem;
    align-items: start;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.leistungstitel {
    font-weight: bold;
    color: var(--main-orange);
    white-space: nowrap;
    margin-top: 0.4rem;
}

.leistungsblock ul {
    margin: 0;
    padding-left: 1.2rem;
    list-style-type: disc;
}

.leistungsblock ul li {
    margin-bottom: 0.3rem;
}

.cta {
    margin-top: 3rem;
    text-align: center;
}

.cta-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.6rem;
    background-color: var(--main-orange);
    color: #121212;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.cta-button:hover {
    background-color: #e85d00;
}


/* Trennlinie im Footer */
.footer-line {
    width: 100%;
    max-width: 800px;
    height: 4px;
    margin: 4rem auto 2rem;
    background: linear-gradient(to right, transparent, var(--main-orange), transparent);
    border: none;
    border-radius: 2px;
    box-shadow: 0 0 6px var(--main-orange);
    position: relative;
}

/* Footer allgemein */
footer {
    margin-top: 3rem;
    font-size: 0.9rem;
}

.footer-links {
    margin-bottom: 0.5rem;
}

footer a {
    color: var(--gray);
    text-decoration: none;
    margin: 0 0.5rem;
}

footer a:hover {
    color: var(--main-orange);
}

/* Footer-Notiz */
.footer-note {
    font-size: 0.85rem;
    color: var(--gray);
}

.footer-note a {
    color: var(--gray);
    text-decoration: underline;
}

.footer-note a:hover {
    color: var(--main-orange);
}
