/* Verbesserte Styles für die Website */

/* Navigation im Header verbessern - bessere Lesbarkeit */
.main-nav a {
    color: #00c3ff !important;
    text-shadow: 0 0 8px rgba(0, 195, 255, 0.5);
    font-weight: 500;
}

.main-nav a:hover {
    text-shadow: 0 0 12px rgba(0, 195, 255, 0.8);
}

.main-nav a.active {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

/* Spezielle Hervorhebungen für Operator, Model Studio und Agent */
.main-nav a.operator-link {
    color: #ff3e8f !important;
    text-shadow: 0 0 8px rgba(255, 62, 143, 0.5);
}

.main-nav a.studio-link {
    color: #00ffb3 !important;
    text-shadow: 0 0 8px rgba(0, 255, 179, 0.5);
}

.main-nav a.agent-link {
    color: #ffa230 !important;
    text-shadow: 0 0 8px rgba(255, 162, 48, 0.5);
}

.main-nav a.operator-link:hover, .main-nav a.operator-link.active {
    color: #ff70a8 !important;
    text-shadow: 0 0 12px rgba(255, 62, 143, 0.8);
}

.main-nav a.studio-link:hover, .main-nav a.studio-link.active {
    color: #80ffd9 !important;
    text-shadow: 0 0 12px rgba(0, 255, 179, 0.8);
}

.main-nav a.agent-link:hover, .main-nav a.agent-link.active {
    color: #ffba66 !important;
    text-shadow: 0 0 12px rgba(255, 162, 48, 0.8);
}

/* Hero Bereich - Scrollbar entfernen */
.hero-section {
    overflow: visible !important;
    max-width: 100%;
    width: 100%;
}

.hero-content {
    overflow: visible !important;
}

/* Container auf normale Breite beschränken */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    overflow: visible !important;
}

/* Logo-Container anpassen */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #00c3ff;
    text-shadow: 0 0 10px rgba(0, 195, 255, 0.8);
}

/* Stelle sicher, dass alle Elemente sichtbar sind */
body, html, section, .section {
    overflow-x: hidden;
}

/* Fix für Hintergrundanimationen */
.hero-section::before,
.features-section::before,
.pricing-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.2;
    animation: codeStream 20s linear infinite;
    background-image: url('/static/img/code-pattern.png');
    background-size: cover;
}

@keyframes codeStream {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 1000px;
    }
}
