@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

.site-header {
  background: #f2f2f2;
  padding: 20px;
  text-align: center;
}

.image-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 150px;
  width: auto;
  max-width: 100%;
}

.image-set {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}

.image-set img {
  height: 150px;
  width: 17%;
  object-fit: cover;
  margin: 0;
  padding: 0;
}

.header-title h1 {
  margin: 20px 0 10px;
  font-size: 1.8em;
  color: #0056b3;
}

.header-title h2 {
  margin: 0;
  font-size: 1.2em;
  font-weight: normal;
  color: #333399;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.cta-button:hover {
  background: #0056b3;
}

.content {
  max-width: 90%;
  margin: auto;
  padding: 20px;
  text-align: justify;
}

.booking-widget {
  margin: 60px 0;
  padding: 20px;
  background: #f9f9f9;
}

.site-footer {
  background: #f2f2f2;
  text-align: center;
  padding: 40px 20px;
  font-size: 14px;
  color: #555;
}

.site-footer address {
  font-style: normal;
  line-height: 1.6;
  margin-bottom: 20px;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Floating Buttons (nur Desktop) */
.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.cta-icon {
  background: #007bff;
  color: white;
  font-size: 13px;
  padding: 10px;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.cta-icon.wa-image {
  background: #25d366;
}

.cta-icon.wa-image img {
  display: block;
  width: 1.25rem;
  height: auto;
  border-radius: 10%;
  background-color: #27D468;
}

/* Sticky-Leiste oben nur auf Mobil */
@media (max-width: 768px) {
  .floating-cta {
    display: none;
  }
  .image-bar {
    flex-direction: column;
  }
  .logo-img {
    margin-bottom: 10px;
  }
  .image-set img {
    width: 45%;
    height: auto;
  }

  .sticky-top-icons {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
}

/* Desktop: Sticky-Icons nicht zeigen */
@media (min-width: 769px) {
  .sticky-top-icons {
    display: none;
  }
}

.map-section {
  text-align: center;
  padding: 40px 0;
}

.map-section img {
  margin: 0 auto;
  display: block;
  max-width: 1600px;
  width: 100%;
}