/* landing.css - Aurora UI Glassmorphism Styling */

:root {
    --aurora-1: #00f2fe; /* Cyan */
    --aurora-2: #4facfe; /* Blue */
    --aurora-3: #f093fb; /* Pink/Purple */
    --bg-dark: #050510;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

body {
    background-color: var(--bg-dark);
    color: #f8fafc;
    overflow-x: hidden;
    position: relative;
}

/* Typography */
.font-outfit { font-family: 'Outfit', sans-serif; }
.font-inter { font-family: 'Inter', sans-serif; }
.font-light { font-weight: 300; }
.tracking-widest { letter-spacing: 0.1em; }

.text-cyan { color: var(--aurora-1) !important; }
.text-pink { color: var(--aurora-3) !important; }

.text-gradient-aurora {
    background: linear-gradient(135deg, var(--aurora-1), var(--aurora-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 0px 20px rgba(0, 242, 254, 0.3);
}

.bg-aurora {
    background: linear-gradient(135deg, var(--aurora-2), var(--aurora-3));
}

/* Aurora Animated Background */
.aurora-bg {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    overflow: hidden;
    background: var(--bg-dark);
}

.aurora-blob {
    position: absolute;
    filter: blur(120px);
    opacity: 0.5;
    border-radius: 50%;
    animation: float 20s infinite ease-in-out alternate;
    mix-blend-mode: screen;
}

.blob-cyan {
    width: 60vw; height: 60vh;
    background: var(--aurora-1);
    top: -10%; left: -10%;
    animation-delay: 0s;
}
.blob-blue {
    width: 50vw; height: 50vh;
    background: var(--aurora-2);
    top: 40%; right: -10%;
    animation-delay: -5s;
}
.blob-pink {
    width: 60vw; height: 60vh;
    background: var(--aurora-3);
    bottom: -20%; left: 10%;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(5%, 10%) scale(1.1) rotate(10deg); }
    66% { transform: translate(-5%, 5%) scale(0.9) rotate(-5deg); }
    100% { transform: translate(0%, -5%) scale(1.05) rotate(0deg); }
}

/* Nav */
.glass-nav {
    background: rgba(5, 5, 16, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}
.glass-nav.scrolled {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hover-cyan:hover { color: var(--aurora-1) !important; }
.hover-white:hover { color: #fff !important; }
.transition-all { transition: all 0.3s ease; }

/* Buttons & Elements */
.btn-aurora {
    background: linear-gradient(135deg, var(--aurora-2), var(--aurora-3));
    border: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
    transition: all 0.3s ease;
}
.btn-aurora:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.5);
}

.btn-glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: #fff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.glass-badge {
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.2);
    backdrop-filter: blur(10px);
}

.glass-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.glass-card.active-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(240, 147, 251, 0.3);
    box-shadow: 0 8px 32px 0 rgba(240, 147, 251, 0.15);
}

.icon-box-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
}

.glass-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--glass-border) !important;
    backdrop-filter: blur(10px);
    color: #fff !important;
}
.glass-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 242, 254, 0.25) !important;
}

/* Fix Bootstrap floating label white background */
.form-floating > .form-control:focus ~ label::after,
.form-floating > .form-control:not(:placeholder-shown) ~ label::after,
.form-floating > .form-control-plaintext ~ label::after {
    background-color: transparent !important;
}

.hover-lift {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-10px) !important;
}
.active-card.hover-lift:hover {
    transform: translateY(-10px) scale(1.05) !important;
}

/* Interactive Phone Mockup Glass */
.phone-mockup-glass {
    position: relative;
    width: 300px;
    height: 600px;
    background-color: #000;
    border-radius: 40px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 
                0 0 40px rgba(0, 242, 254, 0.2), 
                inset 0 0 20px rgba(255,255,255,0.05);
    overflow: hidden;
    transform: rotate(-2deg);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.phone-mockup-glass::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; right: 0; bottom: 0;
    width: 50%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
    transform: skewX(-25deg);
    animation: shine 6s infinite;
    z-index: 20;
    pointer-events: none;
}
@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}
.phone-mockup-glass:hover {
    transform: rotate(0deg) scale(1.02);
}
.phone-notch-glass {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background-color: #000;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
    border: 1px solid rgba(255,255,255,0.05);
    border-top: none;
}
.phone-screen {
    width: 100%;
    height: 100%;
    border: none;
    background: #000;
}

/* Utilities */
.max-w-700 { max-width: 700px; }
.max-w-300 { max-width: 300px; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 1rem; }

/* Animations */
.fade-up-1, .fade-up-2, .fade-up-3, .fade-up-4, .fade-up-5, .fade-up-6 {
    opacity: 0;
    transform: translateY(30px);
}
.animate-in {
    animation: fadeUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }
.fade-up-5 { animation-delay: 0.5s; }
.fade-up-6 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
