/* Alpine.js cloak */
[x-cloak] {
    display: none !important;
}

/* Theme Variables – Passolution Brand Colors */
:root {
    --promo-bg: #021a2b;
    --promo-bg-card: #043451;
    --promo-bg-secondary: #065272;
    --promo-border: rgba(145, 218, 242, 0.15);
    --promo-text: #ffffff;
    --promo-text-muted: #91daf2;
    --promo-primary: #cee741;
    --promo-primary-light: #dbed6a;
}

/* Basis-Layout (gleich wie risk-overview.css) */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
}

.app-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

/* Header - feststehend */
.header {
    flex-shrink: 0;
    height: 64px;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    z-index: 10000;
}

/* Footer - feststehend */
.footer {
    flex-shrink: 0;
    height: 32px;
    background: white;
    color: black;
    z-index: 9999;
    border-top: 1px solid #e5e7eb;
}

/* Hauptbereich - dynamisch */
.main-content {
    flex: 1;
    display: flex;
    min-height: 0;
}

/* Navigation - feste Breite */
.navigation {
    flex-shrink: 0;
    width: 64px;
    background: black;
}

/* Promo Content - scrollbar, nimmt restlichen Platz ein */
.promo-content {
    flex: 1;
    overflow-y: auto;
    scroll-behavior: smooth;
    background: var(--promo-bg);
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Animations */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.animate-fade-up {
    animation: fadeUp 0.6s ease-out forwards;
    opacity: 0;
}

.animate-fade-up-delay-1 {
    animation: fadeUp 0.6s ease-out 0.1s forwards;
    opacity: 0;
}

.animate-fade-up-delay-2 {
    animation: fadeUp 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

.animate-fade-up-delay-3 {
    animation: fadeUp 0.6s ease-out 0.3s forwards;
    opacity: 0;
}

.animate-fade-up-delay-4 {
    animation: fadeUp 0.6s ease-out 0.4s forwards;
    opacity: 0;
}

.animate-pulse-slow {
    animation: pulseSlow 4s ease-in-out infinite;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Glow blobs */
.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}
