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
320 lines
11 KiB
HTML
320 lines
11 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Über Uns - 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/hero.css">
|
|
<link rel="stylesheet" href="../css/components/forms.css">
|
|
<style>
|
|
:root {
|
|
--primary-color: #3498db; /* Clean blue primary */
|
|
--accent-color: #00c2cb; /* Teal accent */
|
|
--secondary-color: #505050;
|
|
--bg-light: #f8f9fa; /* Very light background */
|
|
--card-bg: #ffffff; /* White card background */
|
|
--text-dark: #333333;
|
|
--text-medium: #505050;
|
|
--text-light: #707070;
|
|
--gradient-primary: linear-gradient(90deg, #3498db 0%, #00c2cb 100%);
|
|
--gradient-secondary: linear-gradient(90deg, #2980b9 0%, #009ea6 100%);
|
|
--shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
|
|
--spacing-section: 5rem 0;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
max-width: 100%;
|
|
}
|
|
|
|
html, body {
|
|
width: 100%;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
|
|
line-height: 1.6;
|
|
color: var(--text-medium);
|
|
background-color: var(--bg-light);
|
|
background-image:
|
|
linear-gradient(120deg, rgba(0, 120, 212, 0.05) 0%, transparent 40%),
|
|
linear-gradient(240deg, rgba(0, 178, 148, 0.05) 0%, transparent 40%);
|
|
position: relative;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.container {
|
|
width: 100%;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 1.5rem;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
border-radius: 8px;
|
|
display: block;
|
|
}
|
|
|
|
header {
|
|
padding: 1.5rem 0;
|
|
background: rgba(232, 233, 234, 0.95); /* Changed to match --bg-light variable */
|
|
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;
|
|
}
|
|
|
|
.header-content {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.logo {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.logo-img {
|
|
height: 40px;
|
|
width: auto;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.logo h1 {
|
|
font-size: 1.4rem;
|
|
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;
|
|
}
|
|
|
|
.main-nav ul {
|
|
display: flex;
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
.main-nav li {
|
|
margin-right: 1rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.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;
|
|
position: relative;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.main-nav a:hover, .main-nav a.active {
|
|
color: var(--accent-color);
|
|
}
|
|
|
|
.main-nav a::after {
|
|
content: '';
|
|
position: absolute;
|
|
width: 0;
|
|
height: 2px;
|
|
bottom: 0;
|
|
left: 0;
|
|
background: var(--gradient-primary);
|
|
transition: width 0.3s ease;
|
|
}
|
|
|
|
.main-nav a:hover::after, .main-nav a.active::after {
|
|
width: 100%;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.main-nav ul {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.main-nav li {
|
|
margin-right: 0;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
}
|
|
|
|
.section-container {
|
|
background-color: var(--card-bg);
|
|
border-radius: 10px;
|
|
margin-bottom: 2rem;
|
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
|
|
padding: 2.5rem;
|
|
border: 1px solid rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.section-container h2 {
|
|
color: var(--text-dark);
|
|
font-size: 2.2rem;
|
|
margin-bottom: 2rem;
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
|
|
.section-container h2::after {
|
|
content: '';
|
|
position: absolute;
|
|
width: 60px;
|
|
height: 3px;
|
|
background: var(--gradient-primary);
|
|
bottom: -0.75rem;
|
|
left: 0;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
.section-container h3 {
|
|
color: var(--text-dark);
|
|
font-size: 1.5rem;
|
|
margin-top: 2.5rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.section-container p {
|
|
color: var(--text-light);
|
|
margin-bottom: 1.5rem;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
.team-image-container {
|
|
margin: 3rem 0 !important;
|
|
position: relative;
|
|
overflow: hidden;
|
|
border-radius: 10px;
|
|
box-shadow: var(--shadow);
|
|
}
|
|
|
|
.team-image-container img {
|
|
width: 100%;
|
|
display: block;
|
|
border-radius: 10px;
|
|
filter: brightness(0.9);
|
|
transition: transform 0.5s ease;
|
|
}
|
|
|
|
.team-image-container:hover img {
|
|
transform: scale(1.03);
|
|
}
|
|
|
|
.team-image-container p {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
|
|
padding: 2rem 1.5rem 1rem;
|
|
margin: 0;
|
|
color: var(--text-medium);
|
|
font-style: italic;
|
|
text-align: center;
|
|
}
|
|
|
|
.stars {
|
|
display: none;
|
|
}
|
|
|
|
main {
|
|
padding-top: 8rem;
|
|
margin-top: 0;
|
|
}
|
|
|
|
footer {
|
|
background-color: var(--text-dark);
|
|
padding: 2rem 0;
|
|
border-top: 1px solid rgba(0, 0, 0, 0.05);
|
|
text-align: center;
|
|
color: #aaaaaa;
|
|
margin-top: 3rem;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<header>
|
|
<div class="container">
|
|
<div class="header-content">
|
|
<div class="logo">
|
|
<img src="../images/favicon_logo.png" alt="Luftglanz Logo" class="logo-img">
|
|
<h1 data-i18n="roof_drone">Luftglanz</h1>
|
|
</div>
|
|
|
|
<button class="mobile-toggle" id="mobileToggle">
|
|
<span>☰</span>
|
|
</button>
|
|
|
|
<nav class="main-nav" id="mainNav">
|
|
<ul>
|
|
<li><a href="../index.html" data-i18n="nav_home">Home</a></li>
|
|
<li><a href="../index.html#services" data-i18n="nav_services">Services</a></li>
|
|
<li><a href="../index.html#how-it-works" data-i18n="nav_how_it_works">How It Works</a></li>
|
|
<li><a href="../index.html#faq" data-i18n="nav_faq">FAQ</a></li>
|
|
<li><a href="../index.html#contact" data-i18n="nav_contact">Contact</a></li>
|
|
<li><a href="products.html" data-i18n="nav_products">Products</a></li>
|
|
<li><a href="about.html" class="active" data-i18n="nav_about">About Us</a></li>
|
|
<li><a href="gallery.html" data-i18n="nav_gallery">Gallery</a></li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<!-- Language switcher removed -->
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="container">
|
|
<section class="section-container">
|
|
<h2 data-i18n="about_title">About Our Company</h2>
|
|
<p data-i18n="about_description">Bei Dachdrohnen-Reinigung revolutionieren wir die Dachreinigungsbranche mit modernster Drohnentechnologie. Unser Unternehmen wurde 2020 gegründet und unsere Mission ist es, sichere, schnelle und gründliche Reinigungsdienstleistungen ohne die Risiken traditioneller Dachreinigungsmethoden anzubieten.</p>
|
|
|
|
<h3 data-i18n="our_story_title">Our Story</h3>
|
|
<p data-i18n="our_story_text">The idea for Roof Drone Cleaning came when our founder noticed the dangers that traditional roof cleaners faced daily. By combining expertise in drone technology and cleaning solutions, we created a safer, more efficient method for roof maintenance.</p>
|
|
|
|
<div class="team-image-container">
|
|
<img src="../images/out_team.jpg" alt="Our professional team">
|
|
<p data-i18n="our_team_caption">The Roof Drone Cleaning professional team</p>
|
|
</div>
|
|
|
|
<h3 data-i18n="our_team_title">Our Team</h3>
|
|
<p data-i18n="our_team_text">Our team consists of certified drone operators, roof maintenance specialists, and customer service experts dedicated to providing you with the best possible experience.</p>
|
|
|
|
<h3 data-i18n="our_technology_title">Unsere Technologie</h3>
|
|
<p data-i18n="our_technology_text">Wir verwenden speziell entwickelte Drohnen, die mit hochmoderner Reinigungsausrüstung ausgestattet sind, um sicherzustellen, dass Ihr Dach schnell und gründlich gereinigt wird.</p>
|
|
</section>
|
|
</main>
|
|
|
|
<footer>
|
|
<div class="container">
|
|
<p data-i18n="footer_text">© 2023 Luftglanz. Alle Rechte vorbehalten.</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<script src="../js/translations.js"></script>
|
|
<script src="../js/language-manager.js"></script>
|
|
</body>
|
|
</html> |