Spaces:
Sleeping
Sleeping
| /* Cosmopedia - Enhanced Modern Theme */ | |
| :root { | |
| /* Core Colors - Space Theme */ | |
| --primary-color: #00b4ff; | |
| --secondary-color: #1e88e5; | |
| --accent-color: #ffd700; | |
| --success-color: #00e676; | |
| --warning-color: #ff9800; | |
| /* Background Colors - Lighter for Better Visibility */ | |
| --dark-bg: #0f1419; | |
| --darker-bg: #0a0e13; | |
| --card-bg: rgba(255, 255, 255, 0.12); | |
| --glass-bg: rgba(255, 255, 255, 0.15); | |
| --glass-border: rgba(255, 255, 255, 0.25); | |
| /* Gradients - Subtle Space Theme */ | |
| --space-gradient: linear-gradient(135deg, | |
| #0a0e15 0%, | |
| #0f1419 20%, | |
| #1a1f2a 40%, | |
| #252a35 60%, | |
| #1a1f2a 80%, | |
| #0f1419 100%); | |
| --hero-gradient: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%); | |
| /* Text Colors - High Contrast */ | |
| --text-light: #ffffff; | |
| --text-muted: #e8eaed; | |
| --text-secondary: #bdc1c6; | |
| /* Shadows */ | |
| --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); | |
| --hover-shadow: 0 12px 40px rgba(0, 180, 255, 0.3); | |
| --neon-glow: 0 0 20px rgba(0, 180, 255, 0.6); | |
| /* Transitions */ | |
| --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); | |
| } | |
| body { | |
| font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; | |
| background: var(--space-gradient); | |
| background-attachment: fixed; | |
| color: var(--text-light); | |
| min-height: 100vh; | |
| overflow-x: hidden; | |
| line-height: 1.6; | |
| position: relative; | |
| } | |
| /* Add subtle space-themed background pattern */ | |
| body::after { | |
| content: ''; | |
| position: fixed; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 100%; | |
| background-image: | |
| radial-gradient(circle at 20% 80%, rgba(0, 180, 255, 0.05) 0%, transparent 50%), | |
| radial-gradient(circle at 80% 20%, rgba(255, 64, 129, 0.03) 0%, transparent 50%), | |
| radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.02) 0%, transparent 50%); | |
| pointer-events: none; | |
| z-index: -1; | |
| } | |
| /* Remove dark animated background overlay */ | |
| body::before { | |
| display: none; | |
| } | |
| /* Better Scrollbar */ | |
| ::-webkit-scrollbar { | |
| width: 8px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: var(--darker-bg); | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background: linear-gradient(180deg, var(--primary-color), var(--secondary-color)); | |
| border-radius: 4px; | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| background: var(--accent-color); | |
| } | |
| /* Navigation - Clean and Modern */ | |
| .navbar { | |
| background: rgba(15, 20, 25, 0.95) ; | |
| backdrop-filter: blur(15px); | |
| border-bottom: 1px solid var(--glass-border); | |
| box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3); | |
| transition: var(--transition-smooth); | |
| } | |
| .navbar-brand { | |
| font-family: 'Space Grotesk', sans-serif; | |
| font-weight: 700; | |
| font-size: 1.5rem; | |
| color: var(--accent-color) ; | |
| text-transform: uppercase; | |
| letter-spacing: 1px; | |
| transition: var(--transition-smooth); | |
| } | |
| .navbar-brand:hover { | |
| color: var(--primary-color) ; | |
| text-shadow: var(--neon-glow); | |
| } | |
| .navbar-nav .nav-item { | |
| margin: 0 5px; | |
| } | |
| .nav-link { | |
| color: var(--text-light) ; | |
| font-weight: 500; | |
| font-size: 1.1rem; | |
| padding: 10px 15px ; | |
| border-radius: 8px; | |
| transition: var(--transition-smooth); | |
| position: relative; | |
| } | |
| .nav-link:hover { | |
| color: var(--accent-color) ; | |
| background: var(--glass-bg); | |
| transform: translateY(-2px); | |
| box-shadow: var(--hover-shadow); | |
| } | |
| .navbar-toggler { | |
| border: none; | |
| padding: 6px 10px; | |
| background: var(--glass-bg); | |
| border-radius: 8px; | |
| } | |
| .navbar-toggler:focus { | |
| box-shadow: var(--neon-glow); | |
| outline: none; | |
| } | |
| transition: all 0.3s ease; | |
| } | |
| .navbar-nav .nav-link:hover { | |
| transform: translateY(-2px); | |
| color: var(--accent-color) ; | |
| } | |
| .navbar-nav .nav-item { | |
| margin: 0 0.2rem; | |
| } | |
| .navbar-nav .nav-link i { | |
| width: 20px; | |
| text-align: center; | |
| } | |
| /* Hero Section - Vibrant and Modern */ | |
| .hero-section { | |
| padding: 140px 0 100px; | |
| text-align: center; | |
| position: relative; | |
| background: linear-gradient(135deg, #1e3c72 0%, #2a5298 25%, #3d4db3 50%, #2a5298 75%, #1e3c72 100%); | |
| background-attachment: fixed; | |
| background-size: 400% 400%; | |
| animation: gradientShift 10s ease-in-out infinite; | |
| } | |
| @keyframes gradientShift { | |
| 0%, 100% { background-position: 0% 50%; } | |
| 50% { background-position: 100% 50%; } | |
| } | |
| .hero-title { | |
| font-family: 'Space Grotesk', sans-serif; | |
| font-size: clamp(2.5rem, 6vw, 4.5rem); | |
| font-weight: 900; | |
| margin-bottom: 1.5rem; | |
| background: linear-gradient(135deg, #ffd700, #00b4ff, #1e88e5); | |
| background-size: 300% 300%; | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| background-clip: text; | |
| animation: fadeInUp 1s ease-out, textGradient 3s ease-in-out infinite; | |
| text-shadow: 0 0 30px rgba(255, 215, 0, 0.5); | |
| } | |
| @keyframes textGradient { | |
| 0%, 100% { background-position: 0% 50%; } | |
| 50% { background-position: 100% 50%; } | |
| } | |
| .hero-subtitle { | |
| font-size: clamp(1.1rem, 2.8vw, 1.4rem); | |
| color: #ffffff; | |
| margin-bottom: 2rem; | |
| line-height: 1.6; | |
| max-width: 800px; | |
| margin-left: auto; | |
| margin-right: auto; | |
| animation: fadeInUp 1s ease-out 0.3s both; | |
| font-weight: 400; | |
| text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); | |
| } | |
| @keyframes fadeInUp { | |
| 0% { opacity: 0; transform: translateY(30px); } | |
| 100% { opacity: 1; transform: translateY(0); } | |
| } | |
| /* Documentation Buttons - Enhanced Visibility */ | |
| .documentation-buttons { | |
| margin-bottom: 3rem; | |
| animation: fadeInUp 1s ease-out 0.6s both; | |
| display: flex ; | |
| justify-content: center; | |
| gap: 1.5rem; | |
| flex-wrap: wrap; | |
| padding: 1rem 0; | |
| position: relative; | |
| z-index: 10; | |
| } | |
| .documentation-buttons .btn { | |
| background: rgba(255, 255, 255, 0.12) ; | |
| backdrop-filter: blur(25px); | |
| border: 2px solid rgba(255, 255, 255, 0.3) ; | |
| color: #ffffff ; | |
| padding: 18px 35px ; | |
| border-radius: 35px ; | |
| font-weight: 700 ; | |
| text-decoration: none ; | |
| transition: var(--transition-smooth) ; | |
| font-size: 1.1rem ; | |
| text-transform: uppercase; | |
| letter-spacing: 1px; | |
| box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) ; | |
| display: inline-block ; | |
| min-width: 220px; | |
| text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); | |
| } | |
| .documentation-buttons .btn-outline-info { | |
| border-color: #00b4ff ; | |
| color: #ffffff ; | |
| background: linear-gradient(135deg, rgba(0, 180, 255, 0.15), rgba(0, 180, 255, 0.05)) ; | |
| } | |
| .documentation-buttons .btn-outline-info:hover { | |
| background: linear-gradient(135deg, #00b4ff, #0288d1) ; | |
| color: white ; | |
| box-shadow: 0 12px 35px rgba(0, 180, 255, 0.6) ; | |
| transform: translateY(-8px) scale(1.05) ; | |
| border-color: #00b4ff ; | |
| } | |
| .documentation-buttons .btn-outline-success { | |
| border-color: #00e676 ; | |
| color: #ffffff ; | |
| background: linear-gradient(135deg, rgba(0, 230, 118, 0.15), rgba(0, 230, 118, 0.05)) ; | |
| } | |
| .documentation-buttons .btn-outline-success:hover { | |
| background: linear-gradient(135deg, #00e676, #00c853) ; | |
| color: white ; | |
| box-shadow: 0 12px 35px rgba(0, 230, 118, 0.6) ; | |
| transform: translateY(-8px) scale(1.05) ; | |
| border-color: #00e676 ; | |
| } | |
| /* Hero Action Buttons - Enhanced */ | |
| .hero-buttons { | |
| animation: fadeInUp 1s ease-out 0.9s both; | |
| display: flex ; | |
| justify-content: center; | |
| gap: 2rem; | |
| flex-wrap: wrap; | |
| margin-top: 2rem; | |
| } | |
| .hero-buttons .btn { | |
| padding: 18px 40px ; | |
| border-radius: 30px ; | |
| font-weight: 700 ; | |
| font-size: 1.1rem ; | |
| transition: var(--transition-smooth) ; | |
| border: none ; | |
| text-transform: uppercase; | |
| letter-spacing: 1px; | |
| min-width: 200px; | |
| box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) ; | |
| } | |
| .hero-buttons .btn-primary { | |
| background: linear-gradient(135deg, #00b4ff, #1e88e5) ; | |
| color: white ; | |
| } | |
| .hero-buttons .btn-primary:hover { | |
| transform: translateY(-5px) scale(1.05) ; | |
| box-shadow: 0 15px 40px rgba(0, 180, 255, 0.6) ; | |
| background: linear-gradient(135deg, #1e88e5, #1565c0) ; | |
| } | |
| .hero-buttons .btn-outline-light { | |
| background: rgba(255, 255, 255, 0.1) ; | |
| border: 2px solid rgba(255, 255, 255, 0.5) ; | |
| color: white ; | |
| backdrop-filter: blur(15px); | |
| } | |
| .hero-buttons .btn-outline-light:hover { | |
| background: white ; | |
| color: #1e3c72 ; | |
| transform: translateY(-5px) scale(1.05) ; | |
| box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4) ; | |
| } | |
| .hero-buttons .btn-outline-light { | |
| background: var(--card-bg); | |
| backdrop-filter: blur(15px); | |
| border: 2px solid var(--glass-border); | |
| color: var(--text-light); | |
| } | |
| .hero-buttons .btn-outline-light:hover { | |
| background: white; | |
| color: var(--dark-bg); | |
| transform: translateY(-3px); | |
| } | |
| /* Documentation Buttons - Floating Glass Effect */ | |
| .documentation-buttons { | |
| margin-bottom: 3rem; | |
| animation: fade-in-up 1.2s ease-out 0.6s both; | |
| } | |
| .documentation-buttons .btn { | |
| background: var(--glass-bg); | |
| border: 1px solid var(--glass-border); | |
| color: var(--text-light); | |
| backdrop-filter: blur(10px); | |
| padding: 0.8rem 2rem; | |
| border-radius: 50px; | |
| font-weight: 600; | |
| letter-spacing: 0.5px; | |
| transition: var(--transition-smooth); | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .documentation-buttons .btn::before { | |
| content: ''; | |
| position: absolute; | |
| top: 0; | |
| left: -100%; | |
| width: 100%; | |
| height: 100%; | |
| background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent); | |
| transition: left 0.5s; | |
| } | |
| .documentation-buttons .btn:hover::before { | |
| left: 100%; | |
| } | |
| .documentation-buttons .btn:hover { | |
| transform: translateY(-3px); | |
| box-shadow: var(--hover-shadow); | |
| border-color: var(--primary-color); | |
| } | |
| .btn-outline-info:hover { | |
| background: var(--primary-color); | |
| border-color: var(--primary-color); | |
| color: var(--darker-bg); | |
| } | |
| .btn-outline-success:hover { | |
| background: var(--success-color); | |
| border-color: var(--success-color); | |
| color: var(--darker-bg); | |
| } | |
| /* Hero Buttons */ | |
| .hero-buttons { | |
| display: flex; | |
| gap: 1rem; | |
| justify-content: center; | |
| flex-wrap: wrap; | |
| animation: fade-in-up 1.4s ease-out 0.9s both; | |
| } | |
| .hero-buttons .btn { | |
| padding: 1rem 2.5rem; | |
| font-size: 1.1rem; | |
| font-weight: 600; | |
| border-radius: 50px; | |
| letter-spacing: 0.5px; | |
| transition: var(--transition-smooth); | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .btn-primary { | |
| background: linear-gradient(135deg, #00b4ff 0%, #0288d1 50%, #1e88e5 100%); | |
| border: none; | |
| color: var(--text-light); | |
| } | |
| .btn-primary:hover { | |
| background: linear-gradient(135deg, #0288d1 0%, #1976d2 50%, #1565c0 100%); | |
| transform: translateY(-3px) scale(1.05); | |
| box-shadow: var(--hover-shadow); | |
| filter: brightness(1.1); | |
| } | |
| .btn-outline-light { | |
| border: 2px solid var(--glass-border); | |
| color: var(--text-light); | |
| background: var(--glass-bg); | |
| backdrop-filter: blur(10px); | |
| } | |
| .btn-outline-light:hover { | |
| background: var(--text-light); | |
| color: var(--darker-bg); | |
| transform: translateY(-3px) scale(1.05); | |
| box-shadow: var(--hover-shadow); | |
| } | |
| /* Cards - Darker with Subtle Space Gradient */ | |
| .card { | |
| background: linear-gradient(135deg, | |
| rgba(8, 12, 20, 0.92) 0%, | |
| rgba(12, 16, 28, 0.88) 30%, | |
| rgba(16, 20, 32, 0.85) 70%, | |
| rgba(10, 14, 24, 0.90) 100%); | |
| backdrop-filter: blur(25px); | |
| border: 1px solid rgba(255, 255, 255, 0.08); | |
| border-radius: 18px; | |
| transition: var(--transition-smooth); | |
| box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4); | |
| color: var(--text-light) ; | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .card::before { | |
| content: ''; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| bottom: 0; | |
| background: linear-gradient(135deg, | |
| rgba(0, 180, 255, 0.03) 0%, | |
| rgba(30, 136, 229, 0.02) 30%, | |
| rgba(255, 215, 0, 0.02) 70%, | |
| rgba(0, 180, 255, 0.03) 100%); | |
| opacity: 0; | |
| transition: var(--transition-smooth); | |
| pointer-events: none; | |
| } | |
| .card:hover::before { | |
| opacity: 1; | |
| } | |
| .card:hover { | |
| transform: translateY(-6px) scale(1.01); | |
| box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5); | |
| border-color: rgba(0, 180, 255, 0.2); | |
| background: linear-gradient(135deg, | |
| rgba(12, 16, 28, 0.95) 0%, | |
| rgba(18, 24, 36, 0.90) 30%, | |
| rgba(22, 28, 40, 0.88) 70%, | |
| rgba(15, 20, 32, 0.93) 100%); | |
| } | |
| .card-body { | |
| padding: 2rem; | |
| position: relative; | |
| z-index: 2; | |
| } | |
| .card-title { | |
| color: #ffffff ; | |
| font-weight: 700; | |
| font-size: 1.4rem; | |
| margin-bottom: 1rem; | |
| font-family: 'Space Grotesk', sans-serif; | |
| } | |
| .card-text { | |
| color: #f0f0f0 ; | |
| line-height: 1.6; | |
| font-size: 1rem; | |
| margin-bottom: 1.5rem; | |
| opacity: 0.95; | |
| } | |
| .feature-icon { | |
| font-size: 3rem; | |
| margin-bottom: 1.5rem; | |
| background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| background-clip: text; | |
| transition: var(--transition-smooth); | |
| display: block; | |
| } | |
| .feature-icon:hover { | |
| transform: scale(1.1); | |
| filter: drop-shadow(0 0 15px rgba(0, 180, 255, 0.7)); | |
| } | |
| /* Ensure all text is properly visible */ | |
| .card h1, .card h2, .card h3, .card h4, .card h5, .card h6 { | |
| color: var(--text-light) ; | |
| } | |
| .card p, .card span, .card div, .card small { | |
| color: #e8e8e8 ; | |
| } | |
| .text-muted { | |
| color: #d0d0d0 ; | |
| } | |
| /* Button Styles */ | |
| .btn { | |
| border-radius: 20px; | |
| font-weight: 600; | |
| text-transform: uppercase; | |
| letter-spacing: 0.5px; | |
| padding: 10px 25px; | |
| border: none; | |
| transition: var(--transition-smooth); | |
| font-size: 0.9rem; | |
| } | |
| .btn-primary { | |
| background: linear-gradient(135deg, #00b4ff 0%, #0288d1 50%, #1e88e5 100%); | |
| color: white; | |
| box-shadow: 0 6px 20px rgba(0, 180, 255, 0.3); | |
| border: 1px solid rgba(255, 255, 255, 0.1); | |
| } | |
| .btn-primary:hover { | |
| background: linear-gradient(135deg, #0288d1 0%, #1976d2 50%, #1565c0 100%); | |
| transform: translateY(-2px); | |
| box-shadow: 0 10px 30px rgba(0, 180, 255, 0.5); | |
| color: white; | |
| border-color: rgba(255, 255, 255, 0.2); | |
| } | |
| .btn-sm { | |
| padding: 8px 20px; | |
| font-size: 0.85rem; | |
| border-radius: 15px; | |
| } | |
| .btn-outline-light { | |
| background: var(--card-bg); | |
| backdrop-filter: blur(15px); | |
| border: 2px solid var(--glass-border); | |
| color: var(--text-light); | |
| } | |
| .btn-outline-light:hover { | |
| background: white; | |
| color: var(--dark-bg); | |
| transform: translateY(-2px); | |
| box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3); | |
| } | |
| /* Footer Styles */ | |
| .footer { | |
| background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%); | |
| padding: 3rem 0 2rem; | |
| margin-top: 5rem; | |
| border-top: 1px solid var(--glass-border); | |
| } | |
| .credit-box { | |
| background: var(--card-bg); | |
| backdrop-filter: blur(15px); | |
| border: 1px solid var(--glass-border); | |
| border-radius: 15px; | |
| padding: 1.5rem; | |
| transition: var(--transition-smooth); | |
| } | |
| .credit-box:hover { | |
| transform: translateY(-5px); | |
| box-shadow: var(--hover-shadow); | |
| } | |
| .credit-box small { | |
| color: var(--text-light) ; | |
| font-weight: 500; | |
| } | |
| /* Global Input and Form Styles */ | |
| input, textarea, select { | |
| color: #ffffff ; | |
| background: rgba(255, 255, 255, 0.1) ; | |
| border: 1px solid rgba(255, 255, 255, 0.2) ; | |
| } | |
| input::placeholder, textarea::placeholder { | |
| color: #cbd5e0 ; | |
| opacity: 0.8; | |
| } | |
| input:focus, textarea:focus, select:focus { | |
| color: #ffffff ; | |
| background: rgba(255, 255, 255, 0.15) ; | |
| border-color: #00b4ff ; | |
| box-shadow: 0 0 15px rgba(0, 180, 255, 0.3) ; | |
| } | |
| /* Form Controls */ | |
| .form-control, .form-select { | |
| color: #ffffff ; | |
| background: rgba(255, 255, 255, 0.1) ; | |
| border: 1px solid rgba(255, 255, 255, 0.2) ; | |
| } | |
| .form-control:focus, .form-select:focus { | |
| color: #ffffff ; | |
| background: rgba(255, 255, 255, 0.15) ; | |
| border-color: #00b4ff ; | |
| box-shadow: 0 0 15px rgba(0, 180, 255, 0.3) ; | |
| } | |
| .form-control::placeholder { | |
| color: #cbd5e0 ; | |
| opacity: 0.8; | |
| } | |
| /* Dropdown Menu Styles - Dark Space Theme */ | |
| .dropdown-menu { | |
| background: linear-gradient(145deg, #1a1a2e, #16213e) ; | |
| backdrop-filter: blur(15px); | |
| border: 1px solid #00b4ff ; | |
| box-shadow: 0 8px 32px rgba(0, 180, 255, 0.3) ; | |
| border-radius: 12px; | |
| } | |
| .dropdown-item { | |
| color: #ffffff ; | |
| background: transparent ; | |
| transition: var(--transition-smooth); | |
| padding: 0.75rem 1rem; | |
| border-bottom: 1px solid rgba(255, 255, 255, 0.1); | |
| } | |
| .dropdown-item:hover, .dropdown-item:focus { | |
| color: #ffffff ; | |
| background: linear-gradient(90deg, #00b4ff, #0066cc) ; | |
| transform: translateX(5px); | |
| text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); | |
| } | |
| .dropdown-item.active, .dropdown-item:active { | |
| color: #ffffff ; | |
| background: linear-gradient(90deg, #00b4ff, #0080ff) ; | |
| } | |
| /* Select dropdown options */ | |
| select option { | |
| background: #1a1a2e ; | |
| color: #ffffff ; | |
| padding: 0.5rem; | |
| } | |
| select option:hover, select option:focus { | |
| background: rgba(0, 180, 255, 0.1) ; | |
| } | |
| /* Datalist options */ | |
| datalist option { | |
| background: #1a1a2e ; | |
| color: #ffffff ; | |
| } | |
| /* Bootstrap Select Dropdown */ | |
| .form-select option { | |
| background: #1a1a2e ; | |
| color: #ffffff ; | |
| } | |
| /* Responsive Design */ | |
| @media (max-width: 992px) { | |
| .hero-title { | |
| font-size: 2.5rem; | |
| } | |
| .hero-subtitle { | |
| font-size: 1.1rem; | |
| } | |
| .documentation-buttons { | |
| flex-direction: column; | |
| align-items: center; | |
| } | |
| .hero-buttons { | |
| flex-direction: column; | |
| align-items: center; | |
| } | |
| .hero-buttons .btn { | |
| width: 100%; | |
| max-width: 300px; | |
| margin-bottom: 1rem; | |
| } | |
| .card-body { | |
| padding: 1.5rem; | |
| } | |
| .feature-icon { | |
| font-size: 2.5rem; | |
| } | |
| } | |
| @media (max-width: 768px) { | |
| .hero-section { | |
| padding: 100px 0 60px; | |
| } | |
| .hero-title { | |
| font-size: 2.5rem; | |
| } | |
| .hero-subtitle { | |
| font-size: 1.1rem; | |
| } | |
| .documentation-buttons { | |
| flex-direction: column; | |
| align-items: center; | |
| gap: 0.8rem; | |
| } | |
| .documentation-buttons .btn { | |
| width: 100%; | |
| max-width: 280px; | |
| } | |
| .hero-buttons { | |
| flex-direction: column; | |
| align-items: center; | |
| gap: 1rem; | |
| } | |
| .hero-buttons .btn { | |
| width: 100%; | |
| max-width: 300px; | |
| } | |
| .card-body { | |
| padding: 1.5rem; | |
| } | |
| .feature-icon { | |
| font-size: 2.5rem; | |
| } | |
| .navbar-brand { | |
| font-size: 1.2rem; | |
| } | |
| .nav-link { | |
| font-size: 1rem; | |
| padding: 8px 12px ; | |
| } | |
| } | |
| @media (max-width: 576px) { | |
| .hero-section { | |
| padding: 90px 0 50px; | |
| } | |
| .hero-title { | |
| font-size: 2rem; | |
| } | |
| .card-body { | |
| padding: 1.2rem; | |
| } | |
| } | |
| /* Scroll Progress Indicator */ | |
| .scroll-indicator { | |
| position: fixed; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 3px; | |
| background: rgba(255, 255, 255, 0.1); | |
| z-index: 1001; | |
| } | |
| .scroll-progress { | |
| height: 100%; | |
| background: linear-gradient(90deg, var(--primary-color), var(--accent-color)); | |
| width: 0%; | |
| transition: width 0.1s ease; | |
| } | |
| /* Utility Classes */ | |
| .text-gradient { | |
| background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| background-clip: text; | |
| } | |
| .glow-on-hover { | |
| transition: var(--transition-smooth); | |
| } | |
| .glow-on-hover:hover { | |
| box-shadow: var(--neon-glow); | |
| } | |
| /* Animation Classes */ | |
| @keyframes fadeInUp { | |
| 0% { opacity: 0; transform: translateY(20px); } | |
| 100% { opacity: 1; transform: translateY(0); } | |
| } | |
| .fade-in-up { | |
| animation: fadeInUp 0.6s ease-out; | |
| } | |
| /* Ensure high contrast for all text */ | |
| body, .card, .modal { | |
| color: var(--text-light) ; | |
| } | |
| h1, h2, h3, h4, h5, h6 { | |
| color: var(--text-light) ; | |
| font-weight: 600; | |
| } | |
| p, span, div, small, .card-text { | |
| color: var(--text-secondary) ; | |
| } | |
| .text-light { | |
| color: var(--text-light) ; | |
| } | |
| .text-muted { | |
| color: var(--text-secondary) ; | |
| } | |
| /* Advanced Animations */ | |
| @keyframes slide-in-bottom { | |
| 0% { transform: translateY(50px); opacity: 0; } | |
| 100% { transform: translateY(0); opacity: 1; } | |
| } | |
| @keyframes fade-in-up { | |
| 0% { transform: translateY(30px); opacity: 0; } | |
| 100% { transform: translateY(0); opacity: 1; } | |
| } | |
| @keyframes pulse-glow { | |
| 0%, 100% { box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3); } | |
| 50% { box-shadow: 0 15px 40px rgba(0, 212, 255, 0.6); } | |
| } | |
| .animate-in { | |
| animation: fade-in-up 0.8s ease-out forwards; | |
| } | |
| .slide-in-bottom { | |
| animation: slide-in-bottom 0.6s ease-out forwards; | |
| } | |
| /* Interactive Elements */ | |
| .interactive-card { | |
| cursor: pointer; | |
| transition: var(--transition-smooth); | |
| } | |
| .interactive-card:hover { | |
| transform: perspective(1000px) rotateX(5deg) rotateY(5deg); | |
| } | |
| /* Footer Enhancement */ | |
| .footer { | |
| background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%); | |
| padding: 3rem 0 2rem; | |
| margin-top: 5rem; | |
| border-top: 1px solid var(--glass-border); | |
| position: relative; | |
| } | |
| .footer::before { | |
| content: ''; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| height: 1px; | |
| background: linear-gradient(90deg, transparent, var(--primary-color), transparent); | |
| } | |
| .credit-box { | |
| background: var(--glass-bg); | |
| backdrop-filter: blur(20px); | |
| border: 1px solid var(--glass-border); | |
| border-radius: 15px; | |
| padding: 1.5rem; | |
| transition: var(--transition-smooth); | |
| } | |
| .credit-box:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2); | |
| } | |
| /* Modal Improvements */ | |
| .modal-content { | |
| background: linear-gradient(135deg, | |
| rgba(15, 20, 35, 0.95) 0%, | |
| rgba(25, 30, 45, 0.90) 50%, | |
| rgba(20, 25, 40, 0.95) 100%); | |
| backdrop-filter: blur(20px); | |
| border: 1px solid rgba(255, 255, 255, 0.1); | |
| border-radius: 15px; | |
| color: #ffffff; | |
| } | |
| .modal-header { | |
| border-bottom: 1px solid rgba(255, 255, 255, 0.1); | |
| background: rgba(0, 180, 255, 0.1); | |
| } | |
| .modal-title { | |
| color: #ffffff; | |
| font-weight: 600; | |
| } | |
| .modal-body { | |
| color: #e8e8e8; | |
| } | |
| .btn-close { | |
| filter: invert(1); | |
| opacity: 0.8; | |
| } | |
| .btn-close:hover { | |
| opacity: 1; | |
| } | |
| .modal-backdrop { | |
| background-color: rgba(0, 0, 0, 0.8); | |
| } | |
| /* Documentation Modal Styles */ | |
| .modal-content { | |
| background: linear-gradient(135deg, #0a0b1e 0%, #1a1b3a 50%, #2d1b69 100%); | |
| border: 1px solid rgba(255, 255, 255, 0.1); | |
| border-radius: 20px; | |
| box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); | |
| backdrop-filter: blur(20px); | |
| } | |
| .modal-header { | |
| border-bottom: 1px solid rgba(255, 255, 255, 0.1); | |
| background: rgba(0, 212, 255, 0.1); | |
| border-radius: 20px 20px 0 0; | |
| } | |
| .modal-title { | |
| color: var(--accent-color); | |
| font-family: 'Space Grotesk', sans-serif; | |
| font-weight: 600; | |
| } | |
| .modal-body { | |
| color: var(--text-light); | |
| max-height: 70vh; | |
| overflow-y: auto; | |
| } | |
| .modal-footer { | |
| border-top: 1px solid rgba(255, 255, 255, 0.1); | |
| background: rgba(0, 212, 255, 0.05); | |
| border-radius: 0 0 20px 20px; | |
| } | |
| .documentation-content h4 { | |
| color: var(--primary-color); | |
| font-family: 'Space Grotesk', sans-serif; | |
| font-weight: 600; | |
| margin-bottom: 1rem; | |
| padding-bottom: 0.5rem; | |
| border-bottom: 2px solid rgba(0, 212, 255, 0.3); | |
| } | |
| .documentation-content .alert { | |
| background: rgba(0, 212, 255, 0.1); | |
| border: 1px solid rgba(0, 212, 255, 0.3); | |
| color: var(--text-light); | |
| border-radius: 15px; | |
| } | |
| .documentation-content .card { | |
| border: 1px solid rgba(255, 255, 255, 0.1); | |
| background: rgba(255, 255, 255, 0.05); | |
| transition: transform 0.3s ease, box-shadow 0.3s ease; | |
| } | |
| .documentation-content .card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2); | |
| } | |
| .documentation-content .list-unstyled li { | |
| padding: 0.5rem 0; | |
| border-bottom: 1px solid rgba(255, 255, 255, 0.05); | |
| color: var(--text-muted); | |
| } | |
| .documentation-content .text-info { | |
| color: var(--accent-color) ; | |
| } | |
| .documentation-content .text-primary { | |
| color: var(--primary-color) ; | |
| } | |
| .documentation-content .text-secondary { | |
| color: #6c757d ; | |
| } | |
| /* Modal backdrop enhancement */ | |
| .modal-backdrop { | |
| background-color: rgba(0, 0, 0, 0.8); | |
| } | |
| /* Custom scrollbar for modal */ | |
| .modal-body::-webkit-scrollbar { | |
| width: 8px; | |
| } | |
| .modal-body::-webkit-scrollbar-track { | |
| background: rgba(255, 255, 255, 0.1); | |
| border-radius: 4px; | |
| } | |
| .modal-body::-webkit-scrollbar-thumb { | |
| background: var(--primary-color); | |
| border-radius: 4px; | |
| } | |
| .modal-body::-webkit-scrollbar-thumb:hover { | |
| background: var(--accent-color); | |
| } | |
| /* Responsive adjustments for modal */ | |
| @media (max-width: 768px) { | |
| .modal-dialog { | |
| margin: 1rem; | |
| } | |
| .modal-body { | |
| max-height: 60vh; | |
| } | |
| .documentation-content .row .col-md-6, | |
| .documentation-content .row .col-md-4 { | |
| margin-bottom: 1rem; | |
| } | |
| } | |
| /* Badge and Status Styling - High Visibility */ | |
| .badge { | |
| padding: 0.5rem 1rem ; | |
| border-radius: 20px ; | |
| font-weight: 600 ; | |
| font-size: 0.85rem ; | |
| text-transform: uppercase; | |
| letter-spacing: 0.5px; | |
| border: 1px solid transparent; | |
| display: inline-block; | |
| margin: 0.2rem; | |
| } | |
| /* Status-specific badge colors with high contrast */ | |
| .badge.bg-success, | |
| .status-operational, | |
| .badge-success { | |
| background: linear-gradient(135deg, #00e676, #00c853) ; | |
| color: #000000 ; | |
| border: 1px solid #00e676; | |
| box-shadow: 0 2px 8px rgba(0, 230, 118, 0.3); | |
| } | |
| .badge.bg-warning, | |
| .status-development, | |
| .badge-warning { | |
| background: linear-gradient(135deg, #ffc107, #ff9800) ; | |
| color: #000000 ; | |
| border: 1px solid #ffc107; | |
| box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3); | |
| } | |
| .badge.bg-danger, | |
| .status-cancelled, | |
| .badge-danger { | |
| background: linear-gradient(135deg, #f44336, #d32f2f) ; | |
| color: #ffffff ; | |
| border: 1px solid #f44336; | |
| box-shadow: 0 2px 8px rgba(244, 67, 54, 0.3); | |
| } | |
| .badge.bg-info, | |
| .status-planned, | |
| .badge-info { | |
| background: linear-gradient(135deg, #00d4ff, #0099cc) ; | |
| color: #000000 ; | |
| border: 1px solid #00d4ff; | |
| box-shadow: 0 2px 8px rgba(0, 212, 255, 0.3); | |
| } | |
| .badge.bg-primary, | |
| .badge-primary { | |
| background: linear-gradient(135deg, #00b4ff, #0288d1) ; | |
| color: #ffffff ; | |
| border: 1px solid #00b4ff; | |
| box-shadow: 0 2px 8px rgba(0, 180, 255, 0.3); | |
| } | |
| .badge.bg-secondary, | |
| .badge-secondary { | |
| background: linear-gradient(135deg, #6c757d, #495057) ; | |
| color: #ffffff ; | |
| border: 1px solid #6c757d; | |
| box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3); | |
| } | |
| /* Modal-specific badge improvements */ | |
| .modal .badge { | |
| margin: 0.25rem 0.25rem 0.25rem 0; | |
| color: #ffffff ; /* Ensure text is always white in modals */ | |
| font-weight: 700 ; /* Make text bolder for better visibility */ | |
| text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5); /* Add text shadow for contrast */ | |
| } | |
| /* Ensure all badge variants have proper text color in modals */ | |
| .modal .badge.bg-success, | |
| .modal .status-operational, | |
| .modal .badge-success { | |
| color: #000000 ; /* Dark text for light backgrounds */ | |
| font-weight: 700 ; | |
| } | |
| .modal .badge.bg-warning, | |
| .modal .status-development, | |
| .modal .badge-warning { | |
| color: #000000 ; /* Dark text for light backgrounds */ | |
| font-weight: 700 ; | |
| } | |
| .modal .badge.bg-info, | |
| .modal .status-planned, | |
| .modal .badge-info { | |
| color: #000000 ; /* Dark text for light backgrounds */ | |
| font-weight: 700 ; | |
| } | |
| /* Rocket type badge specific styling */ | |
| #modalRocketType { | |
| background: linear-gradient(135deg, #00b4ff, #0288d1) ; | |
| color: #ffffff ; | |
| font-weight: 700 ; | |
| text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7) ; | |
| padding: 0.5rem 1rem ; | |
| border-radius: 20px ; | |
| font-size: 0.85rem ; | |
| text-transform: uppercase; | |
| letter-spacing: 0.5px; | |
| border: 1px solid #00b4ff ; | |
| box-shadow: 0 2px 8px rgba(0, 180, 255, 0.4) ; | |
| display: inline-block; | |
| } | |
| /* General improvement for all modal badges to ensure visibility */ | |
| .modal .badge, | |
| .modal .badge.bg-primary { | |
| color: #ffffff ; | |
| font-weight: 700 ; | |
| text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7) ; | |
| min-width: 60px; | |
| text-align: center; | |
| } | |
| /* Ensure status badges also have proper contrast */ | |
| .modal #modalRocketStatus { | |
| padding: 0.25rem 0.75rem; | |
| border-radius: 15px; | |
| font-weight: 600; | |
| font-size: 0.8rem; | |
| } | |
| /* Modal and Preloader Interaction Fixes */ | |
| .modal-open .preloader { | |
| display: none ; | |
| } | |
| .modal.show + .preloader { | |
| display: none ; | |
| } | |
| .modal-backdrop + .preloader { | |
| z-index: 1030 ; | |
| } | |
| /* Ensure modals work properly */ | |
| .modal-backdrop { | |
| z-index: 1050; | |
| } | |
| .modal { | |
| z-index: 1060; | |
| } | |
| /* Force clean state after modal close */ | |
| body:not(.modal-open) { | |
| overflow-y: auto ; | |
| pointer-events: auto ; | |
| } | |