:root {
    --accent-color: #059669;
}

/* Standard: White Mode */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;  /* White Mode als Standard */
    color: #000;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    overflow-y: scroll;
}

/* Dark Mode Overrides */
.dark-mode {
    background-color: #000;
    color: #fff;
}

.dark-mode h1 {
    /* Beispiel: kannst du hier ggf. Anpassungen vornehmen */
    color: var(--accent-color);
    background-color: #011810;
}

/* Hintergrund */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: inherit;
    transition: background 0.3s ease-in-out;
}

/* Linien */
.lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
}
.lines::before,
.lines::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: currentColor;
    opacity: 0.1;
}
.lines::before { top: 6%; }
.lines::after { bottom: 6%; }

/* Inhalt */
.content {
    text-align: center;
    position: relative;
    z-index: 2;
}
h1 {
    font-size: 64px;
    padding: 4px 8px;
    border-radius: 15px;
    display: inline-block;
    color: var(--accent-color);
    background-color: #011810;
}

/* Social Icons */
.socials {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: -30px;
}
.social-icon {
    font-size: 30px;
    transition: 0.3s;
    text-decoration: none;
    color: inherit;
}
.social-icon:hover {
    color: var(--accent-color);
}

/* Theme Toggle Button */
.theme-toggle {
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease-in-out;
    border-radius: 4px;
    height: 40px;
    width: 40px;
    background: none;
    color: inherit;
}
.theme-toggle:hover {
    opacity: 0.8;
}
.theme-toggle svg {
    width: 24px;
    height: 24px;
}

/* Navigation – Links oben in der Mitte */
.nav-center {
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}
.nav-center ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}
.nav-center ul li {
    font-weight: bold;
}
.nav-center ul li a {
    text-decoration: none;
    font-size: 1.25rem;
    color: inherit;
    transition: color 0.3s ease;
}
.nav-center ul li a:hover {
    color: var(--accent-color);
}

/* Footer */
.footer {
    position: absolute;
    bottom: 2%;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #999;
}
.dark-mode .footer {
    color: #555;
}

/* Textselektion */
::selection {
    background: var(--accent-color);
    color: #fff;
}
::-moz-selection {
    background: var(--accent-color);
    color: #fff;
}
