mhndayesh commited on
Commit
051bd13
·
verified ·
1 Parent(s): 905481c

Delete style.css

Browse files
Files changed (1) hide show
  1. style.css +0 -196
style.css DELETED
@@ -1,196 +0,0 @@
1
- :root {
2
- --primary: #8a2be2;
3
- --secondary: #00d2ff;
4
- --bg-dark: #0a0a0c;
5
- --text-main: #e0e0e0;
6
- --text-muted: #a0a0a0;
7
- --glass: rgba(255, 255, 255, 0.05);
8
- --glass-border: rgba(255, 255, 255, 0.1);
9
- }
10
-
11
- * {
12
- margin: 0;
13
- padding: 0;
14
- box-sizing: border-box;
15
- }
16
-
17
- body {
18
- font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
19
- background-color: var(--bg-dark);
20
- color: var(--text-main);
21
- line-height: 1.6;
22
- overflow-x: hidden;
23
- }
24
-
25
- /* === HERO SECTION === */
26
- .hero {
27
- position: relative;
28
- height: 100vh;
29
- width: 100%;
30
- display: flex;
31
- align-items: center;
32
- justify-content: center;
33
- text-align: center;
34
- padding: 0 2rem;
35
- overflow: hidden;
36
- }
37
-
38
- .hero-bg {
39
- position: absolute;
40
- top: 0;
41
- left: 0;
42
- width: 100%;
43
- height: 100%;
44
- background: url('hero-bg.png') no-repeat center center/cover;
45
- z-index: -2;
46
- filter: brightness(0.4);
47
- /* Darkened for better text contrast */
48
- }
49
-
50
- .hero-overlay {
51
- position: absolute;
52
- top: 0;
53
- left: 0;
54
- width: 100%;
55
- height: 100%;
56
- background: radial-gradient(circle at center, rgba(10, 10, 12, 0.4), var(--bg-dark) 90%);
57
- z-index: -1;
58
- }
59
-
60
- .hero-content {
61
- background: rgba(10, 10, 12, 0.4);
62
- backdrop-filter: blur(8px);
63
- -webkit-backdrop-filter: blur(8px);
64
- padding: 3rem;
65
- border-radius: 40px;
66
- border: 1px solid rgba(255, 255, 255, 0.1);
67
- max-width: 900px;
68
- z-index: 1;
69
- }
70
-
71
- .hero-content h1 {
72
- font-size: clamp(3rem, 10vw, 6rem);
73
- font-weight: 800;
74
- letter-spacing: -2px;
75
- background: linear-gradient(135deg, #fff 0%, var(--secondary) 100%);
76
- -webkit-background-clip: text;
77
- background-clip: text;
78
- -webkit-text-fill-color: transparent;
79
- margin-bottom: 1.5rem;
80
- text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
81
- /* Added for depth */
82
- }
83
-
84
- .hero-content p {
85
- font-size: clamp(1.1rem, 3vw, 1.5rem);
86
- color: #fff;
87
- /* Changed from text-muted for higher contrast */
88
- max-width: 800px;
89
- margin: 0 auto 2.5rem;
90
- opacity: 0.9;
91
- }
92
-
93
- .cta-button {
94
- padding: 1rem 2.5rem;
95
- font-size: 1.1rem;
96
- font-weight: 600;
97
- background: linear-gradient(90deg, var(--primary), var(--secondary));
98
- border: none;
99
- border-radius: 50px;
100
- color: white;
101
- cursor: pointer;
102
- transition: transform 0.3s ease, box-shadow 0.3s ease;
103
- box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
104
- }
105
-
106
- .cta-button:hover {
107
- transform: translateY(-5px);
108
- box-shadow: 0 15px 30px rgba(138, 43, 226, 0.5);
109
- }
110
-
111
- /* === FEATURES SECTION === */
112
- .features {
113
- padding: 10rem 2rem;
114
- max-width: 1200px;
115
- margin: 0 auto;
116
- display: grid;
117
- grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
118
- gap: 2rem;
119
- }
120
-
121
- .card {
122
- background: var(--glass);
123
- backdrop-filter: blur(10px);
124
- -webkit-backdrop-filter: blur(10px);
125
- border: 1px solid var(--glass-border);
126
- padding: 3rem 2rem;
127
- border-radius: 24px;
128
- transition: border-color 0.3s ease;
129
- position: relative;
130
- overflow: hidden;
131
- }
132
-
133
- .card:hover {
134
- border-color: var(--secondary);
135
- }
136
-
137
- .card h3 {
138
- font-size: 1.8rem;
139
- margin-bottom: 1rem;
140
- color: #fff;
141
- }
142
-
143
- .card p {
144
- color: var(--text-muted);
145
- font-size: 1.1rem;
146
- }
147
-
148
- .card::before {
149
- content: '';
150
- position: absolute;
151
- top: -50%;
152
- left: -50%;
153
- width: 200%;
154
- height: 200%;
155
- background: radial-gradient(circle, rgba(0, 210, 255, 0.1), transparent 70%);
156
- z-index: -1;
157
- transition: opacity 0.3s ease;
158
- opacity: 0;
159
- }
160
-
161
- .card:hover::before {
162
- opacity: 1;
163
- }
164
-
165
- /* === VALUE PROPOSITION === */
166
- .value-prop {
167
- padding: 8rem 2rem;
168
- text-align: center;
169
- background: linear-gradient(to bottom, transparent, rgba(138, 43, 226, 0.05), transparent);
170
- }
171
-
172
- .value-prop h2 {
173
- font-size: clamp(2.5rem, 6vw, 4rem);
174
- margin-bottom: 2rem;
175
- }
176
-
177
- .value-prop .large-text {
178
- font-size: 1.4rem;
179
- max-width: 900px;
180
- margin: 0 auto;
181
- color: var(--text-muted);
182
- }
183
-
184
- footer {
185
- padding: 4rem 2rem;
186
- text-align: center;
187
- border-top: 1px solid var(--glass-border);
188
- color: var(--text-muted);
189
- font-size: 0.9rem;
190
- }
191
-
192
- @media (max-width: 768px) {
193
- .hero-content h1 {
194
- font-size: 3.5rem;
195
- }
196
- }