2025-11-12 08:17:28 -08:00
|
|
|
/* Miracles In Motion - Custom Styles */
|
|
|
|
|
|
|
|
|
|
/* Button Components */
|
|
|
|
|
.btn-primary {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
border-radius: 9999px;
|
|
|
|
|
background: linear-gradient(to right, #c026d3, #4f46e5);
|
|
|
|
|
padding: 0.75rem 1.5rem;
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
color: white;
|
|
|
|
|
box-shadow: 0 10px 15px -3px rgba(236, 72, 153, 0.25);
|
|
|
|
|
transition: all 0.3s;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-primary:hover {
|
|
|
|
|
transform: scale(1.05);
|
|
|
|
|
box-shadow: 0 25px 25px -5px rgba(0, 0, 0, 0.1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-secondary {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
border-radius: 9999px;
|
|
|
|
|
border: 1px solid rgba(212, 212, 216, 0.3);
|
|
|
|
|
background: rgba(255, 255, 255, 0.7);
|
|
|
|
|
backdrop-filter: blur(12px);
|
|
|
|
|
padding: 0.75rem 1.5rem;
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
color: #374151;
|
|
|
|
|
transition: all 0.3s;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-secondary:hover {
|
|
|
|
|
background: rgba(255, 255, 255, 1);
|
|
|
|
|
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-white {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
border-radius: 9999px;
|
|
|
|
|
background: white;
|
|
|
|
|
padding: 0.75rem 1.5rem;
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
color: #111827;
|
|
|
|
|
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
|
|
|
|
|
transition: all 0.3s;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-white:hover {
|
|
|
|
|
transform: scale(1.05);
|
|
|
|
|
box-shadow: 0 25px 25px -5px rgba(0, 0, 0, 0.1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.navlink {
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
color: #6b7280;
|
|
|
|
|
transition: color 0.3s;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.navlink:hover {
|
|
|
|
|
color: #ec4899;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.input {
|
|
|
|
|
width: 100%;
|
|
|
|
|
border-radius: 0.75rem;
|
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.3);
|
|
|
|
|
background: rgba(255, 255, 255, 0.7);
|
|
|
|
|
backdrop-filter: blur(12px);
|
|
|
|
|
padding: 0.5rem 0.75rem;
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
transition: all 0.3s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.input:focus {
|
|
|
|
|
outline: none;
|
|
|
|
|
border-color: #ec4899;
|
|
|
|
|
box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Custom Animations */
|
|
|
|
|
@keyframes marquee {
|
|
|
|
|
0% { transform: translateX(100%); }
|
|
|
|
|
100% { transform: translateX(-100%); }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.animate-marquee {
|
|
|
|
|
animation: marquee 30s linear infinite;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes float {
|
|
|
|
|
0%, 100% { transform: translateY(0px); }
|
|
|
|
|
50% { transform: translateY(-10px); }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.animate-float {
|
|
|
|
|
animation: float 6s ease-in-out infinite;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes pulse-slow {
|
|
|
|
|
0%, 100% { opacity: 1; }
|
|
|
|
|
50% { opacity: 0.5; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.animate-pulse-slow {
|
|
|
|
|
animation: pulse-slow 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Gradient Text */
|
|
|
|
|
.gradient-text {
|
|
|
|
|
background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
|
|
|
|
|
-webkit-background-clip: text;
|
|
|
|
|
-webkit-text-fill-color: transparent;
|
|
|
|
|
background-clip: text;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Hero Background Pattern */
|
|
|
|
|
.hero-pattern {
|
|
|
|
|
background-image:
|
|
|
|
|
radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
|
|
|
|
|
radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
|
|
|
|
|
radial-gradient(circle at 40% 40%, rgba(236, 72, 153, 0.2) 0%, transparent 50%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Card Hover Effects */
|
|
|
|
|
.card-hover {
|
|
|
|
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card-hover:hover {
|
|
|
|
|
transform: translateY(-4px);
|
|
|
|
|
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Custom Scrollbar */
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
|
width: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
|
background: rgba(255, 255, 255, 0.1);
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
|
background: linear-gradient(135deg, #ec4899, #8b5cf6);
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
|
|
|
background: linear-gradient(135deg, #db2777, #7c3aed);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Focus Styles for Accessibility */
|
|
|
|
|
.focus-visible\:ring-2:focus-visible {
|
|
|
|
|
outline: 2px solid transparent;
|
|
|
|
|
outline-offset: 2px;
|
|
|
|
|
box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.5);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Screen Reader Only */
|
|
|
|
|
.sr-only {
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: 1px;
|
|
|
|
|
height: 1px;
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: -1px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
clip: rect(0, 0, 0, 0);
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
border: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.focus\:not-sr-only:focus {
|
|
|
|
|
position: static;
|
|
|
|
|
width: auto;
|
|
|
|
|
height: auto;
|
|
|
|
|
padding: inherit;
|
|
|
|
|
margin: inherit;
|
|
|
|
|
overflow: visible;
|
|
|
|
|
clip: auto;
|
|
|
|
|
white-space: normal;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Print Styles */
|
|
|
|
|
@media print {
|
|
|
|
|
.no-print {
|
|
|
|
|
display: none !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
color: black !important;
|
|
|
|
|
background: white !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gradient-text {
|
|
|
|
|
color: black !important;
|
|
|
|
|
-webkit-text-fill-color: initial !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* High Contrast Mode Support */
|
|
|
|
|
@media (prefers-contrast: high) {
|
|
|
|
|
.btn-primary {
|
|
|
|
|
border: 2px solid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-secondary {
|
|
|
|
|
border: 2px solid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card-hover {
|
|
|
|
|
border: 2px solid;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Reduced Motion Support */
|
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
|
|
|
*,
|
|
|
|
|
*::before,
|
|
|
|
|
*::after {
|
|
|
|
|
animation-duration: 0.01ms !important;
|
|
|
|
|
animation-iteration-count: 1 !important;
|
|
|
|
|
transition-duration: 0.01ms !important;
|
|
|
|
|
scroll-behavior: auto !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.animate-marquee {
|
|
|
|
|
animation: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.animate-float {
|
|
|
|
|
animation: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.animate-pulse-slow {
|
|
|
|
|
animation: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Dark Mode Adjustments */
|
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
|
:root {
|
|
|
|
|
color-scheme: dark;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Mobile Optimizations */
|
|
|
|
|
@media (max-width: 640px) {
|
|
|
|
|
.btn-primary,
|
|
|
|
|
.btn-secondary {
|
|
|
|
|
padding: 0.5rem 1rem;
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hero-pattern {
|
|
|
|
|
background-image: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.animate-marquee {
|
|
|
|
|
animation-duration: 20s;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Tablet Optimizations */
|
|
|
|
|
@media (min-width: 641px) and (max-width: 1024px) {
|
|
|
|
|
.card-hover:hover {
|
|
|
|
|
transform: translateY(-2px);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Loading States */
|
|
|
|
|
.loading {
|
|
|
|
|
opacity: 0.6;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.skeleton {
|
|
|
|
|
background: linear-gradient(90deg,
|
|
|
|
|
rgba(255, 255, 255, 0.1) 25%,
|
|
|
|
|
rgba(255, 255, 255, 0.2) 50%,
|
|
|
|
|
rgba(255, 255, 255, 0.1) 75%
|
|
|
|
|
);
|
|
|
|
|
background-size: 200% 100%;
|
|
|
|
|
animation: skeleton-loading 1.5s infinite;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes skeleton-loading {
|
|
|
|
|
0% { background-position: 200% 0; }
|
|
|
|
|
100% { background-position: -200% 0; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Form Validation States */
|
|
|
|
|
.input:invalid {
|
|
|
|
|
border-color: #ef4444;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.input:invalid:focus {
|
|
|
|
|
border-color: #ef4444;
|
|
|
|
|
box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.input:valid {
|
|
|
|
|
border-color: #10b981;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.input:valid:focus {
|
|
|
|
|
border-color: #10b981;
|
|
|
|
|
box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Utility Classes */
|
|
|
|
|
.text-balance {
|
|
|
|
|
text-wrap: balance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bg-noise {
|
|
|
|
|
background-image:
|
|
|
|
|
url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Error and Success States */
|
|
|
|
|
.error-state {
|
|
|
|
|
border-color: #ef4444;
|
|
|
|
|
background-color: #fef2f2;
|
|
|
|
|
color: #b91c1c;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.success-state {
|
|
|
|
|
border-color: #10b981;
|
|
|
|
|
background-color: #f0fdf4;
|
|
|
|
|
color: #166534;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Performance Optimizations */
|
|
|
|
|
.will-change-transform {
|
|
|
|
|
will-change: transform;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.contain-layout {
|
|
|
|
|
contain: layout;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.contain-paint {
|
|
|
|
|
contain: paint;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Component-specific styles */
|
|
|
|
|
.logo-glow {
|
|
|
|
|
filter: drop-shadow(0 0 10px rgba(236, 72, 153, 0.3));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text-shadow {
|
|
|
|
|
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.backdrop-blur-glass {
|
|
|
|
|
backdrop-filter: blur(12px);
|
|
|
|
|
-webkit-backdrop-filter: blur(12px);
|
2025-10-04 17:46:58 -07:00
|
|
|
}
|