Files
luftglanz/pages/products.html
Luftglanz ac7088c5ca Initial commit: Luftglanz drone website with integrated AI chat assistant
Features:
- Complete Luftglanz drone cleaning website
- AI chat assistant integrated with OpenAI API
- Expert product advice for AGO Quart and Mellerud cleaning products
- Formal German language support (Sie form)
- Secure PHP backend for API calls
- Responsive design with mobile support
- Product-specific knowledge base
- Safety statements from manufacturers
- Multi-page integration (index, products, services, contact)

Technical components:
- AI chat widget (js/ai-chat.js)
- Chat styling (css/components/ai-chat.css)
- Backend API (ai-chat-api.php)
- Product knowledge base with detailed specifications
- Demo and documentation files
2025-07-08 11:54:37 +02:00

429 lines
15 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Produkte - Luftglanz</title>
<link rel="icon" href="../images/favicon_logo.png" type="image/png">
<link rel="stylesheet" href="../css/normalize.css">
<link rel="stylesheet" href="../css/main.css">
<link rel="stylesheet" href="../css/components/header.css">
<link rel="stylesheet" href="../css/components/footer.css">
<link rel="stylesheet" href="../css/components/mobile-menu.css">
<link rel="stylesheet" href="../css/components/ai-chat.css">
<style>
:root {
--primary-color: #2980b9;
--accent-color: #00adb8;
--secondary-color: #444444;
--bg-light: #e8e9ea;
--card-bg: #f5f5f5;
--text-dark: #222222;
--text-medium: #444444;
--text-light: #606060;
--gradient-primary: linear-gradient(90deg, #2980b9 0%, #00adb8 100%);
--gradient-secondary: linear-gradient(90deg, #1f6797 0%, #00858e 100%);
--shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
--spacing-section: 5rem 0;
}
body {
font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
margin: 0;
padding: 0;
color: var(--text-medium);
background-color: var(--bg-light);
background-image:
linear-gradient(120deg, rgba(0, 95, 168, 0.05) 0%, transparent 40%),
linear-gradient(240deg, rgba(0, 140, 120, 0.05) 0%, transparent 40%);
line-height: 1.6;
position: relative;
overflow-x: hidden; /* Prevent horizontal scrolling */
font-size: 0.95rem; /* Base font size to match gallery */
}
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
box-sizing: border-box; /* Ensure padding is included in width */
}
/* Match main padding exactly to gallery page */
main {
padding-top: 5rem !important;
}
/* Fix the product section positioning */
.product-section {
margin-top: 2rem !important; /* Reduced from 6rem to match gallery */
padding: 2rem;
background-color: var(--card-bg);
border-radius: 10px;
border: 1px solid rgba(0, 0, 0, 0.05);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
/* Update to exactly match gallery styling */
.main-nav a {
color: var(--text-medium);
text-decoration: none;
font-weight: 500;
font-size: 0.9rem;
letter-spacing: 0.5px;
padding: 0.5rem 0; /* Remove horizontal padding */
position: relative;
transition: color 0.3s ease;
}
.main-nav ul {
gap: 1.5rem; /* Match gallery page spacing exactly */
}
.logo h1 {
font-size: 1.4rem; /* Corrected: Changed from 1.7rem to match gallery page exactly */
font-weight: 700;
margin: 0;
background: var(--gradient-primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
}
.logo-img {
height: 40px; /* Explicitly set to match gallery page */
width: auto;
margin-right: 10px;
}
header {
padding: 1.5rem 0;
background: rgba(232, 233, 234, 0.95);
backdrop-filter: blur(8px);
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
height: auto;
}
.mobile-toggle {
position: relative;
right: 0;
margin-left: auto;
z-index: 1001;
}
.header-content {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: nowrap; /* Prevent wrapping that could cause overflow */
width: 100%;
}
/* Product page specific styling improvements */
.product-header h2 {
display: block;
font-size: 2.2rem;
color: var(--text-dark);
margin-bottom: 1.5rem;
text-align: center;
}
.product-header p {
color: var(--text-light);
margin-bottom: 2rem;
text-align: center;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
.product-showcase {
display: flex;
flex-direction: column;
gap: 40px;
}
.product-main {
display: flex;
gap: 40px;
align-items: center;
}
.product-image {
flex: 0 0 300px;
}
.product-image img {
width: 100%;
border-radius: 8px;
box-shadow: var(--shadow);
}
.product-info {
flex: 1;
}
.product-title {
font-size: 1.6rem; /* Reduced from 1.8rem */
color: var(--text-dark);
margin: 0 0 15px 0;
}
.product-description {
margin-bottom: 20px;
color: var(--text-medium);
}
.product-description p {
font-size: 0.95rem; /* Explicitly match gallery text size */
}
.product-features {
margin-bottom: 25px;
padding-left: 25px;
}
.product-features li {
margin-bottom: 8px;
font-size: 0.95rem; /* Match gallery text size */
}
.btn-primary {
background-color: var(--primary-color);
color: white;
padding: 10px 22px; /* Slightly smaller button */
border-radius: 5px;
text-decoration: none;
display: inline-block;
font-weight: bold;
font-size: 0.9rem; /* Reduced button text size */
transition: background-color 0.3s;
}
.btn-primary:hover {
background-color: var(--accent-color);
}
/* Mobile styles */
@media (max-width: 768px) {
.product-main {
flex-direction: column;
}
.product-image {
flex: 0 0 auto;
width: 100%;
max-width: 300px;
margin: 0 auto;
}
/* Mobile menu styles */
#mainNav {
display: none;
}
#mainNav.active {
display: block;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--bg-light);
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
z-index: 100;
width: 100%;
max-width: 100vw;
box-sizing: border-box;
}
#mainNav ul {
flex-direction: column;
gap: 0;
}
#mainNav li {
width: 100%;
text-align: center;
}
#mainNav a {
display: block;
padding: 10px;
border-bottom: 1px solid rgba(0,0,0,0.1);
}
#mobileToggle {
display: block !important;
font-size: 1.75rem;
background: none;
border: none;
color: var(--primary-color);
cursor: pointer;
}
.container {
padding: 0 10px; /* Reduce padding on mobile */
}
.logo {
flex-shrink: 1; /* Allow logo to shrink if needed */
}
.logo h1 {
font-size: 1.4rem; /* Slightly smaller on mobile */
}
}
@media (min-width: 769px) {
#mobileToggle {
display: none !important;
}
}
</style>
</head>
<body>
<header>
<div class="container">
<div class="header-content">
<div class="logo">
<a href="../index.html" style="text-decoration: none; display: flex; align-items: center;">
<img src="../images/favicon_logo.png" alt="Luftglanz Logo" class="logo-img">
<h1 data-i18n="roof_drone">Luftglanz</h1>
</a>
</div>
<button class="mobile-toggle" id="mobileToggle" aria-label="Toggle navigation">
</button>
<nav class="main-nav" id="mainNav">
<ul>
<li><a href="../index.html" data-i18n="nav_home">Startseite</a></li>
<li><a href="../index.html#services" data-i18n="nav_services">Leistungen</a></li>
<li><a href="../index.html#how-it-works" data-i18n="nav_how_it_works">Ablauf</a></li>
<li><a href="../index.html#faq" data-i18n="nav_faq">FAQ</a></li>
<li><a href="#" class="contact-link" data-i18n="nav_contact">Kontakt</a></li>
<li><a href="products.html" class="active" data-i18n="nav_products">Produkte</a></li>
<li><a href="gallery.html" data-i18n="nav_gallery">Galerie</a></li>
</ul>
</nav>
</div>
</div>
</header>
<main class="container">
<section class="product-section">
<div class="product-header">
<h2>AGO Quart Grünbelagentferner</h2>
<p>Hocheffektive Lösung gegen Grünbeläge, Algen, Moos und Flechten auf allen Oberflächen</p>
</div>
<div class="product-showcase">
<div class="product-main">
<div class="product-image">
<img src="../images/products/ago-quart-05l.jpg" alt="AGO Quart 100 0,5L Flasche">
</div>
<div class="product-info">
<ul class="product-features">
<li>Hochkonzentrierte Wirkformel gegen Grünbeläge</li>
<li>Selbsttätige Langzeitwirkung ohne Abwaschen</li>
<li>Für Dächer, Fassaden, Terrassen, Wege, Zäune</li>
<li>Vorbeugender Schutz über Monate</li>
<li>Einfache Anwendung durch Aufsprühen</li>
<li>Sichtbare Ergebnisse nach 2-3 Tagen</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Updated MELLERUD Solar Panel Cleaner Product Section -->
<section class="product-section">
<div class="product-header">
<h2>MELLERUD Photovoltaik und Solaranlagen-Reiniger</h2>
</div>
<div class="product-showcase">
<div class="product-main">
<div class="product-image">
<img src="../images/solarreiniger.jpg" alt="MELLERUD Photovoltaik und Solaranlagen-Reiniger Konzentrat">
</div>
<div class="product-info">
<div class="product-description">
<p>Speziell entwickelter Reiniger für die effektive und schonende Reinigung von Photovoltaik- und Solaranlagen. Entfernt zuverlässig Verschmutzungen wie Staub, Ruß, Öl, Fett, Vogelkot und Pollen.</p>
</div>
<ul class="product-features">
<li>Materialschonend und rückstandsfrei</li>
<li>Verbessert die Leistung und Erträge der Anlagen</li>
<li>Biologisch abbaubar und umweltfreundlich</li>
<li>Für alle Solar- und Photovoltaikanlagen geeignet</li>
</ul>
</div>
</div>
</div>
</section>
</main>
<footer>
<div class="container">
<p data-i18n="footer_text">&copy; 2025 Luftglanz. Alle Rechte vorbehalten.</p>
</div>
</footer>
<script src="../js/translations.js"></script>
<script src="../js/language-manager.js"></script>
<script src="../js/ai-chat.js"></script>
<script>
// Direct mobile menu implementation
document.addEventListener('DOMContentLoaded', function() {
const toggle = document.getElementById('mobileToggle');
const nav = document.getElementById('mainNav');
if (toggle && nav) {
toggle.addEventListener('click', function() {
console.log('Toggle clicked');
if (nav.classList.contains('active')) {
nav.classList.remove('active');
} else {
nav.classList.add('active');
}
});
}
// Add contact link handler
const contactLink = document.querySelector('.contact-link');
if (contactLink) {
contactLink.addEventListener('click', function(e) {
e.preventDefault();
window.location.href = '../index.html#contact';
// Apply the same offset as the main page
setTimeout(function() {
if (window.location.hash === '#contact') {
const contactSection = document.querySelector('#contact');
if (contactSection) {
window.scrollTo({
top: contactSection.offsetTop - (-5), // Same -5px offset
behavior: 'smooth'
});
}
}
}, 100);
});
}
});
</script>
</body>
</html>