app/projects/new/about.html ADDED
@@ -0,0 +1,377 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="ru">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>О нас - Лютеранский приход Саратова</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://unpkg.com/feather-icons"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
11
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
12
+ <style>
13
+ @import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;700&family=Roboto:wght@300;400;500&display=swap');
14
+
15
+ body {
16
+ font-family: 'Roboto', sans-serif;
17
+ }
18
+
19
+ .serif {
20
+ font-family: 'Noto Serif', serif;
21
+ }
22
+
23
+ .nav-link:hover {
24
+ color: #f59e0b;
25
+ }
26
+
27
+ .history-timeline {
28
+ position: relative;
29
+ padding-left: 3rem;
30
+ }
31
+
32
+ .history-timeline::before {
33
+ content: '';
34
+ position: absolute;
35
+ left: 1.5rem;
36
+ top: 0;
37
+ bottom: 0;
38
+ width: 2px;
39
+ background-color: #e5e7eb;
40
+ }
41
+
42
+ .timeline-item {
43
+ position: relative;
44
+ margin-bottom: 2rem;
45
+ }
46
+
47
+ .timeline-item::before {
48
+ content: '';
49
+ position: absolute;
50
+ left: -3rem;
51
+ top: 0.5rem;
52
+ width: 1rem;
53
+ height: 1rem;
54
+ border-radius: 50%;
55
+ background-color: #f59e0b;
56
+ border: 3px solid white;
57
+ }
58
+ </style>
59
+ </head>
60
+ <body class="bg-gray-50">
61
+ <!-- Header -->
62
+ <header class="sticky top-0 z-50 bg-white shadow-md">
63
+ <div class="container mx-auto px-4 py-3 flex justify-between items-center">
64
+ <div class="flex items-center">
65
+ <i data-feather="cross" class="text-amber-600 mr-2"></i>
66
+ <span class="serif text-xl font-bold text-gray-800">Лютеранский приход Саратова</span>
67
+ </div>
68
+ <nav class="hidden md:flex space-x-8">
69
+ <a href="index.html" class="nav-link text-gray-600 hover:text-gray-800">Главная</a>
70
+ <a href="about.html" class="nav-link text-gray-800 font-medium">О нас</a>
71
+ <a href="schedule.html" class="nav-link text-gray-600 hover:text-gray-800">Расписание</a>
72
+ <a href="events.html" class="nav-link text-gray-600 hover:text-gray-800">События</a>
73
+ <a href="contact.html" class="nav-link text-gray-600 hover:text-gray-800">Контакты</a>
74
+ </nav>
75
+ <button class="md:hidden focus:outline-none" id="menu-toggle">
76
+ <i data-feather="menu" class="text-gray-800"></i>
77
+ </button>
78
+ </div>
79
+ <!-- Mobile menu -->
80
+ <div class="md:hidden hidden bg-white py-2 px-4 shadow-lg" id="mobile-menu">
81
+ <a href="index.html" class="block py-2 text-gray-600 hover:text-gray-800">Главная</a>
82
+ <a href="about.html" class="block py-2 text-gray-800 font-medium">О нас</a>
83
+ <a href="schedule.html" class="block py-2 text-gray-600 hover:text-gray-800">Расписание</a>
84
+ <a href="events.html" class="block py-2 text-gray-600 hover:text-gray-800">События</a>
85
+ <a href="contact.html" class="block py-2 text-gray-600 hover:text-gray-800">Контакты</a>
86
+ </div>
87
+ </header>
88
+
89
+ <!-- Hero Section -->
90
+ <section class="bg-amber-600 text-white py-16">
91
+ <div class="container mx-auto px-4">
92
+ <h1 class="serif text-4xl md:text-5xl font-bold mb-4" data-aos="fade-up">О нашем приходе</h1>
93
+ <p class="text-xl max-w-3xl" data-aos="fade-up" data-aos-delay="100">
94
+ Узнайте больше о нашей истории, миссии и сообществе, которое мы создаем вместе.
95
+ </p>
96
+ </div>
97
+ </section>
98
+
99
+ <!-- About Content -->
100
+ <section class="py-16 bg-white">
101
+ <div class="container mx-auto px-4">
102
+ <div class="flex flex-col lg:flex-row gap-12">
103
+ <div class="lg:w-2/3">
104
+ <h2 class="serif text-3xl font-bold mb-6 text-gray-800">Наша история</h2>
105
+ <div class="history-timeline">
106
+ <!-- Timeline item 1 -->
107
+ <div class="timeline-item" data-aos="fade-up">
108
+ <h3 class="font-bold text-xl text-gray-800 mb-2">1765 - Основание прихода</h3>
109
+ <p class="text-gray-600">
110
+ Наш приход был основан немецкими переселенцами в Саратове. Первое богослужение состоялось в доме одного из членов общины.
111
+ </p>
112
+ </div>
113
+
114
+ <!-- Timeline item 2 -->
115
+ <div class="timeline-item" data-aos="fade-up" data-aos-delay="100">
116
+ <h3 class="font-bold text-xl text-gray-800 mb-2">1860 - Постройка кирхи</h3>
117
+ <p class="text-gray-600">
118
+ Была построена первая лютеранская кирха в Саратове, которая стала духовным центром для немецкой общины города.
119
+ </p>
120
+ </div>
121
+
122
+ <!-- Timeline item 3 -->
123
+ <div class="timeline-item" data-aos="fade-up" data-aos-delay="200">
124
+ <h3 class="font-bold text-xl text-gray-800 mb-2">1930-е - Трудные времена</h3>
125
+ <p class="text-gray-600">
126
+ В годы репрессий кирха была закрыта, а многие члены общины подверглись гонениям. Богослужения проводились тайно.
127
+ </p>
128
+ </div>
129
+
130
+ <!-- Timeline item 4 -->
131
+ <div class="timeline-item" data-aos="fade-up" data-aos-delay="300">
132
+ <h3 class="font-bold text-xl text-gray-800 mb-2">1991 - Возрождение</h3>
133
+ <p class="text-gray-600">
134
+ После распада СССР приход был официально зарегистрирован, началось возрождение лютеранской общины в Саратове.
135
+ </p>
136
+ </div>
137
+
138
+ <!-- Timeline item 5 -->
139
+ <div class="timeline-item" data-aos="fade-up" data-aos-delay="400">
140
+ <h3 class="font-bold text-xl text-gray-800 mb-2">2005 - Новое здание</h3>
141
+ <p class="text-gray-600">
142
+ Было приобретено и отреставрировано здание для проведения богослужений и собраний общины.
143
+ </p>
144
+ </div>
145
+
146
+ <!-- Timeline item 6 -->
147
+ <div class="timeline-item" data-aos="fade-up" data-aos-delay="500">
148
+ <h3 class="font-bold text-xl text-gray-800 mb-2">Сегодня</h3>
149
+ <p class="text-gray-600">
150
+ Наш приход объединяет людей разных национальностей и возрастов. Мы продолжаем традиции лютеранства, адаптируя их к современным реалиям.
151
+ </p>
152
+ </div>
153
+ </div>
154
+ </div>
155
+
156
+ <div class="lg:w-1/3" data-aos="fade-left">
157
+ <div class="bg-gray-50 p-6 rounded-lg shadow-md sticky top-24">
158
+ <h3 class="serif text-xl font-bold mb-4 text-gray-800">Наши ценности</h3>
159
+ <ul class="space-y-4">
160
+ <li class="flex items-start">
161
+ <i data-feather="book" class="text-amber-600 mr-3 mt-1"></i>
162
+ <div>
163
+ <h4 class="font-bold text-gray-800">Священное Писание</h4>
164
+ <p class="text-gray-600">Библия как единственный источник и норма веры и жизни</p>
165
+ </div>
166
+ </li>
167
+ <li class="flex items-start">
168
+ <i data-feather="heart" class="text-amber-600 mr-3 mt-1"></i>
169
+ <div>
170
+ <h4 class="font-bold text-gray-800">Любовь к ближнему</h4>
171
+ <p class="text-gray-600">Служение обществу и забота о нуждающихся</p>
172
+ </div>
173
+ </li>
174
+ <li class="flex items-start">
175
+ <i data-feather="users" class="text-amber-600 mr-3 mt-1"></i>
176
+ <div>
177
+ <h4 class="font-bold text-gray-800">Община</h4>
178
+ <p class="text-gray-600">Взаимная поддержка и духовное общение</p>
179
+ </div>
180
+ </li>
181
+ <li class="flex items-start">
182
+ <i data-feather="music" class="text-amber-600 mr-3 mt-1"></i>
183
+ <div>
184
+ <h4 class="font-bold text-gray-800">Традиции</h4>
185
+ <p class="text-gray-600">Сохранение лютеранских богослужебных традиций</p>
186
+ </div>
187
+ </li>
188
+ </ul>
189
+ </div>
190
+ </div>
191
+ </div>
192
+ </div>
193
+ </section>
194
+
195
+ <!-- Our Mission -->
196
+ <section class="py-16 bg-gray-50">
197
+ <div class="container mx-auto px-4">
198
+ <h2 class="serif text-3xl font-bold text-center mb-12 text-gray-800">Наша миссия</h2>
199
+ <div class="max-w-4xl mx-auto">
200
+ <div class="bg-white p-8 md:p-12 rounded-lg shadow-md" data-aos="fade-up">
201
+ <p class="text-lg text-gray-700 mb-6">
202
+ Наша миссия - провозглашать Евангелие Иисуса Христа, сохраняя верность лютеранскому вероучению, выраженному в Книге Согласия.
203
+ </p>
204
+ <p class="text-lg text-gray-700 mb-6">
205
+ Мы стремимся быть открытой и гостеприимной общиной, где каждый человек может найти духовную поддержку, углубить свои знания о Боге и участвовать в жизни церкви.
206
+ </p>
207
+ <p class="text-lg text-gray-700">
208
+ Наш приход активно участвует в социальном служении, поддерживая нуждающихся и способствуя развитию межконфессионального диалога в Саратове.
209
+ </p>
210
+ </div>
211
+ </div>
212
+ </div>
213
+ </section>
214
+
215
+ <!-- Our Team -->
216
+ <section class="py-16 bg-white">
217
+ <div class="container mx-auto px-4">
218
+ <h2 class="serif text-3xl font-bold text-center mb-12 text-gray-800">Наши служители</h2>
219
+ <div class="grid md:grid-cols-3 gap-8 max-w-5xl mx-auto">
220
+ <!-- Pastor -->
221
+ <div class="bg-white rounded-lg shadow-md overflow-hidden" data-aos="fade-up">
222
+ <img src="http://static.photos/people/640x360/10" alt="Пастор" class="w-full h-64 object-cover">
223
+ <div class="p-6">
224
+ <h3 class="serif text-xl font-bold mb-1 text-gray-800">Пастор Иван Мюллер</h3>
225
+ <p class="text-amber-600 font-medium mb-4">Настоятель прихода</p>
226
+ <p class="text-gray-600">
227
+ Руководит богослужениями, преподает катехизис, занимается духовным окормлением членов общины.
228
+ </p>
229
+ <div class="mt-4">
230
+ <a href="#" class="text-amber-600 hover:text-amber-700 font-medium flex items-center">
231
+ Связаться <i data-feather="mail" class="ml-2 w-4 h-4"></i>
232
+ </a>
233
+ </div>
234
+ </div>
235
+ </div>
236
+
237
+ <!-- Organist -->
238
+ <div class="bg-white rounded-lg shadow-md overflow-hidden" data-aos="fade-up" data-aos-delay="100">
239
+ <img src="http://static.photos/people/640x360/11" alt="Органист" class="w-full h-64 object-cover">
240
+ <div class="p-6">
241
+ <h3 class="serif text-xl font-bold mb-1 text-gray-800">Анна Шмидт</h3>
242
+ <p class="text-amber-600 font-medium mb-4">Органист и руководитель хора</p>
243
+ <p class="text-gray-600">
244
+ Отвечает за музыкальное сопровождение богослужений, руководит церковным хором и музыкальными проектами.
245
+ </p>
246
+ <div class="mt-4">
247
+ <a href="#" class="text-amber-600 hover:text-amber-700 font-medium flex items-center">
248
+ Связаться <i data-feather="mail" class="ml-2 w-4 h-4"></i>
249
+ </a>
250
+ </div>
251
+ </div>
252
+ </div>
253
+
254
+ <!-- Youth leader -->
255
+ <div class="bg-white rounded-lg shadow-md overflow-hidden" data-aos="fade-up" data-aos-delay="200">
256
+ <img src="http://static.photos/people/640x360/12" alt="Руководитель молодежной работы" class="w-full h-64 object-cover">
257
+ <div class="p-6">
258
+ <h3 class="serif text-xl font-bold mb-1 text-gray-800">Михаил Вольф</h3>
259
+ <p class="text-amber-600 font-medium mb-4">Руководитель молодежной работы</p>
260
+ <p class="text-gray-600">
261
+ Организует мероприятия для молодежи, библейские кружки и социальные проекты с участием молодых членов общины.
262
+ </p>
263
+ <div class="mt-4">
264
+ <a href="#" class="text-amber-600 hover:text-amber-700 font-medium flex items-center">
265
+ Связаться <i data-feather="mail" class="ml-2 w-4 h-4"></i>
266
+ </a>
267
+ </div>
268
+ </div>
269
+ </div>
270
+ </div>
271
+ </div>
272
+ </section>
273
+
274
+ <!-- Community -->
275
+ <section class="py-16 bg-gray-50">
276
+ <div class="container mx-auto px-4">
277
+ <h2 class="serif text-3xl font-bold text-center mb-12 text-gray-800">Наше сообщество</h2>
278
+ <div class="max-w-4xl mx-auto">
279
+ <div class="grid md:grid-cols-2 gap-8">
280
+ <div data-aos="fade-right">
281
+ <img src="http://static.photos/community/640x360/20" alt="Община" class="w-full rounded-lg shadow-md">
282
+ </div>
283
+ <div data-aos="fade-left">
284
+ <h3 class="serif text-2xl font-bold mb-4 text-gray-800">Присоединяйтесь к нам</h3>
285
+ <p class="text-gray-600 mb-4">
286
+ Наша община объединяет людей разных возрастов, профессий и национальностей. Мы вместе молимся, изучаем Библию, отмечаем праздники и помогаем друг другу в трудные моменты.
287
+ </p>
288
+ <p class="text-gray-600 mb-6">
289
+ У нас действуют различные группы: молодежная, женская, группа поддержки, библейские кружки. Каждый может найти свое место в жизни прихода.
290
+ </p>
291
+ <a href="contact.html" class="inline-flex items-center px-6 py-3 bg-amber-600 text-white font-medium rounded-lg hover:bg-amber-700">
292
+ Прийти в гости <i data-feather="arrow-right" class="ml-2 w-5 h-5"></i>
293
+ </a>
294
+ </div>
295
+ </div>
296
+ </div>
297
+ </div>
298
+ </section>
299
+
300
+ <!-- Footer -->
301
+ <footer class="bg-gray-800 text-white py-12">
302
+ <div class="container mx-auto px-4">
303
+ <div class="grid md:grid-cols-4 gap-8">
304
+ <div>
305
+ <h3 class="serif text-xl font-bold mb-4">Лютеранский приход Саратова</h3>
306
+ <p class="text-gray-400">
307
+ Мы - часть всемирной лютеранской семьи, исповедующей христианскую веру в соответствии с Аугсбургским исповеданием.
308
+ </p>
309
+ </div>
310
+ <div>
311
+ <h4 class="font-bold mb-4">Контакты</h4>
312
+ <ul class="space-y-2">
313
+ <li class="flex items-center text-gray-400">
314
+ <i data-feather="map-pin" class="mr-2 w-5 h-5"></i> ул. Немецкая, 15
315
+ </li>
316
+ <li class="flex items-center text-gray-400">
317
+ <i data-feather="phone" class="mr-2 w-5 h-5"></i> +7 (8452) 123-456
318
+ </li>
319
+ <li class="flex items-center text-gray-400">
320
+ <i data-feather="mail" class="mr-2 w-5 h-5"></i> lutheran@saratov.ru
321
+ </li>
322
+ </ul>
323
+ </div>
324
+ <div>
325
+ <h4 class="font-bold mb-4">Быстрые ссылки</h4>
326
+ <ul class="space-y-2">
327
+ <li><a href="about.html" class="text-gray-400 hover:text-white">О нас</a></li>
328
+ <li><a href="schedule.html" class="text-gray-400 hover:text-white">Расписание</a></li>
329
+ <li><a href="events.html" class="text-gray-400 hover:text-white">События</a></li>
330
+ <li><a href="#" class="text-gray-400 hover:text-white">Проповеди</a></li>
331
+ </ul>
332
+ </div>
333
+ <div>
334
+ <h4 class="font-bold mb-4">Подписаться</h4>
335
+ <p class="text-gray-400 mb-4">Будьте в курсе наших событий и новостей</p>
336
+ <div class="flex">
337
+ <input type="email" placeholder="Ваш email" class="px-4 py-2 rounded-l-lg focus:outline-none text-gray-800 w-full">
338
+ <button class="bg-amber-600 hover:bg-amber-700 px-4 py-2 rounded-r-lg">
339
+ <i data-feather="send" class="w-5 h-5"></i>
340
+ </button>
341
+ </div>
342
+ <div class="flex space-x-4 mt-4">
343
+ <a href="#" class="text-gray-400 hover:text-white">
344
+ <i data-feather="facebook" class="w-6 h-6"></i>
345
+ </a>
346
+ <a href="#" class="text-gray-400 hover:text-white">
347
+ <i data-feather="instagram" class="w-6 h-6"></i>
348
+ </a>
349
+ <a href="#" class="text-gray-400 hover:text-white">
350
+ <i data-feather="youtube" class="w-6 h-6"></i>
351
+ </a>
352
+ </div>
353
+ </div>
354
+ </div>
355
+ <div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
356
+ <p>© 2023 Лютеранский приход Саратова. Все права защищены.</p>
357
+ </div>
358
+ </div>
359
+ </footer>
360
+
361
+ <script>
362
+ AOS.init({
363
+ duration: 800,
364
+ easing: 'ease-in-out',
365
+ once: true
366
+ });
367
+
368
+ // Mobile menu toggle
369
+ document.getElementById('menu-toggle').addEventListener('click', function() {
370
+ const menu = document.getElementById('mobile-menu');
371
+ menu.classList.toggle('hidden');
372
+ });
373
+
374
+ feather.replace();
375
+ </script>
376
+ </body>
377
+ </html>
app/projects/new/events.html ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="ru">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>События - Лютеранский приход Саратова</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://unpkg.com/feather-icons"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
11
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
12
+ <style>
13
+ @import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;700&family=Roboto:wght@300;400;500&display=swap');
14
+
15
+ body {
16
+ font-family: 'Roboto', sans-serif;
17
+ }
18
+
19
+ .serif {
20
+ font-family: 'Noto Serif', serif;
21
+ }
22
+
23
+ .nav-link:hover {
24
+ color: #f59e0b;
25
+ }
26
+
27
+ .event-card:hover {
28
+ transform: translateY(-5px);
29
+ box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
30
+ }
31
+
32
+ .filter-btn.active {
33
+ background-color: #f59e0b;
34
+ color: white;
35
+ }
36
+ </style>
37
+ </head>
38
+ <body class="bg-gray-50">
39
+ <!-- Header -->
40
+ <header class="sticky top-0 z-50 bg-white shadow-md">
41
+ <div class="container mx-auto px-4 py-3 flex justify-between items-center">
42
+ <div class="flex items-center">
43
+ <i data-feather="cross" class="text-amber-600 mr-2"></i>
44
+ <span class="serif text-xl font-bold text-gray-800">Лютеранский приход Саратова</span>
45
+ </div>
46
+ <nav class="hidden md:flex space-x-8">
47
+ <a href="index.html" class="nav-link text-gray-600 hover:text-gray-800">Главная</a>
48
+ <a href="about.html" class="nav-link text-gray-600 hover:text-gray-800">О нас</
49
+ </body>
50
+ </html>
app/projects/new/index.html ADDED
@@ -0,0 +1,329 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="ru">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Лютеранский приход Саратова</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://unpkg.com/feather-icons"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
11
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
12
+ <style>
13
+ @import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;700&family=Roboto:wght@300;400;500&display=swap');
14
+
15
+ body {
16
+ font-family: 'Roboto', sans-serif;
17
+ }
18
+
19
+ .serif {
20
+ font-family: 'Noto Serif', serif;
21
+ }
22
+
23
+ .hero {
24
+ background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('http://static.photos/nature/1200x630/42');
25
+ background-size: cover;
26
+ background-position: center;
27
+ }
28
+
29
+ .nav-link:hover {
30
+ color: #f59e0b;
31
+ }
32
+
33
+ .event-card:hover {
34
+ transform: translateY(-5px);
35
+ box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
36
+ }
37
+ </style>
38
+ </head>
39
+ <body class="bg-gray-50">
40
+ <!-- Header -->
41
+ <header class="sticky top-0 z-50 bg-white shadow-md">
42
+ <div class="container mx-auto px-4 py-3 flex justify-between items-center">
43
+ <div class="flex items-center">
44
+ <i data-feather="cross" class="text-amber-600 mr-2"></i>
45
+ <span class="serif text-xl font-bold text-gray-800">Лютеранская часовня святого Иоанна Богослова</span>
46
+ </div>
47
+ <nav class="hidden md:flex space-x-8">
48
+ <a href="index.html" class="nav-link text-gray-800 font-medium">Главная</a>
49
+ <a href="about.html" class="nav-link text-gray-600 hover:text-gray-800">О нас</a>
50
+ <a href="schedule.html" class="nav-link text-gray-600 hover:text-gray-800">Расписание</a>
51
+ <a href="events.html" class="nav-link text-gray-600 hover:text-gray-800">События</a>
52
+ <a href="contact.html" class="nav-link text-gray-600 hover:text-gray-800">Контакты</a>
53
+ </nav>
54
+ <button class="md:hidden focus:outline-none" id="menu-toggle">
55
+ <i data-feather="menu" class="text-gray-800"></i>
56
+ </button>
57
+ </div>
58
+ <!-- Mobile menu -->
59
+ <div class="md:hidden hidden bg-white py-2 px-4 shadow-lg" id="mobile-menu">
60
+ <a href="index.html" class="block py-2 text-gray-800 font-medium">Главная</a>
61
+ <a href="about.html" class="block py-2 text-gray-600 hover:text-gray-800">О нас</a>
62
+ <a href="schedule.html" class="block py-2 text-gray-600 hover:text-gray-800">Расписание</a>
63
+ <a href="events.html" class="block py-2 text-gray-600 hover:text-gray-800">События</a>
64
+ <a href="contact.html" class="block py-2 text-gray-600 hover:text-gray-800">Контакты</a>
65
+ </div>
66
+ </header>
67
+
68
+ <!-- Hero Section -->
69
+ <section class="hero text-white py-20 md:py-32">
70
+ <div class="container mx-auto px-4 text-center">
71
+ <h1 class="serif text-4xl md:text-6xl font-bold mb-6" data-aos="fade-up">Добро пожаловать в наш приход</h1>
72
+ <p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto" data-aos="fade-up" data-aos-delay="100">
73
+ Мы рады приветствовать вас в лютеранской общине Саратова. Присоединяйтесь к нам для молитвы, общения и духовного роста.
74
+ </p>
75
+ <div class="flex flex-col sm:flex-row justify-center gap-4" data-aos="fade-up" data-aos-delay="200">
76
+ <a href="schedule.html" class="bg-amber-600 hover:bg-amber-700 text-white font-bold py-3 px-6 rounded-lg transition duration-300">
77
+ Расписание богослужений
78
+ </a>
79
+ <a href="about.html" class="bg-white hover:bg-gray-100 text-gray-800 font-bold py-3 px-6 rounded-lg transition duration-300">
80
+ Узнать о нас
81
+ </a>
82
+ </div>
83
+ </div>
84
+ </section>
85
+
86
+ <!-- Upcoming Events -->
87
+ <section class="py-16 bg-white">
88
+ <div class="container mx-auto px-4">
89
+ <h2 class="serif text-3xl font-bold text-center mb-12 text-gray-800">Ближайшие события</h2>
90
+ <div class="grid md:grid-cols-3 gap-8">
91
+ <!-- Event 1 -->
92
+ <div class="event-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300" data-aos="fade-up">
93
+ <img src="http://static.photos/people/640x360/1" alt="Воскресное богослужение" class="w-full h-48 object-cover">
94
+ <div class="p-6">
95
+ <div class="flex items-center mb-2">
96
+ <span class="bg-amber-100 text-amber-800 text-xs font-semibold px-2.5 py-0.5 rounded">Богослужение</span>
97
+ <span class="text-gray-500 text-sm ml-4">25 июня, 10:00</span>
98
+ </div>
99
+ <h3 class="serif text-xl font-bold mb-2 text-gray-800">Воскресное богослужение</h3>
100
+ <p class="text-gray-600 mb-4">Присоединяйтесь к нашему традиционному воскресному богослужению с причастием.</p>
101
+ <a href="#" class="text-amber-600 hover:text-amber-700 font-medium flex items-center">
102
+ Подробнее <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
103
+ </a>
104
+ </div>
105
+ </div>
106
+
107
+ <!-- Event 2 -->
108
+ <div class="event-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300" data-aos="fade-up" data-aos-delay="100">
109
+ <img src="http://static.photos/education/640x360/2" alt="Библейский кружок" class="w-full h-48 object-cover">
110
+ <div class="p-6">
111
+ <div class="flex items-center mb-2">
112
+ <span class="bg-blue-100 text-blue-800 text-xs font-semibold px-2.5 py-0.5 rounded">Образование</span>
113
+ <span class="text-gray-500 text-sm ml-4">27 июня, 18:00</span>
114
+ </div>
115
+ <h3 class="serif text-xl font-bold mb-2 text-gray-800">Библейский кружок</h3>
116
+ <p class="text-gray-600 mb-4">Изучение Послания к Римлянам. Приглашаются все желающие.</p>
117
+ <a href="#" class="text-amber-600 hover:text-amber-700 font-medium flex items-center">
118
+ Подробнее <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
119
+ </a>
120
+ </div>
121
+ </div>
122
+
123
+ <!-- Event 3 -->
124
+ <div class="event-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300" data-aos="fade-up" data-aos-delay="200">
125
+ <img src="http://static.photos/community/640x360/3" alt="Концерт органной музыки" class="w-full h-48 object-cover">
126
+ <div class="p-6">
127
+ <div class="flex items-center mb-2">
128
+ <span class="bg-purple-100 text-purple-800 text-xs font-semibold px-2.5 py-0.5 rounded">Концерт</span>
129
+ <span class="text-gray-500 text-sm ml-4">30 июня, 19:00</span>
130
+ </div>
131
+ <h3 class="serif text-xl font-bold mb-2 text-gray-800">Концерт органной музыки</h3>
132
+ <p class="text-gray-600 mb-4">Произведения Баха и других композиторов в исполнении нашего органиста.</p>
133
+ <a href="#" class="text-amber-600 hover:text-amber-700 font-medium flex items-center">
134
+ Подробнее <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
135
+ </a>
136
+ </div>
137
+ </div>
138
+ </div>
139
+ <div class="text-center mt-10">
140
+ <a href="events.html" class="inline-flex items-center px-6 py-3 border border-gray-300 text-gray-700 font-medium rounded-lg hover:bg-gray-50">
141
+ Все события <i data-feather="calendar" class="ml-2 w-5 h-5"></i>
142
+ </a>
143
+ </div>
144
+ </div>
145
+ </section>
146
+
147
+ <!-- Worship Schedule -->
148
+ <section class="py-16 bg-gray-50">
149
+ <div class="container mx-auto px-4">
150
+ <h2 class="serif text-3xl font-bold text-center mb-12 text-gray-800">Расписание богослужений</h2>
151
+ <div class="max-w-4xl mx-auto bg-white rounded-lg shadow-md overflow-hidden" data-aos="fade-up">
152
+ <div class="overflow-x-auto">
153
+ <table class="min-w-full divide-y divide-gray-200">
154
+ <thead class="bg-gray-100">
155
+ <tr>
156
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">День</th>
157
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Время</th>
158
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Тип</th>
159
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Язык</th>
160
+ </tr>
161
+ </thead>
162
+ <tbody class="bg-white divide-y divide-gray-200">
163
+ <tr>
164
+ <td class="px-6 py-4 whitespace-nowrap font-medium text-gray-900">Воскресенье</td>
165
+ <td class="px-6 py-4 whitespace-nowrap text-gray-500">10:00</td>
166
+ <td class="px-6 py-4 whitespace-nowrap text-gray-500">Главное богослужение</td>
167
+ <td class="px-6 py-4 whitespace-nowrap text-gray-500">Русский</td>
168
+ </tr>
169
+ <tr>
170
+ <td class="px-6 py-4 whitespace-nowrap font-medium text-gray-900">Среда</td>
171
+ <td class="px-6 py-4 whitespace-nowrap text-gray-500">18:30</td>
172
+ <td class="px-6 py-4 whitespace-nowrap text-gray-500">Вечерня</td>
173
+ <td class="px-6 py-4 whitespace-nowrap text-gray-500">Русский</td>
174
+ </tr>
175
+ <tr>
176
+ <td class="px-6 py-4 whitespace-nowrap font-medium text-gray-900">Пятница</td>
177
+ <td class="px-6 py-4 whitespace-nowrap text-gray-500">18:00</td>
178
+ <td class="px-6 py-4 whitespace-nowrap text-gray-500">Молитвенное собрание</td>
179
+ <td class="px-6 py-4 whitespace-nowrap text-gray-500">Русский/Немецкий</td>
180
+ </tr>
181
+ </tbody>
182
+ </table>
183
+ </div>
184
+ </div>
185
+ <div class="text-center mt-10">
186
+ <a href="schedule.html" class="inline-flex items-center px-6 py-3 bg-amber-600 text-white font-medium rounded-lg hover:bg-amber-700">
187
+ Полное расписание <i data-feather="clock" class="ml-2 w-5 h-5"></i>
188
+ </a>
189
+ </div>
190
+ </div>
191
+ </section>
192
+
193
+ <!-- Latest News -->
194
+ <section class="py-16 bg-white">
195
+ <div class="container mx-auto px-4">
196
+ <h2 class="serif text-3xl font-bold text-center mb-12 text-gray-800">Последние новости</h2>
197
+ <div class="grid md:grid-cols-2 gap-8 max-w-4xl mx-auto">
198
+ <!-- News 1 -->
199
+ <div class="border-b border-gray-200 pb-8" data-aos="fade-up">
200
+ <div class="flex items-center text-sm text-gray-500 mb-2">
201
+ <span>15 июня 2023</span>
202
+ <span class="mx-2">•</span>
203
+ <span>Новости</span>
204
+ </div>
205
+ <h3 class="serif text-xl font-bold mb-2 text-gray-800">Празднование Троицы в нашем приходе</h3>
206
+ <p class="text-gray-600 mb-4">В минувшее воскресенье мы праздновали День Святой Троицы. Богослужение прошло в особенно торжественной атмосфере...</p>
207
+ <a href="#" class="text-amber-600 hover:text-amber-700 font-medium flex items-center">
208
+ Читать далее <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
209
+ </a>
210
+ </div>
211
+
212
+ <!-- News 2 -->
213
+ <div class="border-b border-gray-200 pb-8" data-aos="fade-up" data-aos-delay="100">
214
+ <div class="flex items-center text-sm text-gray-500 mb-2">
215
+ <span>10 июня 2023</span>
216
+ <span class="mx-2">•</span>
217
+ <span>Благотворительность</span>
218
+ </div>
219
+ <h3 class="serif text-xl font-bold mb-2 text-gray-800">Благотворительная акция для детского дома</h3>
220
+ <p class="text-gray-600 mb-4">Наша община организовала сбор средств и вещей для подопечных детского дома №3. Благодарим всех, кто принял участие...</p>
221
+ <a href="#" class="text-amber-600 hover:text-amber-700 font-medium flex items-center">
222
+ Читать далее <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
223
+ </a>
224
+ </div>
225
+ </div>
226
+ <div class="text-center mt-10">
227
+ <a href="#" class="inline-flex items-center px-6 py-3 border border-gray-300 text-gray-700 font-medium rounded-lg hover:bg-gray-50">
228
+ Все новости <i data-feather="book-open" class="ml-2 w-5 h-5"></i>
229
+ </a>
230
+ </div>
231
+ </div>
232
+ </section>
233
+
234
+ <!-- Call to Action -->
235
+ <section class="py-16 bg-amber-600 text-white">
236
+ <div class="container mx-auto px-4 text-center">
237
+ <h2 class="serif text-3xl font-bold mb-6" data-aos="fade-up">Присоединяйтесь к нашей общине</h2>
238
+ <p class="text-xl mb-8 max-w-2xl mx-auto" data-aos="fade-up" data-aos-delay="100">
239
+ Мы открыты для всех, кто ищет духовного общения, поддержки и возможности служить ближним.
240
+ </p>
241
+ <div class="flex flex-col sm:flex-row justify-center gap-4" data-aos="fade-up" data-aos-delay="200">
242
+ <a href="contact.html" class="bg-white hover:bg-gray-100 text-amber-600 font-bold py-3 px-6 rounded-lg transition duration-300">
243
+ Связаться с нами
244
+ </a>
245
+ <a href="about.html" class="bg-amber-700 hover:bg-amber-800 text-white font-bold py-3 px-6 rounded-lg transition duration-300">
246
+ Узнать больше
247
+ </a>
248
+ </div>
249
+ </div>
250
+ </section>
251
+
252
+ <!-- Footer -->
253
+ <footer class="bg-gray-800 text-white py-12">
254
+ <div class="container mx-auto px-4">
255
+ <div class="grid md:grid-cols-4 gap-8">
256
+ <div>
257
+ <h3 class="serif text-xl font-bold mb-4">Лютеранский приход Саратова</h3>
258
+ <p class="text-gray-400">
259
+ Мы - часть всемирной лютеранской семьи, исповедующей христианскую веру в соответствии с Аугсбургским исповеданием.
260
+ </p>
261
+ </div>
262
+ <div>
263
+ <h4 class="font-bold mb-4">Контакты</h4>
264
+ <ul class="space-y-2">
265
+ <li class="flex items-center text-gray-400">
266
+ <i data-feather="map-pin" class="mr-2 w-5 h-5"></i> ул. Немецкая, 15
267
+ </li>
268
+ <li class="flex items-center text-gray-400">
269
+ <i data-feather="phone" class="mr-2 w-5 h-5"></i> +7 (8452) 123-456
270
+ </li>
271
+ <li class="flex items-center text-gray-400">
272
+ <i data-feather="mail" class="mr-2 w-5 h-5"></i> lutheran@saratov.ru
273
+ </li>
274
+ </ul>
275
+ </div>
276
+ <div>
277
+ <h4 class="font-bold mb-4">Быстрые ссылки</h4>
278
+ <ul class="space-y-2">
279
+ <li><a href="about.html" class="text-gray-400 hover:text-white">О нас</a></li>
280
+ <li><a href="schedule.html" class="text-gray-400 hover:text-white">Расписание</a></li>
281
+ <li><a href="events.html" class="text-gray-400 hover:text-white">События</a></li>
282
+ <li><a href="#" class="text-gray-400 hover:text-white">Проповеди</a></li>
283
+ </ul>
284
+ </div>
285
+ <div>
286
+ <h4 class="font-bold mb-4">Подписаться</h4>
287
+ <p class="text-gray-400 mb-4">Будьте в курсе наших событий и новостей</p>
288
+ <div class="flex">
289
+ <input type="email" placeholder="Ваш email" class="px-4 py-2 rounded-l-lg focus:outline-none text-gray-800 w-full">
290
+ <button class="bg-amber-600 hover:bg-amber-700 px-4 py-2 rounded-r-lg">
291
+ <i data-feather="send" class="w-5 h-5"></i>
292
+ </button>
293
+ </div>
294
+ <div class="flex space-x-4 mt-4">
295
+ <a href="#" class="text-gray-400 hover:text-white">
296
+ <i data-feather="facebook" class="w-6 h-6"></i>
297
+ </a>
298
+ <a href="#" class="text-gray-400 hover:text-white">
299
+ <i data-feather="instagram" class="w-6 h-6"></i>
300
+ </a>
301
+ <a href="#" class="text-gray-400 hover:text-white">
302
+ <i data-feather="youtube" class="w-6 h-6"></i>
303
+ </a>
304
+ </div>
305
+ </div>
306
+ </div>
307
+ <div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
308
+ <p>© 2025 ЛЕвангелическо-Лютеранский приход Святого Иоанна города Саратова</p>
309
+ </div>
310
+ </div>
311
+ </footer>
312
+
313
+ <script>
314
+ AOS.init({
315
+ duration: 800,
316
+ easing: 'ease-in-out',
317
+ once: true
318
+ });
319
+
320
+ // Mobile menu toggle
321
+ document.getElementById('menu-toggle').addEventListener('click', function() {
322
+ const menu = document.getElementById('mobile-menu');
323
+ menu.classList.toggle('hidden');
324
+ });
325
+
326
+ feather.replace();
327
+ </script>
328
+ </body>
329
+ </html>
app/projects/new/расписание.html ADDED
@@ -0,0 +1,418 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="ru">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Расписание - Лютеранский приход Саратова</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://unpkg.com/feather-icons"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
11
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
12
+ <style>
13
+ @import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;700&family=Roboto:wght@300;400;500&display=swap');
14
+
15
+ body {
16
+ font-family: 'Roboto', sans-serif;
17
+ }
18
+
19
+ .serif {
20
+ font-family: 'Noto Serif', serif;
21
+ }
22
+
23
+ .nav-link:hover {
24
+ color: #f59e0b;
25
+ }
26
+
27
+ .service-type {
28
+ transition: all 0.3s ease;
29
+ }
30
+
31
+ .service-type:hover {
32
+ transform: translateY(-3px);
33
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
34
+ }
35
+
36
+ .calendar-day.active {
37
+ background-color: #f59e0b;
38
+ color: white;
39
+ }
40
+ </style>
41
+ </head>
42
+ <body class="bg-gray-50">
43
+ <!-- Header -->
44
+ <header class="sticky top-0 z-50 bg-white shadow-md">
45
+ <div class="container mx-auto px-4 py-3 flex justify-between items-center">
46
+ <div class="flex items-center">
47
+ <i data-feather="cross" class="text-amber-600 mr-2"></i>
48
+ <span class="serif text-xl font-bold text-gray-800">Лютеранский приход Саратова</span>
49
+ </div>
50
+ <nav class="hidden md:flex space-x-8">
51
+ <a href="index.html" class="nav-link text-gray-600 hover:text-gray-800">Главная</a>
52
+ <a href="about.html" class="nav-link text-gray-600 hover:text-gray-800">О нас</a>
53
+ <a href="schedule.html" class="nav-link text-gray-800 font-medium">Расписание</a>
54
+ <a href="events.html" class="nav-link text-gray-600 hover:text-gray-800">События</a>
55
+ <a href="contact.html" class="nav-link text-gray-600 hover:text-gray-800">Контакты</a>
56
+ </nav>
57
+ <button class="md:hidden focus:outline-none" id="menu-toggle">
58
+ <i data-feather="menu" class="text-gray-800"></i>
59
+ </button>
60
+ </div>
61
+ <!-- Mobile menu -->
62
+ <div class="md:hidden hidden bg-white py-2 px-4 shadow-lg" id="mobile-menu">
63
+ <a href="index.html" class="block py-2 text-gray-600 hover:text-gray-800">Главная</a>
64
+ <a href="about.html" class="block py-2 text-gray-600 hover:text-gray-800">О нас</a>
65
+ <a href="schedule.html" class="block py-2 text-gray-800 font-medium">Расписание</a>
66
+ <a href="events.html" class="block py-2 text-gray-600 hover:text-gray-800">События</a>
67
+ <a href="contact.html" class="block py-2 text-gray-600 hover:text-gray-800">Контакты</a>
68
+ </div>
69
+ </header>
70
+
71
+ <!-- Hero Section -->
72
+ <section class="bg-amber-600 text-white py-16">
73
+ <div class="container mx-auto px-4">
74
+ <h1 class="serif text-4xl md:text-5xl font-bold mb-4" data-aos="fade-up">Расписание богослужений</h1>
75
+ <p class="text-xl max-w-3xl" data-aos="fade-up" data-aos-delay="100">
76
+ Узнайте время и место проведения наших богослужений и мероприятий.
77
+ </p>
78
+ </div>
79
+ </section>
80
+
81
+ <!-- Main Content -->
82
+ <section class="py-16 bg-white">
83
+ <div class="container mx-auto px-4">
84
+ <div class="flex flex-col lg:flex-row gap-8">
85
+ <!-- Calendar -->
86
+ <div class="lg:w-1/4 mb-8 lg:mb-0" data-aos="fade-right">
87
+ <div class="bg-white rounded-lg shadow-md p-6 sticky top-24">
88
+ <h3 class="serif text-xl font-bold mb-4 text-gray-800">Календарь</h3>
89
+ <div class="grid grid-cols-7 gap-2 mb-4">
90
+ <div class="text-center font-medium text-gray-500 text-sm">Пн</div>
91
+ <div class="text-center font-medium text-gray-500 text-sm">Вт</div>
92
+ <div class="text-center font-medium text-gray-500 text-sm">Ср</div>
93
+ <div class="text-center font-medium text-gray-500 text-sm">Чт</div>
94
+ <div class="text-center font-medium text-gray-500 text-sm">Пт</div>
95
+ <div class="text-center font-medium text-gray-500 text-sm">Сб</div>
96
+ <div class="text-center font-medium text-gray-500 text-sm">Вс</div>
97
+
98
+ <!-- Calendar days -->
99
+ <div class="text-center py-2 text-gray-400">26</div>
100
+ <div class="text-center py-2 text-gray-400">27</div>
101
+ <div class="text-center py-2 text-gray-400">28</div>
102
+ <div class="text-center py-2 text-gray-400">29</div>
103
+ <div class="text-center py-2 text-gray-400">30</div>
104
+ <div class="text-center py-2">1</div>
105
+ <div class="text-center py-2 calendar-day active">2</div>
106
+ <div class="text-center py-2">3</div>
107
+ <div class="text-center py-2">4</div>
108
+ <div class="text-center py-2">5</div>
109
+ <div class="text-center py-2">6</div>
110
+ <div class="text-center py-2">7</div>
111
+ <div class="text-center py-2">8</div>
112
+ <div class="text-center py-2">9</div>
113
+ <div class="text-center py-2">10</div>
114
+ <div class="text-center py-2">11</div>
115
+ <div class="text-center py-2">12</div>
116
+ <div class="text-center py-2">13</div>
117
+ <div class="text-center py-2">14</div>
118
+ <div class="text-center py-2">15</div>
119
+ <div class="text-center py-2">16</div>
120
+ <div class="text-center py-2">17</div>
121
+ <div class="text-center py-2">18</div>
122
+ <div class="text-center py-2">19</div>
123
+ <div class="text-center py-2">20</div>
124
+ <div class="text-center py-2">21</div>
125
+ <div class="text-center py-2">22</div>
126
+ <div class="text-center py-2">23</div>
127
+ <div class="text-center py-2">24</div>
128
+ <div class="text-center py-2">25</div>
129
+ <div class="text-center py-2">26</div>
130
+ <div class="text-center py-2">27</div>
131
+ <div class="text-center py-2">28</div>
132
+ <div class="text-center py-2">29</div>
133
+ <div class="text-center py-2">30</div>
134
+ <div class="text-center py-2 text-gray-400">1</div>
135
+ <div class="text-center py-2 text-gray-400">2</div>
136
+ </div>
137
+ <div class="border-t border-gray-200 pt-4">
138
+ <h4 class="font-bold mb-2 text-gray-800">Июнь 2023</h4>
139
+ <div class="flex items-center text-sm text-gray-600 mb-1">
140
+ <div class="w-3 h-3 rounded-full bg-amber-600 mr-2"></div>
141
+ <span>Богослужения с причастием</span>
142
+ </div>
143
+ <div class="flex items-center text-sm text-gray-600">
144
+ <div class="w-3 h-3 rounded-full bg-blue-600 mr-2"></div>
145
+ <span>Особые события</span>
146
+ </div>
147
+ </div>
148
+ </div>
149
+ </div>
150
+
151
+ <!-- Schedule -->
152
+ <div class="lg:w-3/4">
153
+ <div class="mb-8">
154
+ <h2 class="serif text-2xl font-bold mb-4 text-gray-800">Регулярные богослужения</h2>
155
+ <p class="text-gray-600 mb-6">
156
+ Ниже представлено расписание наших регулярных богослужений. В праздничные дни и особые периоды церковного года расписание может меняться.
157
+ </p>
158
+
159
+ <div class="grid md:grid-cols-2 gap-6 mb-8">
160
+ <!-- Sunday service -->
161
+ <div class="service-type bg-white rounded-lg shadow-md p-6 border-l-4 border-amber-600" data-aos="fade-up">
162
+ <div class="flex items-start">
163
+ <div class="bg-amber-100 text-amber-800 rounded-full p-3 mr-4">
164
+ <i data-feather="sun" class="w-6 h-6"></i>
165
+ </div>
166
+ <div>
167
+ <h3 class="serif text-xl font-bold mb-2 text-gray-800">Воскресное богослужение</h3>
168
+ <p class="text-gray-600 mb-2">Каждое воскресенье в 10:00</p>
169
+ <p class="text-gray-600">
170
+ Главное богослужение недели с проповедью и причастием. Длительность около 1,5 часов.
171
+ </p>
172
+ </div>
173
+ </div>
174
+ </div>
175
+
176
+ <!-- Wednesday service -->
177
+ <div class="service-type bg-white rounded-lg shadow-md p-6 border-l-4 border-blue-600" data-aos="fade-up" data-aos-delay="100">
178
+ <div class="flex items-start">
179
+ <div class="bg-blue-100 text-blue-800 rounded-full p-3 mr-4">
180
+ <i data-feather="moon" class="w-6 h-6"></i>
181
+ </div>
182
+ <div>
183
+ <h3 class="serif text-xl font-bold mb-2 text-gray-800">Вечерня</h3>
184
+ <p class="text-gray-600 mb-2">Каждую среду в 18:30</p>
185
+ <p class="text-gray-600">
186
+ Короткое вечернее богослужение с чтением Писания и молитвами. Длительность около 45 минут.
187
+ </p>
188
+ </div>
189
+ </div>
190
+ </div>
191
+
192
+ <!-- Friday prayer -->
193
+ <div class="service-type bg-white rounded-lg shadow-md p-6 border-l-4 border-purple-600" data-aos="fade-up" data-aos-delay="200">
194
+ <div class="flex items-start">
195
+ <div class="bg-purple-100 text-purple-800 rounded-full p-3 mr-4">
196
+ <i data-feather="star" class="w-6 h-6"></i>
197
+ </div>
198
+ <div>
199
+ <h3 class="serif text-xl font-bold mb-2 text-gray-800">Молитвенное собрание</h3>
200
+ <p class="text-gray-600 mb-2">Каждую пятницу в 18:00</p>
201
+ <p class="text-gray-600">
202
+ Неформальное собрание для совместной молитвы и обсуждения библейских текстов.
203
+ </p>
204
+ </div>
205
+ </div>
206
+ </div>
207
+
208
+ <!-- German service -->
209
+ <div class="service-type bg-white rounded-lg shadow-md p-6 border-l-4 border-green-600" data-aos="fade-up" data-aos-delay="300">
210
+ <div class="flex items-start">
211
+ <div class="bg-green-100 text-green-800 rounded-full p-3 mr-4">
212
+ <i data-feather="globe" class="w-6 h-6"></i>
213
+ </div>
214
+ <div>
215
+ <h3 class="serif text-xl font-bold mb-2 text-gray-800">Немецкое богослужение</h3>
216
+ <p class="text-gray-600 mb-2">Первое воскресенье месяца в 14:00</p>
217
+ <p class="text-gray-600">
218
+ Богослужение на немецком языке для членов общины, говорящих по-немецки.
219
+ </p>
220
+ </div>
221
+ </div>
222
+ </div>
223
+ </div>
224
+ </div>
225
+
226
+ <!-- Special services -->
227
+ <div class="mb-8" data-aos="fade-up">
228
+ <h2 class="serif text-2xl font-bold mb-4 text-gray-800">Ближайшие особые богослужения</h2>
229
+
230
+ <div class="bg-blue-50 border-l-4 border-blue-600 p-4 mb-4">
231
+ <div class="flex">
232
+ <div class="flex-shrink-0">
233
+ <i data-feather="info" class="h-5 w-5 text-blue-600"></i>
234
+ </div>
235
+ <div class="ml-3">
236
+ <p class="text-sm text-blue-700">
237
+ В праздничные дни и особые периоды церковного года расписание может меняться. Пожалуйста, проверяйте актуальную информацию перед посещением.
238
+ </p>
239
+ </div>
240
+ </div>
241
+ </div>
242
+
243
+ <div class="overflow-hidden shadow-md rounded-lg">
244
+ <table class="min-w-full divide-y divide-gray-200">
245
+ <thead class="bg-gray-100">
246
+ <tr>
247
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Дата</th>
248
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Время</th>
249
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Событие</th>
250
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Примечание</th>
251
+ </tr>
252
+ </thead>
253
+ <tbody class="bg-white divide-y divide-gray-200">
254
+ <tr>
255
+ <td class="px-6 py-4 whitespace-nowrap font-medium text-gray-900">4 июня</td>
256
+ <td class="px-6 py-4 whitespace-nowrap text-gray-500">10:00</td>
257
+ <td class="px-6 py-4 whitespace-nowrap text-gray-500">День Святой Троицы</td>
258
+ <td class="px-6 py-4 whitespace-nowrap text-gray-500">Особое праздничное богослужение</td>
259
+ </tr>
260
+ <tr>
261
+ <td class="px-6 py-4 whitespace-nowrap font-medium text-gray-900">11 июня</td>
262
+ <td class="px-6 py-4 whitespace-nowrap text-gray-500">10:00</td>
263
+ <td class="px-6 py-4 whitespace-nowrap text-gray-500">Конфирмация</td>
264
+ <td class="px-6 py-4 whitespace-nowrap text-gray-500">Причастие для конфирмантов</td>
265
+ </tr>
266
+ <tr>
267
+ <td class="px-6 py-4 whitespace-nowrap font-medium text-gray-900">18 июня</td>
268
+ <td class="px-6 py-4 whitespace-nowrap text-gray-500">10:00</td>
269
+ <td class="px-6 py-4 whitespace-nowrap text-gray-500">День отца</td>
270
+ <td class="px-6 py-4 whitespace-nowrap text-gray-500">Особое благословение для отцов</td>
271
+ </tr>
272
+ <tr>
273
+ <td class="px-6 py-4 whitespace-nowrap font-medium text-gray-900">25 июня</td>
274
+ <td class="px-6 py-4 whitespace-nowrap text-gray-500">10:00</td>
275
+ <td class="px-6 py-4 whitespace-nowrap text-gray-500">День семьи</td>
276
+ <td class="px-6 py-4 whitespace-nowrap text-gray-500">Совместное богослужение для всей семьи</td>
277
+ </tr>
278
+ </tbody>
279
+ </table>
280
+ </div>
281
+ </div>
282
+
283
+ <!-- Location -->
284
+ <div data-aos="fade-up">
285
+ <h2 class="serif text-2xl font-bold mb-4 text-gray-800">Место проведения</h2>
286
+ <div class="bg-white rounded-lg shadow-md overflow-hidden">
287
+ <div class="grid md:grid-cols-2">
288
+ <div class="p-6">
289
+ <h3 class="serif text-xl font-bold mb-2 text-gray-800">Лютеранская кирха</h3>
290
+ <p class="text-gray-600 mb-4">
291
+ ул. Немецкая, 15, Саратов<br>
292
+ Вход с главного входа
293
+ </p>
294
+ <div class="mb-4">
295
+ <h4 class="font-bold mb-2 text-gray-800">Как добраться:</h4>
296
+ <ul class="space-y-2 text-gray-600">
297
+ <li class="flex items-center">
298
+ <i data-feather="tram" class="mr-2 w-5 h-5"></i> Трамваи 3, 5, 8 - остановка "Немецкая улица"
299
+ </li>
300
+ <li class="flex items-center">
301
+ <i data-feather="bus" class="mr-2 w-5 h-5"></i> Автобусы 11, 33, 53 - остановка "Парк Липки"
302
+ </li>
303
+ <li class="flex items-center">
304
+ <i data-feather="map-pin" class="mr-2 w-5 h-5"></i> 10 минут пешком от площади Чернышевского
305
+ </li>
306
+ </ul>
307
+ </div>
308
+ <div>
309
+ <h4 class="font-bold mb-2 text-gray-800">Парковка:</h4>
310
+ <p class="text-gray-600">
311
+ Бесплатная парковка доступна во дворе кирхи. В воскресенье утром также можно парковаться на соседних улицах.
312
+ </p>
313
+ </div>
314
+ </div>
315
+ <div class="h-64 md:h-full">
316
+ <iframe
317
+ src="https://yandex.ru/map-widget/v1/?um=constructor%3A1234567890abcdef&amp;source=constructor"
318
+ width="100%"
319
+ height="100%"
320
+ frameborder="0"
321
+ class="border-0"
322
+ ></iframe>
323
+ </div>
324
+ </div>
325
+ </div>
326
+ </div>
327
+ </div>
328
+ </div>
329
+ </div>
330
+ </section>
331
+
332
+ <!-- Footer -->
333
+ <footer class="bg-gray-800 text-white py-12">
334
+ <div class="container mx-auto px-4">
335
+ <div class="grid md:grid-cols-4 gap-8">
336
+ <div>
337
+ <h3 class="serif text-xl font-bold mb-4">Лютеранский приход Саратова</h3>
338
+ <p class="text-gray-400">
339
+ Мы - часть всемирной лютеранской семьи, исповедующей христианскую веру в соответствии с Аугсбургским исповеданием.
340
+ </p>
341
+ </div>
342
+ <div>
343
+ <h4 class="font-bold mb-4">Контакты</h4>
344
+ <ul class="space-y-2">
345
+ <li class="flex items-center text-gray-400">
346
+ <i data-feather="map-pin" class="mr-2 w-5 h-5"></i> ул. Немецкая, 15
347
+ </li>
348
+ <li class="flex items-center text-gray-400">
349
+ <i data-feather="phone" class="mr-2 w-5 h-5"></i> +7 (8452) 123-456
350
+ </li>
351
+ <li class="flex items-center text-gray-400">
352
+ <i data-feather="mail" class="mr-2 w-5 h-5"></i> lutheran@saratov.ru
353
+ </li>
354
+ </ul>
355
+ </div>
356
+ <div>
357
+ <h4 class="font-bold mb-4">Быстрые ссылки</h4>
358
+ <ul class="space-y-2">
359
+ <li><a href="about.html" class="text-gray-400 hover:text-white">О нас</a></li>
360
+ <li><a href="schedule.html" class="text-gray-400 hover:text-white">Расписание</a></li>
361
+ <li><a href="events.html" class="text-gray-400 hover:text-white">События</a></li>
362
+ <li><a href="#" class="text-gray-400 hover:text-white">Проповеди</a></li>
363
+ </ul>
364
+ </div>
365
+ <div>
366
+ <h4 class="font-bold mb-4">Подписаться</h4>
367
+ <p class="text-gray-400 mb-4">Будьте в курсе наших событий и новостей</p>
368
+ <div class="flex">
369
+ <input type="email" placeholder="Ваш email" class="px-4 py-2 rounded-l-lg focus:outline-none text-gray-800 w-full">
370
+ <button class="bg-amber-600 hover:bg-amber-700 px-4 py-2 rounded-r-lg">
371
+ <i data-feather="send" class="w-5 h-5"></i>
372
+ </button>
373
+ </div>
374
+ <div class="flex space-x-4 mt-4">
375
+ <a href="#" class="text-gray-400 hover:text-white">
376
+ <i data-feather="facebook" class="w-6 h-6"></i>
377
+ </a>
378
+ <a href="#" class="text-gray-400 hover:text-white">
379
+ <i data-feather="instagram" class="w-6 h-6"></i>
380
+ </a>
381
+ <a href="#" class="text-gray-400 hover:text-white">
382
+ <i data-feather="youtube" class="w-6 h-6"></i>
383
+ </a>
384
+ </div>
385
+ </div>
386
+ </div>
387
+ <div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
388
+ <p>© 2023 Лютеранский приход Саратова. Все права защищены.</p>
389
+ </div>
390
+ </div>
391
+ </footer>
392
+
393
+ <script>
394
+ AOS.init({
395
+ duration: 800,
396
+ easing: 'ease-in-out',
397
+ once: true
398
+ });
399
+
400
+ // Mobile menu toggle
401
+ document.getElementById('menu-toggle').addEventListener('click', function() {
402
+ const menu = document.getElementById('mobile-menu');
403
+ menu.classList.toggle('hidden');
404
+ });
405
+
406
+ // Calendar day selection
407
+ const calendarDays = document.querySelectorAll('.calendar-day');
408
+ calendarDays.forEach(day => {
409
+ day.addEventListener('click', function() {
410
+ calendarDays.forEach(d => d.classList.remove('active'));
411
+ this.classList.add('active');
412
+ });
413
+ });
414
+
415
+ feather.replace();
416
+ </script>
417
+ </body>
418
+ </html>