-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
279 lines (240 loc) · 12.3 KB
/
index.html
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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="./src/output.css" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="font-custom">
<header class="bg-white shadow-md">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-center py-3">
<!-- Logo -->
<div class="flex">
<img src="Images/logo/logo.png" class="h-[30px] w-[30px]">
<div class="pl-2 text-3xl font-italic font-semibold text-black">Rautia</div>
</div>
<!-- Navigation Links -->
<div class="hidden md:flex space-x-8 items-center">
<a href="hlavni-stranka" class="text-black hover:text-gray-700">Domů</a>
<a href="o-nas" class="text-black hover:text-gray-700">O nás</a>
<a href="kontakt" class="text-black hover:text-gray-700">Kontakt</a>
<a href="prodej" class="text-white bg-orange-400 hover:bg-yellow-500 px-4 py-2 rounded-full">Koťátka na
prodej</a>
</div>
<!-- Mobile Menu Button -->
<div class="md:hidden flex items-center">
<button id="menu-btn" class="focus:outline-none">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16m-7 6h7"></path>
</svg>
</button>
</div>
</div>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden md:hidden">
<a href="hlavni-stranka" class="block text-black hover:bg-gray-200 px-4 py-2">Domů</a>
<a href="o-nas" class="block text-black hover:bg-gray-200 px-4 py-2">O nás</a>
<a href="kontakt" class="block text-black hover:bg-gray-200 px-4 py-2">Kontakt</a>
<a href="prodej" class="block text-white bg-orange-400 hover:bg-yellow-500 px-4 py-2 rounded-m">Koťátka na
prodej</a>
</div>
</header>
<script>
const menuBtn = document.getElementById('menu-btn');
const mobileMenu = document.getElementById('mobile-menu');
menuBtn.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
</script>
<div class="relative w-full h-[250px] md:h-[750px] overflow-hidden">
<img src="Images/background_photos/5757004.png" alt="background-banner-catonthehands"
class="w-full h-full object-cover">
<div
class="absolute inset-0 flex flex-col items-start justify-center text-center text-white bg-black bg-opacity-60 p-4 sm:pl-14 md:pl-28">
<h2 class="text-4xl md:text-7xl px-3 font-semibold text-white drop-shadow-lg">
Chovná stanice <br>ragdollu Rautia</h2>
<h1 class="text-lg md:text-2xl px-3 text-orange-300 font-medium drop-shadow-lg text-start md:pt-2">
Chováme domácí mazlíčky s láskou</h1>
</div>
</div>
<script>
function openModal(imageSrc) {
document.getElementById("modal").classList.remove("hidden");
document.getElementById("modal-img").src = imageSrc;
}
function closeModal() {
document.getElementById("modal").classList.add("hidden");
}
</script>
<script src="https://cdn.tailwindcss.com"></script>
<div class="flex flex-col sm:flex-row items-center justify-center m-5">
<!-- Modal pro zvětšení obrázku -->
<!-- Modal pro zvětšení obrázku, bez zobrazení přes celou obrazovku -->
<div id="modal" class="fixed inset-0 flex items-center justify-center bg-black bg-opacity-50 hidden z-50">
<div class="relative bg-white p-1">
<img id="modal-img" class="max-w-[80vw] max-h-[80vh] object-contain" alt="Zvětšený obrázek" />
<button class="absolute top-0 right-0 mt-2 mr-2 text-white text-2xl font-bol pt-2 pr-3"
onclick="closeModal()">×</button>
</div>
</div>
<!-- Původní obrázek s implementovanou funkcionalitou -->
<div id="thumbnailContainer"
class="h-[400px] w-[300px] sm:h-[400px] sm:w-[300px] md:h-[450px] md:w-[350px] cursor-pointer">
<img id="thumbnail" src="Images/background_photos/IMG_3163 2.JPG" alt="Koťata"
class="h-full w-full object-cover rounded-3xl" onclick="openModal('Images/background_photos/IMG_3163 2.JPG')">
</div>
<div class="sm:w-1/2 px-6 sm:p-6 flex flex-col justify-center pt-7 sm:pt-0">
<h2 class="text-2xl font-bold mb-2 sm:text-4xl md:text-5xl ">Vítáme Vás</h2>
<p class="text-gray-700 mb-2 text-[15px] sm:text-lg md:text-1xl">
na stránce naší rodinné chovatelské stanice Rautia. Patříme pod BOHEMIA CAT CLUB a jsme členem WCF.
</p>
<p class="text-gray-700 mb-2 text-[15px] sm:text-lg md:text-1xl ">
Ragdollům jsme zcela propadli v roce 2014 nejen pro jejich okouzlující vzhled, ale zejména pro jejich zcela
výjimečnou, přátelskou a nekonfliktní povahu.
</p>
<a href="#" class="text-blue-500 hover:underline mt-auto text-[15px] sm:text-lg md:text-1xl">Více o nás..</a>
</div>
</div>
<div class="bg-gray-100 py-10">
<div class="flex flex-col-reverse sm:flex-row items-center justify-center m-5 py-5">
<div class="sm:w-1/2 px-6 sm:p-6 flex flex-col justify-center pt-7 sm:pt-0">
<h2 class="text-2xl font-bold mb-2 sm:text-4xl md:text-5xl ">Proč my?</h2>
<p class="text-gray-700 mb-2 text-[15px] sm:text-lg md:text-1xl">
Jsme rodinná chovná stanice, které opravdu záleží na tom,
aby všechna koťátka dostala maximální péči a lásku již od
prvních momentů svého života.
</p>
</div>
<div class="h-[200px] w-[350px] sm:h-[200px] sm:w-[350px] md:h-[250px] md:w-[400px] ">
<img src="Images/background_photos/c704ede6b781c12acc5de582b1fb62b7.jpeg" alt="Koťata"
class="h-full w-full object-cover rounded-3xl" onclick="openModal('Images/background_photos/c704ede6b781c12acc5de582b1fb62b7.jpeg')">
</div>
</div>
</div>
<div class="flex justify-evenly py-10 text-2xl m-5">
<div class="flex-col flex text-start justify-start m-2">
<img class="w-[50px] h-[50px]" src="Images/icons/add_24dp_000000_FILL0_wght400_GRAD0_opsz24.png" alt="Testovaný chov">
<p>Testovaný chov</p>
</div>
<div class="flex-col flex text-start justify-start m-2">
<img class="w-[50px] h-[50px]" src="Images/icons/home_24dp_000000_FILL0_wght400_GRAD0_opsz24.png" alt="Testovaný chov">
<p>Rodinná chovná stanice</p>
</div>
<div class="flex-col flex text-start justify-start m-2">
<img class="w-[50px] h-[50px]" src="Images/icons/group_24dp_000000_FILL0_wght400_GRAD0_opsz24.png" alt="Testovaný chov">
<p>Prvotřídní péče</p>
</div>
</div>
<div class="bg-gray-100 py-10">
<div class="flex flex-col sm:flex-row items-center justify-center m-5 pt-10">
<div id="overlay" class="fixed inset-0 bg-black bg-opacity-75 flex items-center justify-center hidden z-50">
<img id="fullImage" class="max-w-full max-h-full rounded-3xl" src="" alt="Full Screen Image">
</div>
<!-- Původní obrázek s implementovanou funkcionalitou -->
<div id="thumbnailContainer"
class="h-[400px] w-[300px] sm:h-[400px] sm:w-[300px] md:h-[450px] md:w-[350px] cursor-pointer">
<img id="thumbnail" src="Images/background_photos/IMG_3163 2.JPG" alt="Koťata"
class="h-full w-full object-cover rounded-3xl" onclick="openModal('Images/background_photos/IMG_3163 2.JPG')">
</div>
<div class="sm:w-1/2 px-6 sm:p-6 flex flex-col justify-center pt-7 sm:pt-0">
<h2 class="text-2xl font-bold mb-2 sm:text-4xl md:text-5xl ">Hadrová panenka</h2>
<p class="text-gray-700 mb-2 text-[15px] sm:text-lg md:text-1xl">
Ragdoll je plemeno koček, které je oblíbené především pro svou klidnou a přátelskou povahu. Jméno "ragdoll" (v překladu "hadrová panenka")
je odvozeno od jejich charakteristického chování, kdy při zvednutí do náruče často uvolní svaly a zcela se uvolní, což připomíná hadrovou panenku.
</p>
<a href="#" class="text-blue-500 hover:underline mt-auto text-[15px] sm:text-lg md:text-1xl">Více o plemeni..</a>
</div>
</div>
</div>
<div>
</div>
<div>
<!-- Bílá část pozadí -->
<div class="bg-white"></div>
<!-- Vlnovka a přechod na světle hnědou -->
<div class="inset-0 bg-white">
<svg class="" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320">
<path fill="#f1e4d3" fill-opacity="1"
d="M0,256L48,229.3C96,203,192,149,288,160C384,171,480,245,576,256C672,267,768,213,864,181.3C960,149,1056,139,1152,149.3C1248,160,1344,192,1392,208L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z">
</path>
</svg>
<!-- Sekce s častými dotazy -->
<div class="relative pt-20 pb-32 bg-bgbrown">
<h1 class="text-center text-4xl font-bold mb-8">Časté dotazy</h1>
<!-- Boxy s dotazy -->
<div class="max-w-md mx-auto space-y-4 flex flex-col items-center sm:block">
<div class="bg-white p-4 rounded-lg shadow-md cursor-pointer" onclick="toggleFaq(1)">
<p>Jaka je orientační cena kotěte?</p>
<div id="faq1" class="hidden mt-2 text-sm text-gray-600">
Cena koťete se odvíjí od kotěte na mazlík, nebo na chov.
</div>
</div>
<div class="bg-white p-4 rounded-lg shadow-md cursor-pointer" onclick="toggleFaq(2)">
<p>Odkud jste?</p>
<div id="faq2" class="hidden mt-2 text-sm text-gray-600">
Pocházíme z Oderských vrchů.
</div>
</div>
<div class="bg-white p-4 rounded-lg shadow-md cursor-pointer" onclick="toggleFaq(3)">
<p>Čím krmit kočku?</p>
<div id="faq3" class="hidden mt-2 text-sm text-gray-600">
Doporučujeme kvalitní kočičí krmivo bohaté na bílkoviny.
</div>
</div>
<div class="bg-white p-4 rounded-lg shadow-md cursor-pointer" onclick="toggleFaq(4)">
<p>Kdy jít k veterináři?</p>
<div id="faq4" class="hidden mt-2 text-sm text-gray-600">
K veterináři byste měli jít při jakýchkoli známkách nemoci nebo pravidelně na prohlídky.
</div>
</div>
</div>
</div>
</div>
</div>
<script>
function toggleFaq(faqNumber) {
const faq = document.getElementById('faq' + faqNumber);
faq.classList.toggle('hidden');
}
</script>
<div class="flex items-center flex-col px-5 py-10 md:py-20">
<div class="text-center">
<h2 class="text-2xl font-bold mb-2 text-[20px] sm:text-[25px] md:text-4xl">Potřebujete poradit?</h2>
<p class="text-gray-700 mb-2 text-[15px] sm:text-[20px] md:text-1xl">Neváhejte nás kontaktovat, s radostí Vám
pomůžeme!</p>
</div>
<div class="pt-10">
<a href="kontakt"
class="text-white bg-gradient-to-r bg-orange-400 hover:bg-yellow-500 px-4 py-2 rounded-full font-medium text-md md:text-2xl">Kontaktuj
nás</a>
</div>
</div>
<footer class="bg-gradient-to-r from-green-600 via-green-700 to-green-800 w-full font-custom text-white">
<div class="p-2 pb-20">
<h1 class="text-center font-bold text-[20px] md:text-4xl p-4 pb-10">Ragdoll-Rautia.cz</h1>
<div class="flex flex-row justify-around">
<div class="flex items-center">
<img src="Images/logo/logo.png" class="h-[50px] w-[50px] md:h-[90px] md:w-[90px]">
<a href="#" class="text-xl md:text-3xl font-bold pl-2">Rodinná chovatelská <br> stanice Rautia.</a>
</div>
<div class="text-right">
<a href="#" class="text-xl md:text-2xl pb-3 font-bold">Stránky, které doporučujeme</a>
<div>
<a href="https://www.bcc-wcf.cz/"
class="pages-link" target="_blank">BOHEMIA CAT CLUB<br></a>
<a href="https://www.zoohit.cz/" class="pages-link" target="_blank">Zoohit<br></a>
</div>
</div>
</div>
</div>
<div class="bg-black font-thin flex justify-around">
<p>Copyright © 2024 Rautia</p>
<p>Create by <a href="https://www.thomastomanec.cz/">@ThomasTomanec</a></p>
</div>
</footer>
</body>
</html>