gg / index.html
Joshua353's picture
MACHE MER Z:B ZAHLUNG UND BESBETIGUM UND ALLE SWEITERRE - Initial Deployment
4a311aa verified
Raw
History Blame Contribute Delete
27.3 kB
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gaze Kino - Ihr Premium Kinoerlebnis</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.screen {
background: linear-gradient(to bottom, #c9c9c9, #e0e0e0);
height: 20px;
width: 80%;
margin: 0 auto 30px;
border-radius: 50%/20px;
box-shadow: 0 10px 20px rgba(0,0,0,0.3);
position: relative;
}
.screen:after {
content: "";
position: absolute;
bottom: -15px;
left: 0;
right: 0;
height: 30px;
background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
border-radius: 50%;
}
.seat {
width: 30px;
height: 30px;
border-radius: 5px;
cursor: pointer;
transition: all 0.2s;
}
.seat:hover {
transform: scale(1.1);
}
.seat.selected {
background-color: #f59e0b !important;
}
.seat.reserved {
background-color: #ef4444 !important;
cursor: not-allowed;
}
.seat.vip {
background-color: #8b5cf6 !important;
}
.movie-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.hero {
background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
background-size: cover;
background-position: center;
}
</style>
</head>
<body class="bg-gray-100 font-sans">
<!-- Navigation -->
<nav class="bg-black text-white shadow-lg">
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
<div class="flex items-center space-x-2">
<i class="fas fa-film text-2xl text-red-600"></i>
<span class="text-xl font-bold">GAZE KINO</span>
</div>
<div class="hidden md:flex space-x-6">
<a href="#" class="hover:text-red-500">Startseite</a>
<a href="#" class="hover:text-red-500">Filme</a>
<a href="#" class="hover:text-red-500">Events</a>
<a href="#" class="hover:text-red-500">Über uns</a>
<a href="#" class="hover:text-red-500">Kontakt</a>
</div>
<div class="flex items-center space-x-4">
<button class="bg-red-600 hover:bg-red-700 px-4 py-2 rounded-full font-medium">
<i class="fas fa-ticket-alt mr-2"></i>Tickets
</button>
<button class="md:hidden">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero text-white py-20">
<div class="container mx-auto px-4 text-center">
<h1 class="text-4xl md:text-6xl font-bold mb-6">Das ultimative Kinoerlebnis</h1>
<p class="text-xl md:text-2xl mb-8 max-w-2xl mx-auto">Genießen Sie die neuesten Blockbuster in unserem Premium-Kino mit Dolby Atmos und bequemen Sitzen.</p>
<div class="flex flex-col md:flex-row justify-center gap-4">
<button class="bg-red-600 hover:bg-red-700 px-6 py-3 rounded-full font-medium text-lg">
Jetzt Tickets buchen
</button>
<button class="bg-white hover:bg-gray-200 text-black px-6 py-3 rounded-full font-medium text-lg">
Aktuelle Filme
</button>
</div>
</div>
</section>
<!-- Now Showing Section -->
<section class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold mb-12 text-center">Jetzt im Kino</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Movie Card 1 -->
<div class="movie-card bg-white rounded-lg overflow-hidden shadow-lg transition duration-300">
<img src="https://image.tmdb.org/t/p/w500/8Vt6mWEReuy4Of61Lnj5Xj704m8.jpg" alt="Movie Poster" class="w-full h-64 object-cover">
<div class="p-4">
<h3 class="font-bold text-xl mb-2">Oppenheimer</h3>
<div class="flex items-center mb-2">
<span class="bg-yellow-100 text-yellow-800 text-xs font-medium px-2.5 py-0.5 rounded">16+</span>
<span class="ml-2 text-gray-600">3h 00m</span>
</div>
<p class="text-gray-700 text-sm mb-4">Die Geschichte des amerikanischen Wissenschaftlers J. Robert Oppenheimer und seiner Rolle bei der Entwicklung der Atombombe.</p>
<div class="flex justify-between items-center">
<div class="flex items-center">
<i class="fas fa-star text-yellow-400 mr-1"></i>
<span>8.7</span>
</div>
<button class="bg-red-600 hover:bg-red-700 text-white px-3 py-1 rounded text-sm">
Tickets
</button>
</div>
</div>
</div>
<!-- Movie Card 2 -->
<div class="movie-card bg-white rounded-lg overflow-hidden shadow-lg transition duration-300">
<img src="https://image.tmdb.org/t/p/w500/1pdfLvkbY9ohJlCjQH2CZjjYVvJ.jpg" alt="Movie Poster" class="w-full h-64 object-cover">
<div class="p-4">
<h3 class="font-bold text-xl mb-2">Barbie</h3>
<div class="flex items-center mb-2">
<span class="bg-green-100 text-green-800 text-xs font-medium px-2.5 py-0.5 rounded">12+</span>
<span class="ml-2 text-gray-600">1h 54m</span>
</div>
<p class="text-gray-700 text-sm mb-4">Barbie lebt in Barbieland, wo sie ein perfektes Leben in einer perfekten Welt führt. Bis sie eines Tages eine Krise erlebt.</p>
<div class="flex justify-between items-center">
<div class="flex items-center">
<i class="fas fa-star text-yellow-400 mr-1"></i>
<span>7.3</span>
</div>
<button class="bg-red-600 hover:bg-red-700 text-white px-3 py-1 rounded text-sm">
Tickets
</button>
</div>
</div>
</div>
<!-- Movie Card 3 -->
<div class="movie-card bg-white rounded-lg overflow-hidden shadow-lg transition duration-300">
<img src="https://image.tmdb.org/t/p/w500/4m1Au3YkjqsxF8iwQy0fPYSxE0h.jpg" alt="Movie Poster" class="w-full h-64 object-cover">
<div class="p-4">
<h3 class="font-bold text-xl mb-2">Mission: Impossible</h3>
<div class="flex items-center mb-2">
<span class="bg-yellow-100 text-yellow-800 text-xs font-medium px-2.5 py-0.5 rounded">16+</span>
<span class="ml-2 text-gray-600">2h 43m</span>
</div>
<p class="text-gray-700 text-sm mb-4">Ethan Hunt und sein IMF-Team müssen ihre gefährlichste Mission bisher bewältigen: Eine neue, schreckliche Waffe aufzuspüren.</p>
<div class="flex justify-between items-center">
<div class="flex items-center">
<i class="fas fa-star text-yellow-400 mr-1"></i>
<span>7.8</span>
</div>
<button class="bg-red-600 hover:bg-red-700 text-white px-3 py-1 rounded text-sm">
Tickets
</button>
</div>
</div>
</div>
<!-- Movie Card 4 -->
<div class="movie-card bg-white rounded-lg overflow-hidden shadow-lg transition duration-300">
<img src="https://image.tmdb.org/t/p/w500/4Y1WNZ88EFZTNL16Ab4wWj6e2v8.jpg" alt="Movie Poster" class="w-full h-64 object-cover">
<div class="p-4">
<h3 class="font-bold text-xl mb-2">Elemental</h3>
<div class="flex items-center mb-2">
<span class="bg-green-100 text-green-800 text-xs font-medium px-2.5 py-0.5 rounded">6+</span>
<span class="ml-2 text-gray-600">1h 42m</span>
</div>
<p class="text-gray-700 text-sm mb-4">In einer Stadt, in der Bewohner aus Feuer, Wasser, Erde und Luft leben, entdeckt eine junge, temperamentvolle Frau etwas Unerwartetes.</p>
<div class="flex justify-between items-center">
<div class="flex items-center">
<i class="fas fa-star text-yellow-400 mr-1"></i>
<span>7.0</span>
</div>
<button class="bg-red-600 hover:bg-red-700 text-white px-3 py-1 rounded text-sm">
Tickets
</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Seat Selection Section -->
<section class="py-16 bg-gray-100" id="seat-selection">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold mb-12 text-center">Sitzplatzauswahl</h2>
<div class="max-w-4xl mx-auto bg-white rounded-xl shadow-lg p-8">
<div class="flex flex-col md:flex-row gap-8">
<div class="md:w-2/3">
<div class="screen mb-8"></div>
<div class="grid grid-cols-10 gap-2 justify-center mb-8">
<!-- Screen seats -->
<script>
document.addEventListener('DOMContentLoaded', function() {
const seats = document.querySelectorAll('.seat');
seats.forEach(seat => {
seat.addEventListener('click', function() {
if (!this.classList.contains('reserved')) {
this.classList.toggle('selected');
updateSelectedCount();
}
});
});
// Randomly reserve some seats
const allSeats = document.querySelectorAll('.seat:not(.vip)');
allSeats.forEach(seat => {
if (Math.random() < 0.2) {
seat.classList.add('reserved');
}
});
function updateSelectedCount() {
const selectedSeats = document.querySelectorAll('.seat.selected').length;
document.getElementById('selected-count').textContent = selectedSeats;
document.getElementById('total-price').textContent = selectedSeats * 12;
}
});
</script>
<!-- Row A -->
<div class="col-span-10 flex justify-center gap-2 mb-4">
<div class="seat bg-blue-500" data-seat="A1">A1</div>
<div class="seat bg-blue-500" data-seat="A2">A2</div>
<div class="seat bg-blue-500" data-seat="A3">A3</div>
<div class="seat bg-blue-500" data-seat="A4">A4</div>
<div class="seat bg-blue-500" data-seat="A5">A5</div>
<div class="seat bg-blue-500" data-seat="A6">A6</div>
<div class="seat bg-blue-500" data-seat="A7">A7</div>
<div class="seat bg-blue-500" data-seat="A8">A8</div>
</div>
<!-- Row B -->
<div class="col-span-10 flex justify-center gap-2 mb-4">
<div class="seat bg-blue-500" data-seat="B1">B1</div>
<div class="seat bg-blue-500" data-seat="B2">B2</div>
<div class="seat bg-blue-500" data-seat="B3">B3</div>
<div class="seat bg-blue-500" data-seat="B4">B4</div>
<div class="seat bg-blue-500" data-seat="B5">B5</div>
<div class="seat bg-blue-500" data-seat="B6">B6</div>
<div class="seat bg-blue-500" data-seat="B7">B7</div>
<div class="seat bg-blue-500" data-seat="B8">B8</div>
</div>
<!-- Row C -->
<div class="col-span-10 flex justify-center gap-2 mb-4">
<div class="seat bg-blue-500" data-seat="C1">C1</div>
<div class="seat bg-blue-500" data-seat="C2">C2</div>
<div class="seat bg-blue-500" data-seat="C3">C3</div>
<div class="seat bg-blue-500" data-seat="C4">C4</div>
<div class="seat bg-blue-500" data-seat="C5">C5</div>
<div class="seat bg-blue-500" data-seat="C6">C6</div>
<div class="seat bg-blue-500" data-seat="C7">C7</div>
<div class="seat bg-blue-500" data-seat="C8">C8</div>
</div>
<!-- Row D -->
<div class="col-span-10 flex justify-center gap-2 mb-4">
<div class="seat bg-blue-500" data-seat="D1">D1</div>
<div class="seat bg-blue-500" data-seat="D2">D2</div>
<div class="seat bg-blue-500" data-seat="D3">D3</div>
<div class="seat bg-blue-500" data-seat="D4">D4</div>
<div class="seat bg-blue-500" data-seat="D5">D5</div>
<div class="seat bg-blue-500" data-seat="D6">D6</div>
<div class="seat bg-blue-500" data-seat="D7">D7</div>
<div class="seat bg-blue-500" data-seat="D8">D8</div>
</div>
<!-- VIP Row E -->
<div class="col-span-10 flex justify-center gap-2 mb-4">
<div class="seat vip" data-seat="E1">E1</div>
<div class="seat vip" data-seat="E2">E2</div>
<div class="seat vip" data-seat="E3">E3</div>
<div class="seat vip" data-seat="E4">E4</div>
<div class="seat vip" data-seat="E5">E5</div>
<div class="seat vip" data-seat="E6">E6</div>
<div class="seat vip" data-seat="E7">E7</div>
<div class="seat vip" data-seat="E8">E8</div>
</div>
</div>
<div class="flex justify-center gap-8">
<div class="flex items-center">
<div class="seat bg-blue-500 mr-2"></div>
<span>Standard</span>
</div>
<div class="flex items-center">
<div class="seat bg-purple-600 mr-2"></div>
<span>VIP</span>
</div>
<div class="flex items-center">
<div class="seat bg-red-500 mr-2"></div>
<span>Reserviert</span>
</div>
<div class="flex items-center">
<div class="seat bg-yellow-500 mr-2"></div>
<span>Ausgewählt</span>
</div>
</div>
</div>
<div class="md:w-1/3">
<h3 class="text-xl font-bold mb-4">Oppenheimer</h3>
<div class="mb-4">
<p class="text-gray-600"><i class="fas fa-calendar-alt mr-2"></i>Freitag, 15. September 2023</p>
<p class="text-gray-600"><i class="fas fa-clock mr-2"></i>19:30 Uhr</p>
<p class="text-gray-600"><i class="fas fa-map-marker-alt mr-2"></i>Saal 3</p>
</div>
<div class="bg-gray-100 p-4 rounded-lg mb-4">
<h4 class="font-bold mb-2">Ihre Auswahl:</h4>
<div class="flex justify-between mb-2">
<span>Sitze:</span>
<span id="selected-count">0</span>
</div>
<div class="flex justify-between mb-2">
<span>Preis pro Ticket:</span>
<span>12€</span>
</div>
<div class="flex justify-between font-bold text-lg">
<span>Gesamt:</span>
<span id="total-price">0€</span>
</div>
</div>
<button class="w-full bg-red-600 hover:bg-red-700 text-white py-3 rounded-lg font-medium">
Zur Kasse gehen
</button>
<div class="mt-6 p-4 bg-yellow-50 rounded-lg">
<h4 class="font-bold mb-2">Hinweise:</h4>
<ul class="text-sm text-gray-600 list-disc pl-5">
<li>VIP-Sitze inkludieren Getränk und Snack</li>
<li>Bitte kommen Sie mindestens 15 Minuten vor Beginn</li>
<li>Online gebuchte Tickets können nicht storniert werden</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Cinema Features -->
<section class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold mb-12 text-center">Unser Kinoerlebnis</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="text-center p-6 rounded-lg hover:bg-gray-50 transition duration-300">
<div class="bg-red-100 w-16 h-16 mx-auto rounded-full flex items-center justify-center mb-4">
<i class="fas fa-couch text-red-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-2">Premium Sitze</h3>
<p class="text-gray-600">Extrakomfortable Ledersitze mit verstellbarer Rückenlehne und Fußstütze für das ultimative Kinoerlebnis.</p>
</div>
<div class="text-center p-6 rounded-lg hover:bg-gray-50 transition duration-300">
<div class="bg-blue-100 w-16 h-16 mx-auto rounded-full flex items-center justify-center mb-4">
<i class="fas fa-volume-up text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-2">Dolby Atmos</h3>
<p class="text-gray-600">Unser revolutionäres Soundsystem mit 64 einzelnen Lautsprechern für ein immersives Klangerlebnis.</p>
</div>
<div class="text-center p-6 rounded-lg hover:bg-gray-50 transition duration-300">
<div class="bg-purple-100 w-16 h-16 mx-auto rounded-full flex items-center justify-center mb-4">
<i class="fas fa-utensils text-purple-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-2">Gourmet-Snacks</h3>
<p class="text-gray-600">Genießen Sie unsere Auswahl an Premium-Snacks und Getränken, direkt an Ihren Platz serviert.</p>
</div>
</div>
</div>
</section>
<!-- Newsletter -->
<section class="py-16 bg-gray-800 text-white">
<div class="container mx-auto px-4 text-center">
<h2 class="text-3xl font-bold mb-4">Bleiben Sie auf dem Laufenden</h2>
<p class="text-xl mb-8 max-w-2xl mx-auto">Abonnieren Sie unseren Newsletter und verpassen Sie keine Neuigkeiten, Sonderangebote oder exklusiven Vorstellungen.</p>
<div class="max-w-md mx-auto flex">
<input type="email" placeholder="Ihre E-Mail-Adresse" class="flex-grow px-4 py-3 rounded-l-lg focus:outline-none text-gray-800">
<button class="bg-red-600 hover:bg-red-700 px-6 py-3 rounded-r-lg font-medium">
Abonnieren
</button>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-black text-white py-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-xl font-bold mb-4 flex items-center">
<i class="fas fa-film text-red-600 mr-2"></i> GAZE KINO
</h3>
<p class="text-gray-400">Ihr Premium-Kinoerlebnis in der Stadt. Genießen Sie die neuesten Filme in unvergleichlichem Komfort.</p>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Informationen</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Über uns</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Jobs</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Presse</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">AGB</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Datenschutz</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Kontakt</h3>
<ul class="space-y-2 text-gray-400">
<li class="flex items-center">
<i class="fas fa-map-marker-alt mr-2"></i> Kinoallee 1, 10115 Berlin
</li>
<li class="flex items-center">
<i class="fas fa-phone mr-2"></i> +49 30 1234567
</li>
<li class="flex items-center">
<i class="fas fa-envelope mr-2"></i> info@gaze-kino.de
</li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Folgen Sie uns</h3>
<div class="flex space-x-4">
<a href="#" class="bg-gray-800 hover:bg-gray-700 w-10 h-10 rounded-full flex items-center justify-center">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="bg-gray-800 hover:bg-gray-700 w-10 h-10 rounded-full flex items-center justify-center">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="bg-gray-800 hover:bg-gray-700 w-10 h-10 rounded-full flex items-center justify-center">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="bg-gray-800 hover:bg-gray-700 w-10 h-10 rounded-full flex items-center justify-center">
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
</div>
<div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400">
<p>&copy; 2023 Gaze Kino. Alle Rechte vorbehalten.</p>
</div>
</div>
</footer>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Joshua353/gg" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>