feat: Google Maps Karte im Standort-Bereich eingebaut

This commit is contained in:
2026-05-10 10:31:28 +02:00
parent 62d775cc4a
commit f36dc8f37d
2 changed files with 37 additions and 1 deletions

View File

@@ -781,6 +781,30 @@ nav.scrolled .nav-links a:hover {
line-height: 1.6;
}
.lage-map-wrapper {
margin-top: 3rem;
border: 1px solid var(--warm);
overflow: hidden;
}
.lage-map-wrapper iframe {
display: block;
width: 100%;
height: 450px;
filter: grayscale(30%) contrast(1.05);
transition: filter 0.4s ease;
}
.lage-map-wrapper:hover iframe {
filter: grayscale(0%) contrast(1);
}
@media (width <= 900px) {
.lage-map-wrapper iframe {
height: 320px;
}
}
/* CONTACT */
.contact-section {
background: var(--cream);