akva / index.html
Worldrex's picture
Aquaszaki a weboldal neve írd át mindenhol árajánlat müködjön! - Follow Up Deployment
77636a4 verified
Raw
History Blame Contribute Delete
53.7 kB
Here's a complete responsive HTML file for an aquarium expert website with a ticket system, using TailwindCSS for styling:
```html
<!DOCTYPE html>
<html lang="hu">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aquaszaki - Akvárium szakértő</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Open Sans', sans-serif;
background-color: #f8fafc;
}
.underwater-bg {
background: linear-gradient(rgba(0, 153, 204, 0.8), rgba(51, 204, 204, 0.8)), url('https://images.unsplash.com/photo-1498837167922-ddd27525d352?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
background-size: cover;
background-position: center;
}
.ticket-status-new {
background-color: #3b82f6;
}
.ticket-status-in-progress {
background-color: #f59e0b;
}
.ticket-status-resolved {
background-color: #10b981;
}
.gallery-item {
transition: transform 0.3s ease;
}
.gallery-item:hover {
transform: scale(1.03);
}
.lightbox {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.9);
z-index: 1000;
justify-content: center;
align-items: center;
}
.lightbox-content {
max-width: 90%;
max-height: 90%;
}
.lightbox-close {
position: absolute;
top: 20px;
right: 30px;
color: white;
font-size: 40px;
cursor: pointer;
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="bg-white shadow-lg">
<div class="max-w-6xl mx-auto px-4">
<div class="flex justify-between">
<div class="flex space-x-7">
<div>
<a href="#" class="flex items-center py-4 px-2">
<span class="font-semibold text-2xl text-[#0099CC]">Aquaszaki</span>
</a>
</div>
</div>
<div class="hidden md:flex items-center space-x-1">
<a href="#home" class="py-4 px-2 text-[#0099CC] font-semibold border-b-4 border-[#0099CC]">Főoldal</a>
<a href="#about" class="py-4 px-2 text-gray-500 font-semibold hover:text-[#0099CC] transition duration-300">Rólam</a>
<a href="#services" class="py-4 px-2 text-gray-500 font-semibold hover:text-[#0099CC] transition duration-300">Szolgáltatások</a>
<a href="#portfolio" class="py-4 px-2 text-gray-500 font-semibold hover:text-[#0099CC] transition duration-300">Portfólió</a>
<a href="#blog" class="py-4 px-2 text-gray-500 font-semibold hover:text-[#0099CC] transition duration-300">Blog</a>
<a href="#contact" class="py-4 px-2 text-gray-500 font-semibold hover:text-[#0099CC] transition duration-300">Kapcsolat</a>
<a href="#tickets" class="py-4 px-2 bg-[#0099CC] text-white rounded-md hover:bg-[#33CCCC] transition duration-300">Ticket rendszer</a>
</div>
<div class="md:hidden flex items-center">
<button class="outline-none mobile-menu-button">
<svg class="w-6 h-6 text-gray-500" x-show="!showMenu" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" viewBox="0 0 24 24" stroke="currentColor">
<path d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
</div>
</div>
<div class="hidden mobile-menu">
<ul>
<li><a href="#home" class="block text-sm px-2 py-4 text-white bg-[#0099CC] font-semibold">Főoldal</a></li>
<li><a href="#about" class="block text-sm px-2 py-4 hover:bg-[#33CCCC] transition duration-300">Rólam</a></li>
<li><a href="#services" class="block text-sm px-2 py-4 hover:bg-[#33CCCC] transition duration-300">Szolgáltatások</a></li>
<li><a href="#portfolio" class="block text-sm px-2 py-4 hover:bg-[#33CCCC] transition duration-300">Portfólió</a></li>
<li><a href="#blog" class="block text-sm px-2 py-4 hover:bg-[#33CCCC] transition duration-300">Blog</a></li>
<li><a href="#contact" class="block text-sm px-2 py-4 hover:bg-[#33CCCC] transition duration-300">Kapcsolat</a></li>
<li><a href="#tickets" class="block text-sm px-2 py-4 bg-[#0099CC] text-white font-semibold">Ticket rendszer</a></li>
</ul>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="underwater-bg text-white py-20 md:py-32">
<div class="container mx-auto px-4 text-center">
<h1 class="text-4xl md:text-6xl font-bold mb-6">Egyedi akváriumok otthonodba</h1>
<p class="text-xl md:text-2xl mb-8">Növények, halak és élő dekoráció - álmaid akváriuma valóra válik</p>
<div class="flex flex-col md:flex-row justify-center gap-4">
<a href="#portfolio" class="bg-[#66CC66] hover:bg-[#55BB55] text-white font-bold py-3 px-6 rounded-full transition duration-300">Tekintsd meg portfóliót</a>
<a href="#contact" class="bg-transparent hover:bg-white hover:text-[#0099CC] text-white font-bold py-3 px-6 border-2 border-white rounded-full transition duration-300">Árajánlatkérés</a>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center text-[#0099CC] mb-12">Rólam</h2>
<div class="flex flex-col md:flex-row items-center gap-8">
<div class="md:w-1/2">
<img src="https://images.unsplash.com/photo-1560275619-4662e36fa65c?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80" alt="Akvárium szakértő" class="rounded-lg shadow-xl w-full">
</div>
<div class="md:w-1/2">
<h3 class="text-2xl font-semibold text-[#33CCCC] mb-4">Bemutatkozás</h3>
<p class="text-gray-700 mb-4">Több mint 15 éves tapasztalattal rendelkezem az akváriumok tervezésében, kivitelezésében és karbantartásában. Célom, hogy minden akvárium egy élő műalkotás legyen, amely harmonikusan illeszkedik az otthonodba.</p>
<p class="text-gray-700 mb-6">Az akváriumok nem csak dekorációk számomra, hanem komplex ökoszisztémák, amelyek gondos tervezést és folyamatos gondozást igényelnek. Minden projekt egyedi kihívás és lehetőség egyben.</p>
<div class="bg-[#f0f9ff] p-4 rounded-lg border-l-4 border-[#0099CC]">
<p class="italic text-gray-700">"Az akváriumok varázsa abban rejlik, hogy egy teljes ökoszisztémát hozunk létre a lakásunkba - egy kis darabka természetet, amely mindennap inspirál és nyugtat."</p>
</div>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center text-[#0099CC] mb-12">Szolgáltatások</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Service 1 -->
<div class="bg-white p-6 rounded-lg shadow-md hover:shadow-xl transition duration-300">
<div class="text-[#33CCCC] text-4xl mb-4">
<svg xmlns="http://www.w3.org/2000/svg" class="h-12 w-12" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10" />
</svg>
</div>
<h3 class="text-xl font-semibold text-[#0099CC] mb-2">Akvárium telepítés</h3>
<p class="text-gray-600">Teljes körű akvárium telepítés, technikai háttérrel, szűrőrendszerrel és megfelelő világítással. Minden méretben és stílusban.</p>
<p class="mt-4 text-[#66CC66] font-medium">Ár: 50.000 Ft-tól</p>
</div>
<!-- Service 2 -->
<div class="bg-white p-6 rounded-lg shadow-md hover:shadow-xl transition duration-300">
<div class="text-[#33CCCC] text-4xl mb-4">
<svg xmlns="http://www.w3.org/2000/svg" class="h-12 w-12" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 21a4 4 0 01-4-4V5a2 2 0 012-2h4a2 2 0 012 2v12a4 4 0 01-4 4zm0 0h12a2 2 0 002-2v-4a2 2 0 00-2-2h-2.343M11 7.343l1.657-1.657a2 2 0 012.828 0l2.829 2.829a2 2 0 010 2.828l-8.486 8.485M7 17h.01" />
</svg>
</div>
<h3 class="text-xl font-semibold text-[#0099CC] mb-2">Növény és hal telepítés</h3>
<p class="text-gray-600">Professzionális növény- és haltelepítés, fajta kiválasztás, egészséges egyedekkel. Összehangolt közösségek tervezése.</p>
<p class="mt-4 text-[#66CC66] font-medium">Ár: 25.000 Ft-tól</p>
</div>
<!-- Service 3 -->
<div class="bg-white p-6 rounded-lg shadow-md hover:shadow-xl transition duration-300">
<div class="text-[#33CCCC] text-4xl mb-4">
<svg xmlns="http://www.w3.org/2000/svg" class="h-12 w-12" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-3 7h3m-3 4h3m-6-4h.01M9 16h.01" />
</svg>
</div>
<h3 class="text-xl font-semibold text-[#0099CC] mb-2">Karbantartás és tisztítás</h3>
<p class="text-gray-600">Rendszeres karbantartás, vízcsere, szűrő tisztítás, növényvágás és algamentesítés. Havi/havonta kétszeri látogatások.</p>
<p class="mt-4 text-[#66CC66] font-medium">Ár: 15.000 Ft/látogatás</p>
</div>
<!-- Service 4 -->
<div class="bg-white p-6 rounded-lg shadow-md hover:shadow-xl transition duration-300">
<div class="text-[#33CCCC] text-4xl mb-4">
<svg xmlns="http://www.w3.org/2000/svg" class="h-12 w-12" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 5a1 1 0 011-1h14a1 1 0 011 1v2a1 1 0 01-1 1H5a1 1 0 01-1-1V5zM4 13a1 1 0 011-1h6a1 1 0 011 1v6a1 1 0 01-1 1H5a1 1 0 01-1-1v-6zM16 13a1 1 0 011-1h2a1 1 0 011 1v6a1 1 0 01-1 1h-2a1 1 0 01-1-1v-6z" />
</svg>
</div>
<h3 class="text-xl font-semibold text-[#0099CC] mb-2">Egyedi design tervezés</h3>
<p class="text-gray-600">Egyedi akvárium design tervezés 3D modellezéssel, térkoncepcióval és anyag kiválasztással. Minden elképzelés megvalósítható.</p>
<p class="mt-4 text-[#66CC66] font-medium">Ár: 30.000 Ft-tól</p>
</div>
</div>
</div>
</section>
<!-- Portfolio Section -->
<section id="portfolio" class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center text-[#0099CC] mb-12">Portfólió</h2>
<div class="flex justify-center mb-8">
<div class="inline-flex rounded-md shadow-sm">
<button type="button" class="px-4 py-2 text-sm font-medium rounded-l-lg bg-[#0099CC] text-white focus:z-10 focus:ring-2 focus:ring-[#33CCCC]">
Mind
</button>
<button type="button" class="px-4 py-2 text-sm font-medium border-t border-b border-gray-200 hover:bg-gray-100 focus:z-10 focus:ring-2 focus:ring-[#33CCCC]">
Édesvízi
</button>
<button type="button" class="px-4 py-2 text-sm font-medium border-t border-b border-gray-200 hover:bg-gray-100 focus:z-10 focus:ring-2 focus:ring-[#33CCCC]">
Tengeri
</button>
<button type="button" class="px-4 py-2 text-sm font-medium border-t border-b border-gray-200 hover:bg-gray-100 focus:z-10 focus:ring-2 focus:ring-[#33CCCC]">
Növényes
</button>
<button type="button" class="px-4 py-2 text-sm font-medium rounded-r-md border border-gray-200 hover:bg-gray-100 focus:z-10 focus:ring-2 focus:ring-[#33CCCC]">
Dekor
</button>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Portfolio Item 1 -->
<div class="gallery-item bg-white rounded-lg overflow-hidden shadow-md hover:shadow-xl transition duration-300">
<img src="https://images.unsplash.com/photo-1545165375-48a465e13704?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80" alt="Modern lakóakvárium" class="w-full h-48 object-cover cursor-pointer" onclick="openLightbox(this.src, 'Modern lakóakvárium')">
<div class="p-4">
<h3 class="text-xl font-semibold text-[#0099CC] mb-2">Modern lakóakvárium</h3>
<p class="text-gray-600 mb-2"><span class="font-medium">Méret:</span> 120x50x60 cm</p>
<p class="text-gray-600 mb-2"><span class="font-medium">Típus:</span> Édesvízi, növényes</p>
<p class="text-gray-600"><span class="font-medium">Különlegesség:</span> Tropikus növények, neonhalak</p>
</div>
</div>
<!-- Portfolio Item 2 -->
<div class="gallery-item bg-white rounded-lg overflow-hidden shadow-md hover:shadow-xl transition duration-300">
<img src="https://images.unsplash.com/photo-1455659817273-68adca43708a?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80" alt="Tengeri korall akvárium" class="w-full h-48 object-cover cursor-pointer" onclick="openLightbox(this.src, 'Tengeri korall akvárium')">
<div class="p-4">
<h3 class="text-xl font-semibold text-[#0099CC] mb-2">Tengeri korall akvárium</h3>
<p class="text-gray-600 mb-2"><span class="font-medium">Méret:</span> 200x60x70 cm</p>
<p class="text-gray-600 mb-2"><span class="font-medium">Típus:</span> Tengeri, korallos</p>
<p class="text-gray-600"><span class="font-medium">Különlegesség:</span> Élő korallok, tengeri csillagok</p>
</div>
</div>
<!-- Portfolio Item 3 -->
<div class="gallery-item bg-white rounded-lg overflow-hidden shadow-md hover:shadow-xl transition duration-300">
<img src="https://images.unsplash.com/photo-1560275531-183b42d414e8?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80" alt="Iwagumi stílusú akvárium" class="w-full h-48 object-cover cursor-pointer" onclick="openLightbox(this.src, 'Iwagumi stílusú akvárium')">
<div class="p-4">
<h3 class="text-xl font-semibold text-[#0099CC] mb-2">Iwagumi stílusú akvárium</h3>
<p class="text-gray-600 mb-2"><span class="font-medium">Méret:</span> 90x45x45 cm</p>
<p class="text-gray-600 mb-2"><span class="font-medium">Típus:</span> Édesvízi, minimalista</p>
<p class="text-gray-600"><span class="font-medium">Különlegesség:</span> Japán kavicsok, fűnövények</p>
</div>
</div>
<!-- Portfolio Item 4 -->
<div class="gallery-item bg-white rounded-lg overflow-hidden shadow-md hover:shadow-xl transition duration-300">
<img src="https://images.unsplash.com/photo-1560275619-4662e36fa65c?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80" alt="Díszfalba épített akvárium" class="w-full h-48 object-cover cursor-pointer" onclick="openLightbox(this.src, 'Díszfalba épített akvárium')">
<div class="p-4">
<h3 class="text-xl font-semibold text-[#0099CC] mb-2">Díszfalba épített akvárium</h3>
<p class="text-gray-600 mb-2"><span class="font-medium">Méret:</span> 180x40x60 cm</p>
<p class="text-gray-600 mb-2"><span class="font-medium">Típus:</span> Édesvízi, dekoratív</p>
<p class="text-gray-600"><span class="font-medium">Különlegesség:</span> Beépített világítás, szivárványhalak</p>
</div>
</div>
<!-- Portfolio Item 5 -->
<div class="gallery-item bg-white rounded-lg overflow-hidden shadow-md hover:shadow-xl transition duration-300">
<img src="https://images.unsplash.com/photo-1505118380757-91f5f5632de0?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80" alt="Holland stílusú növényes akvárium" class="w-full h-48 object-cover cursor-pointer" onclick="openLightbox(this.src, 'Holland stílusú növényes akvárium')">
<div class="p-4">
<h3 class="text-xl font-semibold text-[#0099CC] mb-2">Holland stílusú növényes akvárium</h3>
<p class="text-gray-600 mb-2"><span class="font-medium">Méret:</span> 150x50x50 cm</p>
<p class="text-gray-600 mb-2"><span class="font-medium">Típus:</span> Édesvízi, növényes</p>
<p class="text-gray-600"><span class="font-medium">Különlegesség:</span> 20+ növényfajta, színes levelű fajok</p>
</div>
</div>
<!-- Portfolio Item 6 -->
<div class="gallery-item bg-white rounded-lg overflow-hidden shadow-md hover:shadow-xl transition duration-300">
<img src="https://images.unsplash.com/photo-1559253664-ca249d4608c6?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80" alt="Nano akvárium" class="w-full h-48 object-cover cursor-pointer" onclick="openLightbox(this.src, 'Nano akvárium')">
<div class="p-4">
<h3 class="text-xl font-semibold text-[#0099CC] mb-2">Nano akvárium</h3>
<p class="text-gray-600 mb-2"><span class="font-medium">Méret:</span> 30x30x30 cm</p>
<p class="text-gray-600 mb-2"><span class="font-medium">Típus:</span> Édesvízi, mini</p>
<p class="text-gray-600"><span class="font-medium">Különlegesség:</span> Törpe garnélák, moszaterdő</p>
</div>
</div>
</div>
<div class="text-center mt-10">
<a href="#contact" class="bg-[#0099CC] hover:bg-[#33CCCC] text-white font-bold py-3 px-6 rounded-full transition duration-300 inline-block">Árajánlatkérés</a>
</div>
</div>
</section>
<!-- Blog Section -->
<section id="blog" class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center text-[#0099CC] mb-12">Blog & Tippek</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Blog Post 1 -->
<div class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-xl transition duration-300">
<img src="https://images.unsplash.com/photo-1535591273668-578e31182c4f?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80" alt="Akvárium növények gondozása" class="w-full h-48 object-cover">
<div class="p-6">
<div class="flex items-center text-sm text-gray-500 mb-2">
<span>2023. május 15.</span>
<span class="mx-2"></span>
<span>Növények</span>
</div>
<h3 class="text-xl font-semibold text-[#0099CC] mb-3">Akvárium növények gondozása - alapok</h3>
<p class="text-gray-600 mb-4">Az akvárium növények nem csak dekorációk, hanem létfontosságú elemei az akvárium ökoszisztémájának. Megfelelő gondozás nélkül azonban gyorsan elpusztulhatnak...</p>
<a href="#" class="text-[#33CCCC] font-medium hover:text-[#0099CC] transition duration-300">Tovább olvasom →</a>
</div>
</div>
<!-- Blog Post 2 -->
<div class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-xl transition duration-300">
<img src="https://images.unsplash.com/photo-1559253664-ca249d4608c6?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80" alt="Nano akváriumok világa" class="w-full h-48 object-cover">
<div class="p-6">
<div class="flex items-center text-sm text-gray-500 mb-2">
<span>2023. április 28.</span>
<span class="mx-2"></span>
<span>Technika</span>
</div>
<h3 class="text-xl font-semibold text-[#0099CC] mb-3">Nano akváriumok világa - kis terek, nagy lehetőségek</h3>
<p class="text-gray-600 mb-4">A nano akváriumok népszerűsége az utóbbi években robbanásszerűen nőtt. Kis méretük ellenére csodálatos mikrovilágot rejtenek, amely kevesebb helyet foglal...</p>
<a href="#" class="text-[#33CCCC] font-medium hover:text-[#0099CC] transition duration-300">Tovább olvasom →</a>
</div>
</div>
<!-- Blog Post 3 -->
<div class="bg-white rounded-lg overflow-hidden shadow-md hover:shadow-xl transition duration-300">
<img src="https://images.unsplash.com/photo-1455659817273-68adca43708a?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80" alt="Tengeri akvárium kihívásai" class="w-full h-48 object-cover">
<div class="p-6">
<div class="flex items-center text-sm text-gray-500 mb-2">
<span>2023. április 10.</span>
<span class="mx-2"></span>
<span>Tengeri</span>
</div>
<h3 class="text-xl font-semibold text-[#0099CC] mb-3">Tengeri akvárium kihívásai - kezdőknek</h3>
<p class="text-gray-600 mb-4">A tengeri akváriumok lenyűgöző szépségűek, de jelentős szakértelemet és odafigyelést igényelnek. Mielőtt belevágnál egy tengeri akvárium projektbe, fontos...</p>
<a href="#" class="text-[#33CCCC] font-medium hover:text-[#0099CC] transition duration-300">Tovább olvasom →</a>
</div>
</div>
</div>
<div class="mt-12 bg-white p-6 rounded-lg shadow-md">
<h3 class="text-xl font-semibold text-[#0099CC] mb-4">Iratkozz fel hírlevelünkre!</h3>
<p class="text-gray-600 mb-4">Kapj értesítést az új blogbejegyzésekről, akvárium tippekről és exkluzív akcióinkról!</p>
<form class="flex flex-col md:flex-row gap-2">
<input type="email" placeholder="Email címed" class="flex-grow px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-[#33CCCC]">
<button type="submit" class="bg-[#0099CC] hover:bg-[#33CCCC] text-white font-medium py-2 px-6 rounded-md transition duration-300">Feliratkozom</button>
</form>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center text-[#0099CC] mb-12">Kapcsolat</h2>
<div class="flex flex-col lg:flex-row gap-8">
<div class="lg:w-1/2">
<div class="bg-white p-6 rounded-lg shadow-md">
<h3 class="text-xl font-semibold text-[#0099CC] mb-4">Küldj üzenetet</h3>
<form>
<div class="mb-4">
<label for="name" class="block text-gray-700 mb-2">Név</label>
<input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-[#33CCCC]">
</div>
<div class="mb-4">
<label for="email" class="block text-gray-700 mb-2">Email</label>
<input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-[#33CCCC]">
</div>
<div class="mb-4">
<label for="subject" class="block text-gray-700 mb-2">Tárgy</label>
<input type="text" id="subject" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-[#33CCCC]">
</div>
<div class="mb-4">
<label for="message" class="block text-gray-700 mb-2">Üzenet</label>
<textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-[#33CCCC]"></textarea>
</div>
<button type="submit" class="bg-[#0099CC] hover:bg-[#33CCCC] text-white font-bold py-2 px-6 rounded-md transition duration-300">Üzenet küldése</button>
</form>
</div>
</div>
<div class="lg:w-1/2">
<div class="bg-white p-6 rounded-lg shadow-md mb-6">
<h3 class="text-xl font-semibold text-[#0099CC] mb-4">Elérhetőségek</h3>
<div class="space-y-4">
<div class="flex items-start">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-[#33CCCC] mr-3" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z" />
</svg>
<div>
<p class="text-gray-600">+36 30 123 4567</p>
<p class="text-sm text-gray-500">H-P: 9:00 - 17:00</p>
</div>
</div>
<div class="flex items-start">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-[#33CCCC] mr-3" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z" />
</svg>
<div>
<p class="text-gray-600">info@aquaexpert.hu</p>
<p class="text-sm text-gray-500">Válasz 24 órán belül</p>
</div>
</div>
<div class="flex items-start">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-[#33CCCC] mr-3" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z" />
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 11a3 3 0 11-6 0 3 3 0 016 0z" />
</svg>
<div>
<p class="text-gray-600">1061 Budapest, Andrássy út 66.</p>
<p class="text-sm text-gray-500">Előzetes egyeztetés alapján</p>
</div>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-md">
<h3 class="text-xl font-semibold text-[#0099CC] mb-4">Kövess minket</h3>
<div class="flex space-x-4">
<a href="#" class="bg-blue-600 hover:bg-blue-700 text-white p-3 rounded-full transition duration-300">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24">
<path d="M22 12c0-5.523-4.477-10-10-10S2 6.477 2 12c0 4.991 3.657 9.128 8.438 9.878v-6.987h-2.54V12h2.54V9.797c0-2.506 1.492-3.89 3.777-3.89 1.094 0 2.238.195 2.238.195v2.46h-1.26c-1.243 0-1.63.771-1.63 1.562V12h2.773l-.443 2.89h-2.33v6.988C18.343 21.128 22 16.991 22 12z"/>
</svg>
</a>
<a href="#" class="bg-pink-600 hover:bg-pink-700 text-white p-3 rounded-full transition duration-300">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24">
<path d="M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.052.014 8.333 0 8.741 0 12c0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98C8.333 23.986 8.741 24 12 24c3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98C15.668.014 15.259 0 12 0zm0 5.838a6.162 6.162 0 100 12.324 6.162 6.162 0 000-12.324zM12 16a4 4 0 110-8 4 4 0 010 8zm6.406-11.845a1.44 1.44 0 100 2.881 1.44 1.44 0 000-2.881z"/>
</svg>
</a>
<a href="#" class="bg-red-600 hover:bg-red-700 text-white p-3 rounded-full transition duration-300">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24">
<path d="M19.615 3.184c-3.604-.246-11.631-.245-15.23 0-3.897.266-4.356 2.62-4.385 8.816.029 6.185.484 8.549 4.385 8.816 3.6.245 11.626.246 15.23 0 3.897-.266 4.356-2.62 4.385-8.816-.029-6.185-.484-8.549-4.385-8.816zm-10.615 12.816v-8l8 3.993-8 4.007z"/>
</svg>
</a>
<a href="#" class="bg-blue-400 hover:bg-blue-500 text-white p-3 rounded-full transition duration-300">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24">
<path d="M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z"/>
</svg>
</a>
</div>
</div>
</div>
</div>
<div class="mt-8 rounded-lg overflow-hidden">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2695.506404700698!2d19.0588213156272!3d47.50190297917795!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x4741dc3f1fb27a39%3A0x1a7e0e9b4a5d8a0e!2sAndr%C3%A1ssy%20%C3%BAt%2066%2C%201061%20Budapest!5e0!3m2!1sen!2shu!4v1620000000000!5m2!1sen!2shu" width="100%" height="450" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</div>
</div>
</section>
<!-- Ticket System Section -->
<section id="tickets" class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center text-[#0099CC] mb-12">Ügyfélszolgálat - Ticket rendszer</h2>
<div class="flex flex-col lg:flex-row gap-8">
<div class="lg:w-1/2">
<div class="bg-white p-6 rounded-lg shadow-md mb-6">
<h3 class="text-xl font-semibold text-[#0099CC] mb-4">Új ticket létrehozása</h3>
<form id="ticketForm">
<div class="mb-4">
<label for="ticket-name" class="block text-gray-700 mb-2">Név</label>
<input type="text" id="ticket-name" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-[#33CCCC]" required>
</div>
<div class="mb-4">
<label for="ticket-email" class="block text-gray-700 mb-2">Email</label>
<input type="email" id="ticket-email" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-[#33CCCC]" required>
</div>
<div class="mb-4">
<label for="ticket-subject" class="block text-gray-700 mb-2">Tárgy</label>
<input type="text" id="ticket-subject" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-[#33CCCC]" required>
</div>
<div class="mb-4">
<label for="ticket-category" class="block text-gray-700 mb-2">Kategória</label>
<select id="ticket-category" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-[#33CCCC]">
<option value="general">Általános kérdés</option>
<option value="technical">Technikai probléma</option>
<option value="service">Szolgáltatás</option>
<option value="other">Egyéb</option>
</select>
</div>
<div class="mb-4">
<label for="ticket-message" class="block text-gray-700 mb-2">Üzenet</label>
<textarea id="ticket-message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-[#33CCCC]" required></textarea>
</div>
<div class="mb-4">
<label for="ticket-file" class="block text-gray-700 mb-2">Fájl csatolása (opcionális)</label>
<input type="file" id="ticket-file" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-[#33CCCC]">
<p class="text-sm text-gray-500 mt-1">Max. 5MB méretű képet vagy dokumentumot tölthetsz fel</p>
</div>
<button type="submit" class="bg-[#0099CC] hover:bg-[#33CCCC] text-white font-bold py-2 px-6 rounded-md transition duration-300">Ticket küldése</button>
</form>
</div>
</div>
<div class="lg:w-1/2">
<div class="bg-white p-6 rounded-lg shadow-md">
<h3 class="text-xl font-semibold text-[#0099CC] mb-4">Ticket állapot lekérdezése</h3>
<form class="mb-6">
<div class="mb-4">
<label for="ticket-id" class="block text-gray-700 mb-2">Ticket azonosító</label>
<input type="text" id="ticket-id" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-[#33CCCC]" placeholder="TR-123456">
</div>
<div class="mb-4">
<label for="ticket-email-check" class="block text-gray-700 mb-2">Email cím</label>
<input type="email" id="ticket-email-check" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-[#33CCCC]">
</div>
<button type="button" onclick="checkTicketStatus()" class="bg-[#66CC66] hover:bg-[#55BB55] text-white font-bold py-2 px-6 rounded-md transition duration-300">Állapot lekérdezése</button>
</form>
<div id="ticketStatusResult" class="hidden">
<h4 class="text-lg font-medium text-gray-800 mb-2">Ticket információk</h4>
<div class="border border-gray-200 rounded-lg p-4">
<div class="flex justify-between items-center mb-2">
<span class="font-medium">Ticket azonosító:</span>
<span id="result-id" class="font-semibold">TR-123456</span>
</div>
<div class="flex justify-between items-center mb-2">
<span class="font-medium">Létrehozva:</span>
<span id="result-date">2023.05.15 14:30</span>
</div>
<div class="flex justify-between items-center mb-2">
<span class="font-medium">Tárgy:</span>
<span id="result-subject">Akvárium szivárgás problémája</span>
</div>
<div class="flex justify-between items-center mb-4">
<span class="font-medium">Állapot:</span>
<span id="result-status" class="px-3 py-1 rounded-full text-white ticket-status-new text-sm">Új</span>
</div>
<div>
<p class="font-medium mb-1">Üzenet:</p>
<p id="result-message" class="text-gray-700">Az akvárium alján kis szivárgást észleltem. Kérem segítsenek a probléma megoldásában.</p>
</div>
<div id="result-response" class="mt-4 bg-gray-50 p-3 rounded hidden">
<p class="font-medium mb-1">Válasz:</p>
<p class="text-gray-700">Köszönjük a bejelentést! Munkatársunk 24 órán belül felveszi Önnel a kapcsolatot a probléma megoldásához.</p>
</div>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-md mt-6">
<h3 class="text-xl font-semibold text-[#0099CC] mb-4">Gyakran ismételt kérdések</h3>
<div class="space-y-4">
<div class="border-b border-gray-200 pb-4">
<button class="flex justify-between items-center w-full text-left font-medium text-gray-800" onclick="toggleFAQ(this)">
<span>Mennyi idő alatt válaszolnak a ticketre?</span>
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-[#33CCCC]" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd" />
</svg>
</button>
<div class="hidden mt-2 text-gray-600">
<p>Általában 24 órán belül válaszolunk minden ticketre. Hétvégén és ünnepnapokon a válaszidő elérheti a 48 órát is.</p>
</div>
</div>
<div class="border-b border-gray-200 pb-4">
<button class="flex justify-between items-center w-full text-left font-medium text-gray-800" onclick="toggleFAQ(this)">
<span>Milyen fájlokat csatolhatok a tickethez?</span>
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-[#33CCCC]" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd" />
</svg>
</button>
<div class="hidden mt-2 text-gray-600">
<p>JPG, PNG képeket (max. 5MB), valamint PDF, DOC, DOCX dokumentumokat (max. 5MB) csatolhat. Videókat és nagy méretű fájlokat kérjük a felhőtárhelyen osszon meg és küldje el a linket.</p>
</div>
</div>
<div class="border-b border-gray-200 pb-4">
<button class="flex justify-between items-center w-full text-left font-medium text-gray-800" onclick="toggleFAQ(this)">
<span>Hogyan frissíthetem a ticketemet?</span>
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-[#33CCCC]" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd" />
</svg>
</button>
<div class="hidden mt-2 text-gray-600">
<p>Az emailben kapott linken keresztül válaszolhat a ticketre, vagy használja az állapot lekérdező űrlapot, ahol lehetőség van új üzenet hozzáadására is.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Lightbox -->
<div id="lightbox" class="lightbox">
<span class="lightbox-close" onclick="closeLightbox()">&times;</span>
<img id="lightbox-img" class="lightbox-content" src="" alt="">
<div id="lightbox-caption" class="text-white text-center mt-4 text-xl"></div>
</div>
<!-- Footer -->
<footer class="bg-[#0099CC] text-white py-8">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row justify-between">
<div class="mb-6 md:mb-0">
<h3 class="text-2xl font-bold mb-4">Aquaszaki</h3>
<p class="max-w-xs">Az akváriumok szakértője - álmaid akváriuma valóra válik professzionális tervezéssel és kivitelezéssel.</p>
</div>
<div class="mb-6 md:mb-0">
<h4 class="text-lg font-semibold mb-4">Linkek</h4>
<ul class="space-y-2">
<li><a href="#home" class="hover:text-[#33CCCC] transition duration-300">Főoldal</a></li>
<li><a href="#about" class="hover:text-[#33CCCC] transition duration-300">Rólam</a></li>
<li><a href="#services" class="hover:text-[#33CCCC] transition duration-300">Szolgáltatások</a></li>
<li><a href="#portfolio" class="hover:text-[#33CCCC] transition duration-300">Portfólió</a></li>
<li><a href="#contact" class="hover:text-[#33CCCC] transition duration-300">Kapcsolat</a></li>
</ul>
</div>
<div class="mb-6 md:mb-0">
<h4 class="text-lg font-semibold mb-4">Kapcsolat</h4>
<ul class="space-y-2">
<li>+36 30 123 4567</li>
<li>info@aquaexpert.hu</li>
<li>1061 Budapest, Andrássy út 66.</li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Kövess minket</h4>
<div class="flex space-x-4">
<a href="#" class="hover:text-[#33CCCC] transition duration-300">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24">
<path d="M22 12c0-5.523-4.477-10-10-10S2 6.477 2 12c0 4.991 3.657 9.128 8.438 9.878v-6.987h-2.54V12h2.54V9.797c0-2.506 1.492-3.89 3.777-3.89 1.094 0 2.238.195 2.238.195v2.46h-1.26c-1.243 0-1.63.771-1.63 1.562V12h2.773l-.443 2.89h-2.33v6.988C18.343 21.128 22 16.991 22 12z"/>
</svg>
</a>
<a href="#" class="hover:text-[#33CCCC] transition duration-300">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24">
<path d="M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.052.014 8.333 0 8.741 0 12c0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98C8.333 23.986 8.741 24 12 24c3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98C15.668.014 15.259 0 12 0zm0 5.838a6.162 6.162 0 100 12.324 6.162 6.162 0 000-12.324zM12 16a4 4 0 110-8 4 4 0 010 8zm6.406-11.845a1.44 1.44 0 100 2.881 1.44 1.44 0 000-2.881z"/>
</svg>
</a>
<a href="#" class="hover:text-[#33CCCC] transition duration-300">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24">
<path d="M19.615 3.184c-3.604-.246-11.631-.245-15.23 0-3.897.266-4.356 2.62-4.385 8.816.029 6.185.484 8.549 4.385 8.816 3.6.245 11.626.246 15.23 0 3.897-.266 4.356-2.62 4.385-8.816-.029-6.185-.484-8.549-4.385-8.816zm-10.615 12.816v-8l8 3.993-8 4.007z"/>
</svg>
</a>
</div>
</div>
</div>
<div class="border-t border-[#33CCCC] mt-8 pt-6 text-center">
<p>&copy; 2023 Aquaszaki - Minden jog fenntartva</p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
const mobileMenuButton = document.querySelector('.mobile-menu-button');
const mobileMenu = document.querySelector('.mobile-menu');
mobileMenuButton.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// Lightbox functionality
function openLightbox(src, caption) {
const lightbox = document.getElementById('lightbox');
const lightboxImg = document.getElementById('lightbox-img');
const lightboxCaption = document.getElementById('lightbox-caption');
lightboxImg.src = src;
lightboxCaption.textContent = caption;
lightbox.style.display = 'flex';
document.body.style.overflow = 'hidden';
}
function closeLightbox() {
const lightbox = document.getElementById('lightbox');
lightbox.style.display = 'none';
document.body.style.overflow = 'auto';
}
// Ticket form submission
document.getElementById('ticketForm').addEventListener('submit', function(e) {
e.preventDefault();
// Here you would normally send the form data to a server
// For demo purposes, we'll just show an alert
alert('Köszönjük a ticket létrehozását! Hamarosan felvesszük Önnel a kapcsolatot.');
this.reset();
});
// Check ticket status (demo)
function checkTicketStatus() {
const ticketId = document.getElementById('ticket-id').value;
const email = document.getElementById('ticket-email-check').value;
if (!ticketId || !email) {
alert('Kérjük, töltse ki mindkét mezőt!');
return;
}
// In a real app, this would be an API call to check the status
// For demo, we'll just show some sample data
document.getElementById('result-id').textContent = ticketId;
document.getElementById('result-date').textContent = '2023.05.15 14:30';
document.getElementById('result-subject').textContent = 'Akvárium szivárgás problémája';
document.getElementById('result-message').textContent = 'Az akvárium alján kis szivárgást észleltem. Kérem segítsenek a probléma megoldásában.';
// Random status for demo
const statuses = ['new', 'in-progress', 'resolved'];
const randomStatus = statuses[Math.floor(Math.random() * statuses.length)];
const statusElement = document.getElementById('result-status');
statusElement.className = 'px-3 py-1 rounded-full text-white text-sm';
if (randomStatus === 'new') {
statusElement.textContent = 'Új';
statusElement.classList.add('ticket-status-new');
} else if (randomStatus === 'in-progress') {
statusElement.textContent = 'Folyamatban';
statusElement.classList.add('ticket-status-in-progress');
} else {
statusElement.textContent = '