/* Importiere Schriftarten */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;400;500;700&family=Orbitron:wght@400;500;700;900&display=swap');

/* CSS-Variablen für Themes */
:root {
    --primary-color: #0a192f;
    --secondary-color: #64ffda;
    --accent-color: #112240;
    --text-primary: #e6f1ff;
    --text-secondary: #8892b0;
    --background-color: var(--primary-color);
    --content-bg: rgba(17, 34, 64, 0.8);
    --border-color: rgba(100, 255, 218, 0.1);
    --glow-color: rgba(100, 255, 218, 0.5);
}

[data-theme="light"] {
    --primary-color: #f8f9fa;
    --secondary-color: #3498db;
    --accent-color: #e9ecef;
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --background-color: var(--primary-color);
    --content-bg: white;
    --border-color: rgba(52, 152, 219, 0.1);
    --glow-color: rgba(52, 152, 219, 0.3);
}

/* Basisstile */
body {
    font-family: 'Roboto Mono', monospace;
    background-color: var(--background-color);
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    transition: all 0.3s ease;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: var(--text-primary);
    text-align: center;
    margin: 20px 0;
    text-shadow: 0 0 10px var(--glow-color);
}

p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 10px auto;
    max-width: 90%;
    text-align: center;
    line-height: 1.8;
}

/* Container */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

/* Theme-Switcher */
.theme-switch-wrapper {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
}

.theme-switch {
    display: inline-block;
    width: 50px;
    height: 26px;
    position: relative;
}

.theme-switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--accent-color);
    transition: 0.4s;
    border-radius: 34px;
    border: 1px solid var(--border-color);
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: var(--secondary-color);
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--secondary-color);
}

input:checked + .slider:before {
    transform: translateX(24px);
}


.tagline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
    position: relative;
    transition: all 0.3s ease;
}

.tagline::before,
.tagline::after {
    content: "<>";
    color: var(--secondary-color);
    opacity: 0.5;
    font-family: 'Roboto Mono', monospace;
    position: relative;
    top: -2px;
    transition: all 0.3s ease;
}

.tagline::before {
    margin-right: 10px;
}

.tagline::after {
    margin-left: 10px;
}


.coming-soon {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px var(--glow-color);
    transition: all 0.3s ease;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border-radius: 5px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.1), transparent);
    transition: all 0.5s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 10px var(--glow-color);
    border-color: var(--secondary-color);
}

.social-icon:hover::before {
    left: 100%;
}


.content {
    text-align: center;
    max-width: 800px;
    background-color: var(--content-bg);
    padding: 50px;

    . contact {
        margin-top: 30px;
        font-size: 0.9rem;
        color: var(--text-secondary);
        position: relative;
        padding-top: 20px;
        transition: all 0.3s ease;
    }

    .contact::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 1px;
        background-color: var(--secondary-color);
        opacity: 0.3;
        transition: all 0.3s ease;
    }

    .contact a {
        color: var(--secondary-color);
        text-decoration: none;
        position: relative;
        padding-bottom: 2px;
        transition: all 0.3s ease;
    }

    .contact a::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1px;
        background-color: var(--secondary-color);
        transition: width 0.3s ease;
    }

    .contact a:hover::after {
        width: 100%;
    }

    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
    0 0 20px var(--glow-color);
}
/* Responsives Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 0.85rem;
    }

    .container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    p {
        font-size: 0.8rem;
    }

    .container {
        padding: 10px;
    }
}