/* VCMS Landing Page Custom Styling & Animations */

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1e293b;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #ffffff;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #092c50;
}

/* Glassmorphism Containers (Light Theme with #092c50 accents) */
.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(9, 44, 80, 0.1);
}

.glass-card {
    background: #ffffff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(9, 44, 80, 0.08);
    box-shadow: 0 4px 20px -2px rgba(9, 44, 80, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: #ffffff;
    border-color: rgba(9, 44, 80, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(9, 44, 80, 0.12);
}

/* Gradient Text Shimmer with #092c50 Base */
.text-gradient {
    background: linear-gradient(135deg, #092c50 0%, #1d4ed8 50%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-cyan {
    background: linear-gradient(135deg, #092c50 0%, #0284c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtle Grid Background Pattern for White Canvas */
.bg-grid-pattern {
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(9, 44, 80, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(9, 44, 80, 0.04) 1px, transparent 1px);
}

/* Glow Effects */
.glow-navy {
    box-shadow: 0 0 50px -10px rgba(9, 44, 80, 0.25);
}

.glow-blue {
    box-shadow: 0 0 50px -10px rgba(37, 99, 235, 0.25);
}

/* Keyframe Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(0.5deg);
    }
}

@keyframes float-reverse {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(12px) rotate(-0.8deg);
    }
}

@keyframes pulse-slow {
    0%, 100% {
        opacity: 0.25;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.08);
    }
}

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

.animate-float-delayed {
    animation: float-reverse 7s ease-in-out 1s infinite;
}

.animate-pulse-glow {
    animation: pulse-slow 8s ease-in-out infinite;
}

/* HTMX Indicator Fade */
.htmx-indicator {
    display: none;
}
.htmx-request .htmx-indicator {
    display: inline-block;
}
.htmx-request.htmx-indicator {
    display: inline-block;
}

