-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
86 lines (74 loc) · 1.82 KB
/
Copy pathstyles.css
File metadata and controls
86 lines (74 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
:root {
--primary-blossom: #FDF2F8;
--secondary-rose: #FB7185;
--accent-magenta: #BE185D;
--charcoal: #374151;
--white: #ffffff;
--dark: #111827;
--gray-400: #9ca3af;
--gray-500: #6b7280;
--pink-50: #fef2f2;
--pink-100: #ffe4e6;
--transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
/* Offset for fixed navbar */
scroll-padding-top: 5rem;
}
body {
font-family: 'Plus Jakarta Sans', sans-serif;
background-color: var(--primary-blossom);
color: var(--charcoal);
line-height: 1.6;
overflow-x: hidden;
}
.font-serif {
font-family: 'Playfair Display', serif;
}
.max-width {
max-width: 1280px;
margin: 0 auto;
padding: 0 1.5rem;
}
/* Glassmorphism */
.glass {
background: rgba(255, 255, 255, 0.7);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(251, 113, 133, 0.1);
}
/* Animations */
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-15px); }
}
@keyframes spin-slow {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.animate-float { animation: float 4s ease-in-out infinite; }
.animate-spin-slow { animation: spin-slow 12s linear infinite; }
/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar { width: 8px; }
.custom-scrollbar::-webkit-scrollbar-track { background: #FFF1F2; }
.custom-scrollbar::-webkit-scrollbar-thumb {
background: var(--secondary-rose);
border-radius: 10px;
border: 2px solid #FFF1F2;
}
/* Responsive */
@media (max-width: 1024px) {
.hero-grid, .track-card {
grid-template-columns: 1fr;
text-align: center;
}
}
@tailwind base;
@tailwind components;
@tailwind utilities;