-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
283 lines (253 loc) · 12 KB
/
index.html
File metadata and controls
283 lines (253 loc) · 12 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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
<!DOCTYPE html>
<html lang="bg">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Z Workshop | Автосервиз Казанлък | Прецизност и Качество</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style>
:root {
--dark: #0f172a;
--accent: #3b82f6; /* Electric Blue */
--light: #f8fafc;
--gray: #94a3b8;
--card-bg: #1e293b;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Inter', sans-serif;
background-color: var(--dark);
color: var(--light);
line-height: 1.6;
}
h2.section-title {
text-align: center;
font-size: 3rem;
margin-bottom: 2rem;
letter-spacing: -2px;
color: var(--light);
}
h2.section-title span { color: var(--accent); }
/* Hero Section (Начало) */
header {
height: 100vh;
background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)),
url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&q=80&w=1600') center/cover;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 20px;
}
.hero-content h1 {
font-size: 5rem;
letter-spacing: -4px;
margin-bottom: 0.5rem;
text-transform: uppercase;
}
.hero-content h1 span { color: var(--accent); }
.hero-content p { font-size: 1.2rem; color: var(--gray); margin-bottom: 2rem; }
.btn {
display: inline-block;
padding: 18px 40px;
background: var(--accent);
color: white;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
font-size: 1.1rem;
transition: all 0.3s ease;
}
.btn:hover { background: #2563eb; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3); }
/* Общ стил за секции */
.section { padding: 100px 10%; }
/* Услуги */
.grid-services {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px;
margin-top: 50px;
}
.card {
background: var(--card-bg);
padding: 40px;
border-radius: 12px;
border-bottom: 4px solid transparent;
transition: all 0.3s ease;
cursor: pointer;
}
.card:hover { transform: translateY(-5px); border-bottom-color: var(--accent); }
.card i { color: var(--accent); font-size: 3rem; margin-bottom: 20px; }
.card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.card p { color: var(--gray); font-size: 1rem; }
/* Галерия (Снимки) */
.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 15px;
}
.gallery-item {
position: relative;
overflow: hidden;
border-radius: 10px;
height: 250px;
}
.gallery-item img {
width: 100%; height: 100%; object-fit: cover;
transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .overlay {
position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.8));
padding: 20px; color: var(--light); opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .overlay { opacity: 1; }
/* Отзиви (Reviews) */
.reviews-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.review-card {
background: rgba(255, 255, 255, 0.03);
padding: 30px;
border-radius: 10px;
position: relative;
}
.review-card i.quote { color: rgba(59, 130, 246, 0.1); font-size: 4rem; position: absolute; top: 10px; right: 20px; }
.stars { color: #f59e0b; margin-bottom: 15px; }
.reviewer { font-weight: bold; margin-top: 20px; display: flex; align-items: center; gap: 10px;}
.reviewer img { width: 40px; height: 40px; border-radius: 50%; }
/* Карта и Контакти */
.info-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
margin-top: 50px;
}
.map-wrapper { border-radius: 15px; overflow: hidden; height: 400px; }
iframe { width: 100%; height: 100%; border: none; filter: invert(90%) hue-rotate(180deg); }
.contact-details {
background: var(--card-bg);
padding: 50px;
border-radius: 15px;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
}
.contact-item h3 { color: var(--accent); margin-bottom: 10px; font-size: 1.2rem; }
.contact-item p { color: var(--gray); font-size: 1rem; }
/* Footer */
footer {
text-align: center;
padding: 40px;
color: var(--gray);
font-size: 0.9rem;
border-top: 1px solid rgba(255,255,255,0.05);
}
/* Responsive */
@media (max-width: 768px) {
.hero-content h1 { font-size: 3rem; letter-spacing: -2px; }
.section { padding: 60px 5%; }
.info-container { grid-template-columns: 1fr; }
.contact-details { padding: 30px; }
}
</style>
</head>
<body>
<header>
<div class="hero-content">
<h1>Z <span>WORKSHOP</span></h1>
<p>Прецизност. Качество. Безкомпромисна грижа в Казанлък.</p>
<a href="#contacts" class="btn"><i class="fas fa-phone"></i> ЗАПАЗИ ЧАС СЕГА</a>
</div>
</header>
<section class="section">
<h2 class="section-title">Експертни <span>Услуги</span></h2>
<div class="grid-services">
<div class="card">
<i class="fas fa-car-crash"></i>
<h3>Специализиран Ремонт</h3>
<p>Експертна работа по двигател, трансмисия, окачване и ходова част. Работим само с топ части.</p>
</div>
<div class="card">
<i class="fas fa-microchip"></i>
<h3>Диагностика</h3>
<p>Компютърна проверка на всички системи за откриване и отстраняване на сложни дефекти.</p>
</div>
<div class="card">
<i class="fas fa-oil-can"></i>
<h3>Обслужване</h3>
<p>Бърза и качествена смяна на масла, филтри, консумативи и спирачни системи.</p>
</div>
</div>
</section>
<section class="section">
<h2 class="section-title">В <span>Детайл</span></h2>
<div class="gallery-grid">
<div class="gallery-item">
<img src="https://images.unsplash.com/photo-1599256872237-5dcc0fbe9668?q=80&w=600" alt="Интериор сервиз Z Workshop">
<div class="overlay"><h4>Прецизна диагностика</h4></div>
</div>
<div class="gallery-item">
<img src="https://images.unsplash.com/photo-1625047509168-a7026f36dc0c?q=80&w=600" alt="Ремонт двигател Z Workshop">
<div class="overlay"><h4>Ремонт двигатели</h4></div>
</div>
<div class="gallery-item">
<img src="https://images.unsplash.com/photo-1542282088-fe8426682b8f?q=80&w=600" alt="Собствена база Z Workshop">
<div class="overlay"><h4>Модерна база</h4></div>
</div>
</div>
</section>
<section class="section" style="background: rgba(0,0,0,0.15)">
<h2 class="section-title">Какво Казват <span>Клиентите</span></h2>
<div class="reviews-grid">
<div class="review-card">
<i class="fas fa-quote-right quote"></i>
<div class="stars"><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i></div>
<p>"Единствените в Казанлък, които успяха да открият проблема с моята кола. Много коректни, обясняват всичко и работят чисто. Препоръчвам!"</p>
<div class="reviewer">
<img src="https://i.pravatar.cc/150?u=ivan" alt="Иван Петров">
<p>Иван Петров</p>
</div>
</div>
<div class="review-card">
<i class="fas fa-quote-right quote"></i>
<div class="stars"><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i></div>
<p>"Сервиз на европейско ниво. Обслужването беше бързо, а цената – абсолютно коректна спрямо предварителната уговорка. Няма скрити такси."</p>
<div class="reviewer">
<img src="https://i.pravatar.cc/150?u=maria" alt="Мария Стоянова">
<p>Мария Стоянова</p>
</div>
</div>
</div>
</section>
<section id="contacts" class="section">
<h2 class="section-title">Намери Ни <span>Лесно</span></h2>
<div class="info-container">
<div class="map-wrapper">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2936.73295093781!2d25.394862376675514!3d42.603378971171016!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x40a85145bd62e927%3A0x7be3806be4d580e6!2sbul.%20%22Nikola%20Petkov%22%2092%2C%206102%20g.k.%20Izgrev%2C%20Kazanlak!5e0!3m2!1sen!2sbg!4v1711382400000!5m2!1sen!2sbg" allowfullscreen="" loading="lazy"></iframe>
</div>
<div class="contact-details">
<div class="contact-item">
<h3><i class="fas fa-map-marker-alt"></i> Локация</h3>
<p>гр. Казанлък, кв. Изгрев<br>бул. „Никола Петков“ 92</p>
</div>
<div class="contact-item">
<h3><i class="fas fa-clock"></i> Работно Време</h3>
<p>Пон - Пет: 09:00 - 18:00<br>Събота: 09:00 - 14:00</p>
</div>
<div class="contact-item">
<h3><i class="fas fa-id-card"></i> Свържи се</h3>
<p>Телефон: +359 87 815 0160<br>Email: info@zworkshop.bg</p>
</div>
</div>
</div>
</section>
<footer>
<p>© 2026 Z Workshop Kazanlak. Всички права запазени.</p>
<p style="font-size: 0.8rem; margin-top: 10px;">Дизайн с фокус върху прецизността.</p>
</footer>
</body>
</html>