-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
176 lines (154 loc) · 3.79 KB
/
style.css
File metadata and controls
176 lines (154 loc) · 3.79 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
/* Base Styles */
html {
scroll-behavior: smooth;
}
body {
background: linear-gradient(180deg,
#000000d7 15%,
#021342c9 45%,
#0f172a 75%,
#000000 100%
);
}
/* Color Variables */
:root {
/* Primary Colors */
--primary-blue: #3ABEF9;
--primary-dark-blue: #3572EF;
/* Neutral Colors */
--text-light: rgb(209, 213, 219);
--text-white: rgb(255, 255, 255);
/* Background Colors */
--bg-dark-transparent: rgba(0, 0, 0, 0.4);
--bg-hover-light: rgba(255, 255, 255, 0.1);
--bg-hover-dark: rgba(31, 41, 55, 0.7);
/* Border Colors */
--border-dark: rgba(55, 65, 81, 0.5);
--border-light: rgba(255, 255, 255, 0.1);
}
/* Layout Components */
.header-wrapper {
position: relative;
width: 100%;
min-height: 100vh;
overflow: hidden;
background: var(--bg-dark-transparent);
}
.header-content {
position: relative;
z-index: 2;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 4rem 1.5rem;
background: linear-gradient(
to bottom,
rgba(0, 0, 0, 0.2) 0%,
rgba(0, 0, 0, 0.1) 50%,
rgba(7, 7, 7, 0.1) 80%,
rgba(0, 0, 0, 0.89) 85%,
rgb(0, 0, 0) 90%,
rgb(0, 0, 0) 100%
);
}
/* 3D Viewer Component */
spline-viewer {
position: absolute;
top: 0;
left: 0;
right: 0;
width: 100%;
height: 100vh;
pointer-events: none;
z-index: 1;
opacity: 0.9;
}
/* Media Queries */
@media (max-width: 768px) {
spline-viewer {
height: 100vh;
opacity: 0.7;
}
}
/* Navigation Styles */
.bg-black\/40 {
background: rgba(0, 0, 0, 0.2);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
border: 1px solid var(--border-light);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.bg-gray-900\/90 { background-color: rgba(17, 24, 39, 0.9); }
.bg-white\/10 { background-color: var(--bg-hover-light); }
.bg-gray-800\/50 { background-color: rgba(31, 41, 55, 0.5); }
.bg-gray-800\/70 { background-color: var(--bg-hover-dark); }
/* Section Specific Styles */
#pricing {
background: linear-gradient(180deg,
#020617 0%,
#101f49c7 25%,
#12276b 50%,
#0a1c4ed3 75%,
#020617 100%
);
}
/* Card Styles */
.free {
background: linear-gradient(145deg,
rgba(24, 24, 27, 0.95),
rgba(88, 28, 135, 0.15));
}
.basic {
background: linear-gradient(145deg,
rgba(24, 24, 27, 0.95),
rgba(22, 163, 74, 0.15));
}
.standard {
background: linear-gradient(145deg,
rgba(24, 24, 27, 0.95),
rgba(234, 179, 8, 0.15));
}
/* Interactive Elements */
.contact-link {
text-decoration: none;
transition: color 0.3s ease;
position: relative;
}
.contact-link:hover {
color: var(--primary-blue);
}
.contact-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: yellow;
transition: width 0.3s ease;
}
.contact-link:hover::after {
width: 100%;
}
/* Custom Cursors */
.card-hover {
cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>👏</text></svg>") 16 0, auto;
}
.price-hover {
cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>✨</text></svg>") 16 0, auto;
}
/* Animations */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.fade-in {
animation: fadeIn 1s ease-in-out;
}