/* AVVGO Network - Zentrale CSS-Datei */

/* Basis-Font für die gesamte Seite */
body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0f; /* Sehr dunkler Hintergrund */
    color: #e5e7eb; /* Helles Grau für Text */
}

/* Klassen für die "Fade-in beim Scrollen"-Animation */

/* Initialer Zustand: Unsichtbar und leicht nach unten verschoben */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.17, 0.55, 0.55, 1), transform 0.6s cubic-bezier(0.17, 0.55, 0.55, 1);
}

/* Endzustand: Sichtbar an der finalen Position */
.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Ein subtiler Glüheffekt für die Karten beim Hovern */
.card-hover-effect {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px var(--shadow-color, rgba(0, 0, 0, 0.3));
}

/* Zusätzliche Animation Delays für gestaffelte Effekte */
.animation-delay-4000 {
    animation-delay: 4s;
}

/* Responsive Verbesserungen */
@media (max-width: 768px) {
    .fade-in-up {
        transform: translateY(20px);
    }
}

/* Smooth Scrolling für bessere Anker-Navigation */
html {
    scroll-behavior: smooth;
}

/* Header/Navigation Styling Verbesserungen */
header {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Verbesserte Button-Styles */
.btn-primary {
    background: linear-gradient(135deg, #06b6d4, #2563eb);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 9999px;
    font-size: 1.125rem;
    box-shadow: 0 4px 14px 0 rgba(6, 182, 212, 0.39);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px 0 rgba(6, 182, 212, 0.5);
}

/* Glüh-Effekte für verschiedene Farben */
.glow-cyan {
    --shadow-color: rgba(6, 182, 212, 0.2);
}

.glow-green {
    --shadow-color: rgba(74, 222, 128, 0.2);
}

.glow-blue {
    --shadow-color: rgba(96, 165, 250, 0.2);
}

.glow-purple {
    --shadow-color: rgba(192, 132, 252, 0.2);
}

/* Zusätzliche Utility-Klassen */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.border-gradient {
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(192, 132, 252, 0.1)) border-box;
    border-image: linear-gradient(135deg, #06b6d4, #c084fc) 1;
}

/* Loading Animation für bessere UX */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print Styles */
@media print {
    .fade-in-up {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    header {
        position: static !important;
    }

    .card-hover-effect {
        transform: none !important;
        box-shadow: none !important;
    }
}
