diff --git a/datenschutz.html b/datenschutz.html new file mode 100644 index 0000000..7ce7bc4 --- /dev/null +++ b/datenschutz.html @@ -0,0 +1,283 @@ + + + + + + Datenschutzerklärung - Andreas Guttenberger + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/img/AXA_Logo_FR.png b/img/AXA_Logo_FR.png new file mode 100644 index 0000000..2358f53 Binary files /dev/null and b/img/AXA_Logo_FR.png differ diff --git a/img/AXA_Logo_FR.svg b/img/AXA_Logo_FR.svg new file mode 100644 index 0000000..820d4db --- /dev/null +++ b/img/AXA_Logo_FR.svg @@ -0,0 +1,33 @@ + + + + + + + + + + diff --git a/img/axa_logo_white.svg b/img/axa_logo_white.svg new file mode 100644 index 0000000..490b756 --- /dev/null +++ b/img/axa_logo_white.svg @@ -0,0 +1,17 @@ + + + + + \ No newline at end of file diff --git a/impressum.html b/impressum.html new file mode 100644 index 0000000..80a5914 --- /dev/null +++ b/impressum.html @@ -0,0 +1,168 @@ + + + + + + Impressum - Andreas Guttenberger + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/index.html b/index.html index 7d6b620..70482bb 100644 --- a/index.html +++ b/index.html @@ -14,6 +14,9 @@ + + + @@ -25,7 +28,7 @@ Andreas Guttenberger
- +

Andreas Guttenberger

Versicherungsfachmann (IHK)

Ihre persönliche Beratung für alle Versicherungsfragen

@@ -126,6 +129,11 @@
+ + +
+
+
@@ -134,11 +142,15 @@

© 2026 Andreas Guttenberger - Versicherungsfachmann (IHK)

+ + \ No newline at end of file diff --git a/script.js b/script.js index 81fc261..687d87b 100644 --- a/script.js +++ b/script.js @@ -37,4 +37,44 @@ document.addEventListener('DOMContentLoaded', () => { el.style.transition = 'opacity 0.6s ease, transform 0.6s ease'; observer.observe(el); }); -}); \ No newline at end of file + + // Initialize map + initializeMap(); +}); + +// Initialize Leaflet Map +function initializeMap() { + // Koordinaten: Am Fallgatter 6, 93183 Kallmünz / Traidendorf + const lat = 49.17160; + const lng = 11.94120; + + // Create map + const map = L.map('map').setView([lat, lng], 16); + + // Add OpenStreetMap tiles + L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', { + attribution: '© OpenStreetMap contributors', + maxZoom: 19 + }).addTo(map); + + // Custom icon + const axaIcon = L.divIcon({ + className: 'custom-marker', + html: '
📍
', + iconSize: [40, 40], + iconAnchor: [20, 40] + }); + + // Add marker + const marker = L.marker([lat, lng], { icon: axaIcon }).addTo(map); + + // Add popup + marker.bindPopup(` +
+ Andreas Guttenberger
+ Versicherungsfachmann (IHK)
+ Am Fallgatter 6
+ 93183 Kallmünz / Traidendorf +
+ `).openPopup(); +} \ No newline at end of file diff --git a/style.css b/style.css index 428911b..0807b66 100644 --- a/style.css +++ b/style.css @@ -71,7 +71,6 @@ body { .logo { height: 60px; margin-bottom: 20px; - filter: brightness(0) invert(1); } .hero h1 { @@ -334,6 +333,19 @@ body { color: var(--white); } +/* Map */ +.map-container { + margin-top: 60px; + border-radius: 15px; + overflow: hidden; + box-shadow: var(--shadow-lg); +} + +#map { + width: 100%; + height: 450px; +} + /* Footer */ .footer { background-color: var(--primary-color);