@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=Roboto+Mono:wght@400;500&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background: #11111a;
    color: #fff;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: hidden;
}

.topbar {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    position: absolute;
    top: 0;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
}

.logo span {
    color: #a855f7;
}

.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 0 20px;
}

.content-boxes {
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 1200px;
    gap: 25px;
}

/* Info Box Styling */
.info-box {
    background: #16161c;
    border-radius: 15px;
    padding: 40px;
    width: 490px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.info-box h1 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.accent {
    color: #a855f7;
}

.info-box p {
    color: #c7c7e0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 24px;
}

.btn {
    padding: 10px 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 0.95rem;
    border-radius: 25px;
    cursor: pointer;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 500;
    transition: all 0.2s;
}

.btn.primary {
    background: #a855f7;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.ausbildung-info {
    font-size: 1rem;
    line-height: 1.8;
}

/* Terminal Box Styling */
.terminal-box {
    background: #16161c;
    border-radius: 15px;
    width: 480px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.terminal-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: #16161c;
    border-bottom: 1px solid #222;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background-color: #ff5f56; }
.dot.yellow { background-color: #ffbd2e; }
.dot.green { background-color: #27c93f; }

.terminal-content {
    background: #16161c;
    font-family: 'Roboto Mono', monospace;
    font-size: 1.02rem;
    padding: 20px;
    color: #eaeaea;
    line-height: 1.7;
    flex-grow: 1;
}

.prompt {
    color: #a855f7;
    margin-right: 10px;
}

.output {
    color: #eaeaea;
    margin-bottom: 5px;
}

.blink {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-bottom: 20px;
    z-index: 10;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    padding-bottom: 5px;
    opacity: 0.8;
    transition: all 0.2s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #a855f7;
    transition: width 0.2s;
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Gradient Background */
.gradient-bg {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, #2d1a4d, transparent);
    z-index: -1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-boxes {
        flex-direction: column;
        align-items: center;
    }

    .info-box, .terminal-box {
        width: 90%;
        max-width: 550px;
    }
}

@media (max-width: 768px) {
    .bottom-nav {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .info-box {
        padding: 25px;
    }

    .info-box h1 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #a855f7, #6366f1);
    border-radius: 4px;
}