﻿#anfahrt {
  text-align: center;
  padding: 3rem 1rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px);
}

#anfahrt h2 {
  color: #e0b089;
  margin-bottom: 0.5rem;
}

#anfahrt p {
  color: #d7c3a3;
  margin-bottom: 1.5rem;
}

/* Container */
.map-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

/* Platzhalter */
#map-placeholder {
  position: relative;
}

#map-placeholder img {
  display: block;
  width: 100%;
  height: auto;
}

/* Overlay mit Button */
.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.map-overlay p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.map-overlay button {
  background: #e0b089;
  color: #1a1a1a;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.map-overlay button:hover {
  background: #f0c99a;
}