/* Grundstruktur */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #fdfdfd;
  color: #222;
  font-size: 16px;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
header {
  background-color: #ffffff;
  padding: 1rem 2rem;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

header h1 {
  font-size: 1.5rem;
  color: #3a3a3a;
}

nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #555;
  font-weight: 500;
}

nav a:hover {
  color: #008cba;
}

/* Buttons */
.button {
  background-color: #008cba;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.button:hover {
  background-color: #006b96;
}

/* Formulare */
form input,
form textarea,
form select {
  width: 100%;
  padding: 0.65rem;
  margin: 0.5rem 0 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

form button {
  background-color: #008cba;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

form button:hover {
  background-color: #005f78;
}

/* Kartenlayout */
.card {
  background-color: #ffffff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  margin-top: 4rem;
  padding: 1rem;
  border-top: 1px solid #eee;
}

.hero {
  max-width: 95%;
  margin: 2rem auto;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  background: linear-gradient(90deg, #00b4db, #0083b0);
  color: white;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero .button {
  background-color: white;
  color: #0083b0;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.hero .button:hover {
  background-color: #f0f0f0;
}

.main-header {
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
}

.navbar-brand {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}

.navbar-nav .nav-link {
  margin-left: 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #00b4db;
  text-decoration: underline;
}

.split-bg {
  background-image: url('/images/1.webp'), url('/images/2.webp');
  background-size: 50% 100%;
  background-position: left top, right top;
  background-repeat: no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-section {
  padding: 2rem;
  background-color: #f7f7f7;
  text-align: center;
}

.map-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.map-wrapper iframe {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-wrapper.mt-3 {
  gap: 1rem;
  display: flex;
}

.map-wrapper.mb-3 {
  width: 50%;
  float: left;
}

@media (max-width: 768px) {
  .map-wrapper.mt-3 {
    flex-direction: column;
  }

  .map-wrapper iframe {
    width: 100%;
    height: 300px;
  }

  .map-wrapper mb-3 {
    width: 100%;
  }
}

/* =========================
   Weihnachts-Special Styles
   ========================= */

.christmas-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top left, #fdf3f3 0, #b3001b 35%, #40000f 100%);
  color: #fff;
}

.christmas-hero .hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.christmas-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.christmas-hero p {
  font-size: 1.1rem;
}

.event-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  backdrop-filter: blur(4px);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-whatsapp {
  background-color: #25D366;
  color: #fff !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
}

.hero-whatsapp:hover {
  background-color: #1fb157;
}

.hero-note {
  margin-top: 1rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Deko-Sterne / Schneeflocken */
.hero-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-decoration .snowflake {
  position: absolute;
  font-size: 1.4rem;
  opacity: 0.25;
}

.hero-decoration .snowflake:nth-child(1) {
  top: 15%;
  left: 10%;
}

.hero-decoration .snowflake:nth-child(2) {
  top: 30%;
  right: 15%;
}

.hero-decoration .snowflake:nth-child(3) {
  bottom: 10%;
  left: 40%;
}
.christmas-event {
  border-left: 5px solid #b3001b;
  background: linear-gradient(135deg, #ffffff, #fff7f7);
}

.christmas-event h2 {
  color: #b3001b;
}

.christmas-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0.75rem;
}

.christmas-list li {
  margin-bottom: 0.35rem;
}

.christmas-sidebox {
  background: rgba(179, 0, 27, 0.06);
  border-radius: 10px;
  padding: 1.25rem;
  border: 1px solid rgba(179, 0, 27, 0.15);
  font-size: 0.95rem;
}

/* Responsives Fine-Tuning für den Weihnachts-Hero */
@media (max-width: 768px) {
  .christmas-hero {
    padding: 2rem 1.5rem;
  }

  .christmas-hero h1 {
    font-size: 2rem;
  }
}
