-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
269 lines (238 loc) · 5.39 KB
/
Copy pathstyle.css
File metadata and controls
269 lines (238 loc) · 5.39 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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
/* ================== BASE ================== */
body {
font-family: 'Ruwudu', serif;
margin: 0;
padding: 0;
background: #f9f9f9;
color: #333;
text-align: center;
animation: fadeInPage 1s ease;
}
/* دخول الصفحة */
@keyframes fadeInPage {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* ================== HERO ================== */
.hero {
background: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)),
url('images/logo.jpg') no-repeat right top;
background-size: 150px;
padding: 50px 20px;
}
/* ================== LOGO ================== */
.logo {
width: 130px;
margin-bottom: 10px;
animation: logoGlow 6s linear infinite;
transition: 0.3s;
}
.logo:hover {
transform: scale(1.05);
}
/* Glow logo */
@keyframes logoGlow {
0% { filter: drop-shadow(0 0 6px #00f7ff); }
25% { filter: drop-shadow(0 0 6px #ff00ff); }
50% { filter: drop-shadow(0 0 6px #00ff88); }
75% { filter: drop-shadow(0 0 6px #ffaa00); }
100% { filter: drop-shadow(0 0 6px #00f7ff); }
}
/* ================== TITLE ================== */
.main-title {
color: #ff7b00;
font-size: 2.5em;
animation: glowText 3s infinite alternate;
}
@keyframes glowText {
from { text-shadow: 0 0 5px #ff7b00; }
to { text-shadow: 0 0 20px #ff7b00, 0 0 30px #ffae42; }
}
/* ================== SLIDER ================== */
.slider {
margin: 30px 0;
}
.slide {
display: none;
width: 90%;
max-width: 800px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0,0,0,0.2);
margin: auto;
}
/* ================== BACKGROUND ================== */
.background-image {
width: 100%;
height: 200px;
background: url('images/Hassan.png') center/cover no-repeat;
margin-top: 20px;
margin-bottom: 40px; /* المسافة بين الصورة والتأثير */
border-radius: 12px;
}
/* ================== FORM ================== */
form input,
form textarea,
form select {
display: block;
width: 100%;
max-width: 400px;
margin-bottom: 15px;
padding: 10px;
border-radius: 10px;
border: 1px solid #ccc;
box-sizing: border-box;
}
form button {
background-color: #4caf50;
color: white;
padding: 10px 20px;
border: none;
border-radius: 10px;
cursor: pointer;
transition: 0.3s;
}
form button:hover {
background-color: #45a049;
}
/* ================== MAP ================== */
.map-button {
font-family: 'Cairo', sans-serif;
font-size: 20px;
font-weight: bold;
color: #80C3FF;
text-shadow: 1px 1px 2px #ccc;
}
/* ================== CALL BUTTON ================== */
.call-btn {
display: inline-block;
padding: 12px 25px;
margin: 10px;
border-radius: 12px;
text-decoration: none;
font-weight: bold;
color: #fff;
background: #6c757d;
border: 2px solid #6c757d;
transition: 0.3s;
box-shadow: 0 0 10px #6c757d, 0 0 20px #6c757d;
animation: pulse 2s infinite;
}
.call-btn.green {
background: #28a745;
border-color: #28a745;
box-shadow: 0 0 10px #28a745, 0 0 25px #28a745;
}
.call-btn:hover {
transform: scale(1.08);
background: #fff;
color: #000;
box-shadow: 0 0 20px #fff, 0 0 40px #fff;
animation: shake 0.4s;
}
/* نبض */
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
/* اهتزاز */
@keyframes shake {
0% { transform: translateX(0); }
25% { transform: translateX(-3px); }
50% { transform: translateX(3px); }
75% { transform: translateX(-3px); }
100% { transform: translateX(0); }
}
/* ================== ORDER BUTTON ================== */
.order-btn {
display: inline-block;
margin-top: 10px;
padding: 12px 25px;
font-size: 16px;
font-weight: bold;
color: #fff;
text-decoration: none;
border-radius: 30px;
background: linear-gradient(45deg, #00f7ff, #ff00ff, #ffcc00);
background-size: 300%;
animation: gradientMove 4s linear infinite;
position: relative;
overflow: hidden;
}
@keyframes gradientMove {
0% { background-position: 0%; }
100% { background-position: 300%; }
}
.order-btn:hover {
transform: scale(1.08);
box-shadow: 0 0 20px #ff00ff, 0 0 30px #00f7ff;
}
.order-btn::before {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: rgba(255,255,255,0.3);
transform: skewX(-25deg);
transition: 0.5s;
}
.order-btn:hover::before {
left: 100%;
}
/* ================== PRODUCT ================== */
.product-card {
position: relative;
overflow: hidden;
border-radius: 15px;
}
.product-card img {
width: 100%;
display: block;
}
.product-card .overlay {
position: absolute;
bottom: 0;
width: 100%;
padding: 15px;
background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
opacity: 0;
transform: translateY(20px);
transition: 0.3s;
}
.product-card:hover .overlay {
opacity: 1;
transform: translateY(0);
}
/* ================== FOOTER ================== */
.footer-box {
background: #0f172a;
color: #fff;
padding: 25px;
border-radius: 20px;
}
/* ================== NEON BUTTON ================== */
.neon-btn {
padding: 14px 30px;
font-size: 18px;
color: #fff;
background: #0c1b2a;
border: 2px solid #00d4ff;
border-radius: 12px;
cursor: pointer;
transition: 0.3s;
box-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff;
}
.neon-btn:hover {
background: #00d4ff;
color: #000;
transform: scale(1.05);
box-shadow: 0 0 20px #00d4ff, 0 0 40px #00d4ff;
}