Inital Commit
This commit is contained in:
320
html/drone/pages/about.html
Normal file
320
html/drone/pages/about.html
Normal file
@@ -0,0 +1,320 @@
|
||||
<!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>
|
||||
583
html/drone/pages/contact.html
Normal file
583
html/drone/pages/contact.html
Normal file
@@ -0,0 +1,583 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Kontakt - 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 {
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
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;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
/* Header styling */
|
||||
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;
|
||||
}
|
||||
|
||||
/* Navigation styling */
|
||||
.main-nav ul {
|
||||
display: flex;
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
gap: 1.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%;
|
||||
}
|
||||
|
||||
/* Section styling */
|
||||
.section-container {
|
||||
padding: 2.5rem;
|
||||
margin-bottom: 2rem;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
text-align: center;
|
||||
margin-bottom: 3rem;
|
||||
position: relative;
|
||||
color: var(--text-dark);
|
||||
font-size: 2.5rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.section-title::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
width: 60px;
|
||||
height: 3px;
|
||||
background: var(--gradient-primary);
|
||||
bottom: -1rem;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.section-description {
|
||||
text-align: center;
|
||||
color: var(--text-light);
|
||||
max-width: 800px;
|
||||
margin: 0 auto 3rem;
|
||||
font-size: 1.1rem;
|
||||
line-height: 1.7;
|
||||
}
|
||||
|
||||
/* Contact info cards */
|
||||
.contact-info {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
||||
gap: 2rem;
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
.contact-method {
|
||||
background-color: var(--card-bg);
|
||||
border: 1px solid rgba(0, 0, 0, 0.05);
|
||||
border-radius: 10px;
|
||||
padding: 2rem;
|
||||
text-align: center;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.contact-method:hover {
|
||||
transform: translateY(-10px);
|
||||
box-shadow: var(--shadow);
|
||||
}
|
||||
|
||||
.contact-method h3 {
|
||||
color: var(--text-dark);
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
font-size: 1.3rem;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.contact-method h3::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
width: 30px;
|
||||
height: 2px;
|
||||
background: var(--gradient-primary);
|
||||
bottom: -0.5rem;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.contact-method p {
|
||||
color: var(--text-light);
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
/* Contact form */
|
||||
.contact-form {
|
||||
background-color: var(--card-bg);
|
||||
border: 1px solid rgba(0, 0, 0, 0.05);
|
||||
border-radius: 10px;
|
||||
padding: 2.5rem;
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
box-shadow: var(--shadow);
|
||||
}
|
||||
|
||||
.form-group {
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.form-group label {
|
||||
display: block;
|
||||
margin-bottom: 0.5rem;
|
||||
color: var(--text-medium);
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.form-group input,
|
||||
.form-group textarea,
|
||||
.form-group select {
|
||||
width: 100%;
|
||||
padding: 1rem;
|
||||
background-color: rgba(0, 0, 0, 0.05);
|
||||
border: 1px solid rgba(0, 0, 0, 0.1);
|
||||
border-radius: 6px;
|
||||
color: var(--text-medium);
|
||||
font-size: 1rem;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.form-group input:focus,
|
||||
.form-group textarea:focus,
|
||||
.form-group select:focus {
|
||||
outline: none;
|
||||
border-color: var(--accent-color);
|
||||
box-shadow: 0 0 0 2px rgba(0, 194, 203, 0.2);
|
||||
}
|
||||
|
||||
.form-actions {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
gap: 1.5rem;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background: var(--gradient-primary);
|
||||
color: var(--text-dark);
|
||||
border: none;
|
||||
padding: 0.8rem 1.5rem;
|
||||
font-size: 1rem;
|
||||
font-weight: 600;
|
||||
border-radius: 6px;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
flex-grow: 1;
|
||||
box-shadow: var(--shadow);
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.btn-primary:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 0 20px rgba(0, 194, 203, 0.6);
|
||||
}
|
||||
|
||||
.btn-primary::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: var(--gradient-secondary);
|
||||
border-radius: 6px;
|
||||
z-index: -1;
|
||||
opacity: 0;
|
||||
transition: opacity 0.3s ease;
|
||||
}
|
||||
|
||||
.btn-primary:hover::before {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.btn-secondary {
|
||||
background-color: rgba(0, 0, 0, 0.05);
|
||||
color: var(--text-medium);
|
||||
border: 1px solid rgba(0, 0, 0, 0.1);
|
||||
padding: 0.8rem 1.5rem;
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
border-radius: 6px;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.btn-secondary:hover {
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
/* Language Switcher - Updated to match About Us page */
|
||||
.language-switcher {
|
||||
display: flex;
|
||||
gap: 0.75rem;
|
||||
}
|
||||
|
||||
.language-switcher button {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
color: var(--text-medium);
|
||||
padding: 0.4rem 0.75rem;
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.language-switcher button.active,
|
||||
.language-switcher button:hover {
|
||||
background: var(--gradient-primary);
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
/* Stars Background */
|
||||
.stars {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
pointer-events: none;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
.star {
|
||||
position: absolute;
|
||||
width: 2px;
|
||||
height: 2px;
|
||||
background-color: white;
|
||||
border-radius: 50%;
|
||||
opacity: 0.5;
|
||||
animation: twinkling 4s infinite;
|
||||
}
|
||||
|
||||
@keyframes twinkling {
|
||||
0% { opacity: 0.2; }
|
||||
50% { opacity: 0.5; }
|
||||
100% { opacity: 0.2; }
|
||||
}
|
||||
|
||||
/* Footer styling */
|
||||
footer {
|
||||
background-color: rgba(255, 255, 255, 0.95);
|
||||
padding: 2rem 0;
|
||||
border-top: 1px solid rgba(0, 0, 0, 0.05);
|
||||
text-align: center;
|
||||
color: var(--text-light);
|
||||
margin-top: 3rem;
|
||||
}
|
||||
|
||||
main {
|
||||
padding-top: 8rem;
|
||||
}
|
||||
|
||||
/* Mobile styles */
|
||||
@media (max-width: 768px) {
|
||||
.main-nav {
|
||||
display: none;
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
background: rgba(255, 255, 255, 0.95);
|
||||
padding: 1rem 0;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
|
||||
.main-nav.active {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.main-nav ul {
|
||||
flex-direction: column;
|
||||
gap: 0;
|
||||
}
|
||||
|
||||
.main-nav li {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
padding: 0.5rem 0;
|
||||
margin: 0;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
|
||||
.main-nav li:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.main-nav a {
|
||||
display: block;
|
||||
padding: 0.5rem 0;
|
||||
}
|
||||
|
||||
.form-actions {
|
||||
flex-direction: column;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.contact-form {
|
||||
padding: 1.5rem;
|
||||
}
|
||||
|
||||
.contact-method {
|
||||
padding: 1.5rem;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Stars background -->
|
||||
<div class="stars" id="stars"></div>
|
||||
|
||||
<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>
|
||||
|
||||
<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="#" class="active" data-i18n="nav_contact">Contact</a></li>
|
||||
<li><a href="products.html" data-i18n="nav_products">Products</a></li>
|
||||
<li><a href="gallery.html" data-i18n="nav_gallery">Gallery</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<!-- Language switcher removed -->
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<section class="section-container">
|
||||
<div class="container">
|
||||
<h2 class="section-title" data-i18n="contact_title">Contact Us</h2>
|
||||
<p class="section-description" data-i18n="contact_page_description">Have questions about our services or want to schedule a cleaning? Get in touch with us using any of the methods below.</p>
|
||||
|
||||
<div class="contact-info">
|
||||
<div class="contact-method">
|
||||
<h3 data-i18n="contact_phone_title">Phone</h3>
|
||||
<p>(555) 123-4567</p>
|
||||
</div>
|
||||
|
||||
<div class="contact-method">
|
||||
<h3 data-i18n="contact_email_title">Email</h3>
|
||||
<p>info@roofdronecleaning.com</p>
|
||||
</div>
|
||||
|
||||
<div class="contact-method">
|
||||
<h3 data-i18n="contact_address_title">Address</h3>
|
||||
<p>123 Cleaning Ave<br>Drone City, DC 10001</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<form class="contact-form">
|
||||
<div class="form-group">
|
||||
<label for="name" data-i18n="contact_name">Name</label>
|
||||
<input type="text" id="name" name="name" required>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="email" data-i18n="contact_email">Email</label>
|
||||
<input type="email" id="email" name="email" required>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="phone" data-i18n="contact_phone">Phone (Optional)</label>
|
||||
<input type="tel" id="phone" name="phone">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="address" data-i18n="contact_address">Address</label>
|
||||
<input type="text" id="address" name="address">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="message" data-i18n="contact_message">Message</label>
|
||||
<textarea id="message" name="message" required rows="4"></textarea>
|
||||
</div>
|
||||
<div class="form-actions">
|
||||
<button type="button" class="btn-secondary" id="resetForm" data-i18n="contact_reset">Reset</button>
|
||||
<button type="submit" class="btn-primary" data-i18n="contact_send">Send Message</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</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>
|
||||
<script>
|
||||
// Add star backgrounds dynamically
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
const starsContainer = document.getElementById('stars');
|
||||
const starsCount = 100;
|
||||
|
||||
for(let i = 0; i < starsCount; i++) {
|
||||
const star = document.createElement('div');
|
||||
star.classList.add('star');
|
||||
|
||||
// Random position
|
||||
star.style.left = `${Math.random() * 100}%`;
|
||||
star.style.top = `${Math.random() * 100}%`;
|
||||
|
||||
// Random size
|
||||
const size = Math.random() * 2;
|
||||
star.style.width = `${size}px`;
|
||||
star.style.height = `${size}px`;
|
||||
|
||||
// Random delay for twinkling
|
||||
star.style.animationDelay = `${Math.random() * 4}s`;
|
||||
|
||||
starsContainer.appendChild(star);
|
||||
}
|
||||
|
||||
// Reset form functionality
|
||||
const resetButton = document.getElementById('resetForm');
|
||||
const contactForm = document.querySelector('.contact-form');
|
||||
|
||||
if (resetButton && contactForm) {
|
||||
resetButton.addEventListener('click', function() {
|
||||
contactForm.reset();
|
||||
});
|
||||
}
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
573
html/drone/pages/gallery.html
Normal file
573
html/drone/pages/gallery.html
Normal file
@@ -0,0 +1,573 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Galerie - 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">
|
||||
<link rel="stylesheet" href="../css/components/mobile-menu.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 {
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
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;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
/* Header styling */
|
||||
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;
|
||||
}
|
||||
|
||||
/* Navigation styling */
|
||||
.main-nav ul {
|
||||
display: flex;
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
gap: 1.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%;
|
||||
}
|
||||
|
||||
/* Section styling */
|
||||
.section-container {
|
||||
padding: 2rem;
|
||||
margin-bottom: 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);
|
||||
margin-top: 6rem; /* Increased to move content below header */
|
||||
padding-top: 2rem;
|
||||
}
|
||||
|
||||
.section-container h2 {
|
||||
display: block; /* Changed from none to block */
|
||||
font-size: 2.2rem;
|
||||
color: var(--text-dark);
|
||||
margin-bottom: 1.5rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.section-container p {
|
||||
color: var(--text-light);
|
||||
margin-bottom: 2rem;
|
||||
text-align: center;
|
||||
max-width: 800px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
/* Gallery grid styling */
|
||||
.gallery-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
|
||||
gap: 1.5rem;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.gallery-item {
|
||||
position: relative;
|
||||
aspect-ratio: 3/2;
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
cursor: pointer;
|
||||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.gallery-item:hover {
|
||||
transform: translateY(-5px);
|
||||
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
.gallery-item::after {
|
||||
content: '🔍';
|
||||
position: absolute;
|
||||
bottom: 10px;
|
||||
right: 10px;
|
||||
background: rgba(255, 255, 255, 0.8);
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 18px;
|
||||
opacity: 0;
|
||||
transition: opacity 0.3s ease;
|
||||
}
|
||||
|
||||
.gallery-item:hover::after {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
/* Lightbox styling */
|
||||
.lightbox {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: rgba(0, 0, 0, 0.9);
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
z-index: 9999;
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
transition: opacity 0.3s ease;
|
||||
}
|
||||
|
||||
.lightbox.active {
|
||||
opacity: 1;
|
||||
pointer-events: all;
|
||||
}
|
||||
|
||||
.lightbox-content {
|
||||
position: relative;
|
||||
max-width: 90%;
|
||||
max-height: 80%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.lightbox-image {
|
||||
max-width: 100%;
|
||||
max-height: 80vh;
|
||||
border-radius: 4px;
|
||||
box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
.lightbox-close {
|
||||
position: absolute;
|
||||
top: 20px;
|
||||
right: 20px;
|
||||
color: white;
|
||||
font-size: 30px;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
cursor: pointer;
|
||||
z-index: 10;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.lightbox-close:hover {
|
||||
background: rgba(255, 255, 255, 0.2);
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
.lightbox-nav {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
padding: 0 20px;
|
||||
transform: translateY(-50%);
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.lightbox-nav button {
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
color: white;
|
||||
border: none;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
border-radius: 50%;
|
||||
font-size: 24px;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.lightbox-nav button:hover {
|
||||
background: var(--gradient-primary);
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
.lightbox-counter {
|
||||
position: absolute;
|
||||
bottom: -40px;
|
||||
color: white;
|
||||
font-size: 16px;
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* Adjust main content to start lower */
|
||||
main {
|
||||
padding-top: 5rem; /* Keep this to account for the fixed header */
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
/* Mobile adjustments */
|
||||
@media (max-width: 768px) {
|
||||
.gallery-grid {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
|
||||
.lightbox-nav button {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
font-size: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Language Switcher - Updated to match About Us page */
|
||||
.language-switcher {
|
||||
display: flex;
|
||||
gap: 0.75rem;
|
||||
}
|
||||
|
||||
.language-switcher button {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
color: var(--text-medium);
|
||||
padding: 0.4rem 0.75rem;
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.language-switcher button.active,
|
||||
.language-switcher button:hover {
|
||||
background: var(--gradient-primary);
|
||||
border-color: transparent;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Remove stars background -->
|
||||
<!-- <div class="stars" id="stars"></div> -->
|
||||
|
||||
<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" data-i18n="nav_products">Produkte</a></li>
|
||||
<li><a href="gallery.html" class="active" data-i18n="nav_gallery">Galerie</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<main class="container">
|
||||
<section class="section-container">
|
||||
<h2 data-i18n="gallery_title">Unsere Arbeit</h2>
|
||||
<p data-i18n="gallery_description">Entdecken Sie unsere Galerie, um zu sehen, wie unsere Drohnen außergewöhnliche Reinigungsergebnisse liefern.</p>
|
||||
|
||||
<div class="gallery-grid">
|
||||
<div class="gallery-item">
|
||||
<img src="../images/drone_realistic1.png" alt="Realistic Drone Cleaning" class="gallery-image" data-i18n-alt="gallery_drone_realistic_alt">
|
||||
</div>
|
||||
<div class="gallery-item">
|
||||
<img src="../images/drone_realistic3.png" alt="Advanced Drone Cleaning Technology" class="gallery-image" data-i18n-alt="gallery_drone_realistic3_alt">
|
||||
</div>
|
||||
<div class="gallery-item">
|
||||
<img src="../images/drone_realistic4.png" alt="Professional Drone Cleaning System" class="gallery-image" data-i18n-alt="gallery_drone_realistic4_alt">
|
||||
</div>
|
||||
<div class="gallery-item">
|
||||
<img src="../images/drone_in_action1.jpg" alt="" data-i18n-alt="gallery_image1_alt">
|
||||
</div>
|
||||
<div class="gallery-item">
|
||||
<img src="../images/drone_realistic5.png" alt="" data-i18n-alt="gallery_image3_alt">
|
||||
</div>
|
||||
<div class="gallery-item">
|
||||
<img src="../images/drone_realistic6.png" alt="" data-i18n-alt="gallery_image4_alt">
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<div class="lightbox" id="lightbox">
|
||||
<div class="lightbox-content">
|
||||
<img src="" alt="" class="lightbox-image" id="lightbox-image">
|
||||
<div class="lightbox-counter" id="lightbox-counter"></div>
|
||||
</div>
|
||||
<div class="lightbox-close" id="lightbox-close">✕</div>
|
||||
<div class="lightbox-nav">
|
||||
<button id="lightbox-prev" data-i18n="gallery_prev">Zurück</button>
|
||||
<button id="lightbox-next" data-i18n="gallery_next">Weiter</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
<p data-i18n="footer_text">© 2025 Luftglanz. Alle Rechte vorbehalten.</p>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="../js/translations.js"></script>
|
||||
<script src="../js/language-manager.js"></script>
|
||||
<!-- Remove drone animation script -->
|
||||
<!-- <script src="../js/drone-image-animation.js"></script> -->
|
||||
<script src="../js/mobile-menu.js"></script>
|
||||
<script>
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
// Set up lightbox functionality
|
||||
setupLightbox();
|
||||
});
|
||||
|
||||
function setupLightbox() {
|
||||
// Get all necessary lightbox elements
|
||||
const lightbox = document.getElementById('lightbox');
|
||||
const lightboxImage = document.getElementById('lightbox-image');
|
||||
const lightboxClose = document.getElementById('lightbox-close');
|
||||
const lightboxPrev = document.getElementById('lightbox-prev');
|
||||
const lightboxNext = document.getElementById('lightbox-next');
|
||||
const lightboxCounter = document.getElementById('lightbox-counter');
|
||||
const galleryItems = document.querySelectorAll('.gallery-item img');
|
||||
|
||||
// Make sure elements exist
|
||||
if (!lightbox || !lightboxImage || galleryItems.length === 0) {
|
||||
console.error('Lightbox elements not found');
|
||||
return;
|
||||
}
|
||||
|
||||
// Track the current image index
|
||||
let currentIndex = 0;
|
||||
|
||||
// Function to update counter
|
||||
function updateCounter() {
|
||||
if (lightboxCounter) {
|
||||
lightboxCounter.textContent = `${currentIndex + 1} / ${galleryItems.length}`;
|
||||
}
|
||||
}
|
||||
|
||||
// Open lightbox when gallery image is clicked
|
||||
galleryItems.forEach((item, index) => {
|
||||
item.addEventListener('click', function() {
|
||||
currentIndex = index;
|
||||
lightboxImage.src = item.src;
|
||||
lightboxImage.alt = item.alt;
|
||||
lightbox.classList.add('active');
|
||||
document.body.style.overflow = 'hidden'; // Prevent scrolling
|
||||
updateCounter();
|
||||
});
|
||||
});
|
||||
|
||||
// Navigate to previous image
|
||||
if (lightboxPrev) {
|
||||
lightboxPrev.addEventListener('click', function(e) {
|
||||
e.stopPropagation(); // Prevent event bubbling to lightbox
|
||||
currentIndex = (currentIndex > 0) ? currentIndex - 1 : galleryItems.length - 1;
|
||||
lightboxImage.src = galleryItems[currentIndex].src;
|
||||
lightboxImage.alt = galleryItems[currentIndex].alt;
|
||||
updateCounter();
|
||||
});
|
||||
}
|
||||
|
||||
// Navigate to next image
|
||||
if (lightboxNext) {
|
||||
lightboxNext.addEventListener('click', function(e) {
|
||||
e.stopPropagation(); // Prevent event bubbling to lightbox
|
||||
currentIndex = (currentIndex < galleryItems.length - 1) ? currentIndex + 1 : 0;
|
||||
lightboxImage.src = galleryItems[currentIndex].src;
|
||||
lightboxImage.alt = galleryItems[currentIndex].alt;
|
||||
updateCounter();
|
||||
});
|
||||
}
|
||||
|
||||
// Close lightbox when close button is clicked
|
||||
if (lightboxClose) {
|
||||
lightboxClose.addEventListener('click', function() {
|
||||
lightbox.classList.remove('active');
|
||||
document.body.style.overflow = ''; // Re-enable scrolling
|
||||
});
|
||||
}
|
||||
|
||||
// Close lightbox when clicking outside the image
|
||||
lightbox.addEventListener('click', function(e) {
|
||||
if (e.target === lightbox) {
|
||||
lightbox.classList.remove('active');
|
||||
document.body.style.overflow = '';
|
||||
}
|
||||
});
|
||||
|
||||
// Prevent closing when clicking on image
|
||||
lightboxImage.addEventListener('click', function(e) {
|
||||
e.stopPropagation();
|
||||
});
|
||||
|
||||
// Keyboard navigation
|
||||
document.addEventListener('keydown', function(e) {
|
||||
if (lightbox.classList.contains('active')) {
|
||||
if (e.key === 'ArrowLeft' && lightboxPrev) {
|
||||
lightboxPrev.click();
|
||||
} else if (e.key === 'ArrowRight' && lightboxNext) {
|
||||
lightboxNext.click();
|
||||
} else if (e.key === 'Escape') {
|
||||
lightbox.classList.remove('active');
|
||||
document.body.style.overflow = '';
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// Handle contact link with consistent offset
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
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>
|
||||
103
html/drone/pages/products-debug.html
Normal file
103
html/drone/pages/products-debug.html
Normal file
@@ -0,0 +1,103 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Products Debug - Luftglanz</title>
|
||||
<style>
|
||||
/* Minimal styling to ensure visibility */
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: #f0f0f0;
|
||||
}
|
||||
|
||||
.debug-info {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
background-color: red;
|
||||
color: white;
|
||||
padding: 10px;
|
||||
z-index: 9999;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
header {
|
||||
background-color: #e8e9ea;
|
||||
padding: 20px;
|
||||
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.logo-img {
|
||||
height: 40px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
main {
|
||||
padding: 20px;
|
||||
margin-top: 20px;
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.product-card {
|
||||
border: 1px solid #ddd;
|
||||
padding: 15px;
|
||||
margin-bottom: 20px;
|
||||
background-color: white;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="debug-info">DEBUG MODE</div>
|
||||
|
||||
<header>
|
||||
<div class="logo">
|
||||
<img src="../images/favicon_logo.png" alt="Luftglanz Logo" class="logo-img">
|
||||
<h1>Luftglanz</h1>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<h2>Products (Debug Version)</h2>
|
||||
|
||||
<div class="product-card">
|
||||
<h3>AGO Quart Grünbelagentferner</h3>
|
||||
<p>Test product description to verify content visibility</p>
|
||||
<p><strong>Price:</strong> 24,90 €</p>
|
||||
<a href="https://www.agoshop.de/gruenbelagentferner/ago-quart/" target="_blank">View on Manufacturer's Site</a>
|
||||
</div>
|
||||
|
||||
<div class="product-card">
|
||||
<h3>AGO Quart 5 Liter</h3>
|
||||
<p>Test product description to verify content visibility</p>
|
||||
<p><strong>Price:</strong> 99,90 €</p>
|
||||
<a href="https://www.agoshop.de/gruenbelagentferner/ago-quart-5-liter/" target="_blank">View on Manufacturer's Site</a>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<script>
|
||||
// Display debugging information
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
console.log('Debug page loaded');
|
||||
|
||||
// Check if elements are visible
|
||||
const header = document.querySelector('header');
|
||||
const main = document.querySelector('main');
|
||||
|
||||
console.log('Header visible:', header.offsetHeight > 0);
|
||||
console.log('Main visible:', main.offsetHeight > 0);
|
||||
|
||||
// Add a timestamp to verify the page is current
|
||||
const debugInfo = document.querySelector('.debug-info');
|
||||
debugInfo.textContent += ' - ' + new Date().toLocaleTimeString();
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
427
html/drone/pages/products.html
Normal file
427
html/drone/pages/products.html
Normal file
@@ -0,0 +1,427 @@
|
||||
<!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">
|
||||
|
||||
<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">© 2025 Luftglanz. Alle Rechte vorbehalten.</p>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="../js/translations.js"></script>
|
||||
<script src="../js/language-manager.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>
|
||||
425
html/drone/pages/services.html
Normal file
425
html/drone/pages/services.html
Normal file
@@ -0,0 +1,425 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Leistungen - 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 {
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
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;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
/* Header styling */
|
||||
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;
|
||||
}
|
||||
|
||||
/* Navigation styling */
|
||||
.main-nav ul {
|
||||
display: flex;
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
gap: 1.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%;
|
||||
}
|
||||
|
||||
/* Section styling */
|
||||
.section-container {
|
||||
padding: 2.5rem;
|
||||
margin-bottom: 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);
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.section-container h2 {
|
||||
color: var(--text-dark);
|
||||
font-size: 2.2rem;
|
||||
margin-bottom: 1rem;
|
||||
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;
|
||||
position: relative;
|
||||
padding-left: 1rem;
|
||||
}
|
||||
|
||||
.section-container h3::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0.35rem;
|
||||
height: 1rem;
|
||||
width: 3px;
|
||||
background: var(--gradient-primary);
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.section-container p {
|
||||
color: var(--text-light);
|
||||
margin-bottom: 1.5rem;
|
||||
line-height: 1.7;
|
||||
}
|
||||
|
||||
/* Service cards */
|
||||
.service-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
gap: 2rem;
|
||||
margin-top: 3rem;
|
||||
}
|
||||
|
||||
.service-card {
|
||||
background-color: var(--card-bg);
|
||||
border: 1px solid rgba(0, 0, 0, 0.05);
|
||||
border-radius: 10px;
|
||||
padding: 2rem;
|
||||
position: relative;
|
||||
transition: all 0.3s ease;
|
||||
box-shadow: var(--shadow);
|
||||
}
|
||||
|
||||
.service-card:hover {
|
||||
transform: translateY(-10px);
|
||||
box-shadow: var(--shadow);
|
||||
}
|
||||
|
||||
.service-card h3 {
|
||||
color: var(--text-dark);
|
||||
font-size: 1.4rem;
|
||||
margin-top: 0;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.service-card h3::before {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.service-card p {
|
||||
color: var(--text-light);
|
||||
}
|
||||
|
||||
/* Language Switcher - Updated to match About Us page */
|
||||
.language-switcher {
|
||||
display: flex;
|
||||
gap: 0.75rem;
|
||||
}
|
||||
|
||||
.language-switcher button {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
color: var(--text-medium);
|
||||
padding: 0.4rem 0.75rem;
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.language-switcher button.active,
|
||||
.language-switcher button:hover {
|
||||
background: var(--gradient-primary);
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
/* Remove Stars Background */
|
||||
.stars {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Footer styling */
|
||||
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;
|
||||
}
|
||||
|
||||
main {
|
||||
padding-top: 8rem;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
/* Mobile styles */
|
||||
@media (max-width: 768px) {
|
||||
.main-nav {
|
||||
display: none;
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
background: rgba(255, 255, 255, 0.95);
|
||||
padding: 1rem 0;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
|
||||
.main-nav.active {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.main-nav ul {
|
||||
flex-direction: column;
|
||||
gap: 0;
|
||||
}
|
||||
|
||||
.main-nav li {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
padding: 0.5rem 0;
|
||||
margin: 0;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
|
||||
.main-nav li:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.main-nav a {
|
||||
display: block;
|
||||
padding: 0.5rem 0;
|
||||
}
|
||||
|
||||
.section-container {
|
||||
padding: 1.5rem;
|
||||
}
|
||||
}
|
||||
</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>
|
||||
|
||||
<nav class="main-nav" id="mainNav">
|
||||
<ul>
|
||||
<li><a href="../index.html" data-i18n="nav_home">Home</a></li>
|
||||
<li><a href="services.html" class="active" 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="gallery.html" data-i18n="nav_gallery">Gallery</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<main class="container">
|
||||
<section class="hero">
|
||||
<div class="container">
|
||||
<div class="hero-content">
|
||||
<h2 data-i18n="services_hero_title">Professional <span>Drone Roof Cleaning</span> Services</h2>
|
||||
<p data-i18n="services_hero_subtitle">Our specialized drones deliver thorough cleaning with advanced technology</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="section-container">
|
||||
<h2 data-i18n="services_title">Our Services</h2>
|
||||
<p data-i18n="services_description">We offer professional roof cleaning and maintenance services using cutting-edge drone technology that delivers superior results with enhanced safety.</p>
|
||||
|
||||
<div class="service-grid">
|
||||
<div class="service-card" id="standard">
|
||||
<h3 data-i18n="service_drone_title">Drone Roof Cleaning</h3>
|
||||
<p data-i18n="service_drone_description">Unsere Drohnen sind mit speziellen Sprühsystemen ausgestattet, die effektiv Schmutz, Moos und Algen entfernen. Dieser kontaktlose Ansatz beseitigt das Risiko von Ziegelschäden und Arbeiterunfällen, die mit herkömmlichen Dachreinigungsmethoden verbunden sind.</p>
|
||||
</div>
|
||||
|
||||
<div class="service-card" id="inspection">
|
||||
<h3 data-i18n="service_inspection_detailed_title">Inspection Services</h3>
|
||||
<p data-i18n="service_inspection_detailed_description">In addition to cleaning, our drones can perform detailed inspections of your roof, identifying potential issues before they become costly repairs. Our high-resolution cameras capture every detail, allowing us to spot missing shingles, damaged flashing, or other concerns that might be missed by the naked eye.</p>
|
||||
</div>
|
||||
|
||||
<div class="service-card" id="maintenance">
|
||||
<h3 data-i18n="service_maintenance_title">Maintenance Packages</h3>
|
||||
<p data-i18n="service_maintenance_description">We offer various maintenance packages to keep your roof in top condition year-round, ensuring longevity and aesthetic appeal. Regular maintenance can extend your roof's lifespan by up to 25% while preventing costly repairs. Our packages can be customized to fit your specific roofing needs and budget.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 data-i18n="premium_services_title">Premium Add-On Services</h3>
|
||||
<p data-i18n="premium_services_description">Beyond our core services, we offer specialized treatments including waterproofing applications, UV-protective coatings, and thermal scanning to identify potential heat leaks. These additional services help maximize your roof's performance and energy efficiency while extending its overall lifespan.</p>
|
||||
|
||||
<h3 data-i18n="environmental_approach_title">Unser Effizienzkonzept</h3>
|
||||
<p data-i18n="environmental_approach_description">Unsere präzise Drohnenanwendungsmethode reduziert den Wasserverbrauch im Vergleich zu herkömmlichen Hochdruckreinigungstechniken um bis zu 60%. Dies bedeutet eine schnellere, sauberere Reinigung in weniger Zeit.</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>
|
||||
<script src="../js/drone-image-animation.js"></script>
|
||||
<script>
|
||||
// Smooth scrolling
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
const navLinks = document.querySelectorAll('a[href^="#"]');
|
||||
|
||||
navLinks.forEach(link => {
|
||||
link.addEventListener('click', function(e) {
|
||||
if(this.getAttribute('href') !== '#') {
|
||||
e.preventDefault();
|
||||
|
||||
const targetId = this.getAttribute('href');
|
||||
const targetElement = document.querySelector(targetId);
|
||||
|
||||
if (targetElement) {
|
||||
window.scrollTo({
|
||||
top: targetElement.offsetTop - 100,
|
||||
behavior: 'smooth'
|
||||
});
|
||||
|
||||
history.pushState(null, null, targetId);
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user