/* =====================================================
   LEOPOLDENHAUS.AT – EXAKTE NACHBILDUNG
   Farben/Layout basierend auf Screenshot-Analyse
   ===================================================== */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 14px; }

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; height: auto; }

/* ===== HEADER ===================================== */
#header {
  background: #2ba84a;
  height: 73px;
  position: relative;
  z-index: 100;
}
.header-inner {
  max-width: 960px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
}

/* Logo */
.logo-wrap { display: flex; align-items: center; }
.logo-img { height: 48px; width: auto; }
.logo-mob { display: none; }

/* Nav */
.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
}
.main-nav ul li a {
  color: #fff;
  font-size: 13px;
  font-weight: normal;
  padding: 0 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 73px;
  display: block;
  white-space: nowrap;
}
.main-nav ul li a:hover { text-decoration: none; color: #d4f5de; }
.nav-hamburger {
  color: #fff;
  font-size: 18px;
  padding: 0 10px;
  cursor: pointer;
  line-height: 73px;
  display: block;
}

/* ===== SECTION WEISS =============================== */
.section-white {
  background: #fff;
}

/* Hausbild */
.haus-img-wrap {
  text-align: center;
  padding: 30px 0 0 0;
}
.haus-img-wrap img {
  display: inline-block;
  max-width: 340px;
  width: 100%;
}

/* Bewerbung-Button */
.bewerbung-wrap {
  text-align: center;
  padding: 24px 0 0 0;
}
.btn-bewerbung {
  display: inline-block;
  background: #23cf5f;
  color: #fff !important;
  font-size: 22px;
  font-weight: normal;
  letter-spacing: 0.04em;
  padding: 17px 50px;
  text-transform: uppercase;
  text-decoration: none !important;
  border: none;
  border-radius: 6px;
}
.btn-bewerbung:hover {
  background: #1fb854;
  text-decoration: none !important;
}

/* ===== ALLGEMEINE INFOS =========================== */
.section-info {
  padding: 20px 0 30px 0;
}
.content-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Gold-Heading (h3) */
.heading-gold {
  font-size: 50px;
  font-weight: 500;
  color: #c1a873;
  margin: 20px 0 14px 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.2;
}

.section-info p {
  font-size: 13px;
  color: #333;
  margin-bottom: 4px;
  line-height: 1.5;
}

/* ===== ZIMMER-SEKTION (grau) ====================== */
.section-grey {
  background: #e8e8e8;
  padding: 28px 0 30px 0;
}

/* Kleines "Zimmer"-Label */
.zimmer-label {
  font-size: 36px;
  color: #212529;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
  font-family: Arial, Helvetica, sans-serif;
}

/* Großes grünes Heading */
.heading-green-big {
  font-size: 50px;
  font-weight: 700;
  color: #2ba84a;
  text-align: center;
  margin-bottom: 20px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Zimmer-Text */
.zimmer-text {
  text-align: center;
  margin-bottom: 18px;
}
.zimmer-text p {
  font-size: 13px;
  color: #333;
  line-height: 1.5;
  margin-bottom: 2px;
}

/* Slider */
.slider-wrap {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  user-select: none;
}
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #222;
  line-height: 0;
}
.slide {
  display: none;
  width: 100%;
}
.slide.active { display: block; }
.slide img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* Pfeil-Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  font-size: 18px;
  padding: 8px 12px;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
}
.slider-btn:hover { background: rgba(0,0,0,0.7); }
.slider-prev { left: 0; }
.slider-next { right: 0; }

/* Dots */
.slider-dots {
  text-align: center;
  padding: 8px 0 2px;
}
.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #bbb;
  border: none;
  margin: 0 3px;
  cursor: pointer;
  padding: 0;
}
.dot.active { background: #3a8c1c; }

/* ===== KARTE ====================================== */
.section-map {
  padding: 30px 0 20px 0;
}
.map-wrap {
  width: 540px;
  height: 400px;
  max-width: 100%;
  margin: 0 auto;
}

/* ===== FOOTER ===================================== */
#footer {
  background: #2ba84a;
  padding: 12px 0;
  margin-top: 0;
}
.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.footer-left p,
.footer-right {
  font-size: 13px;
  color: #fff;
}
.footer-left a,
.footer-right a {
  color: #fff;
}
.footer-left a:hover,
.footer-right a:hover {
  color: #d4f5de;
  text-decoration: underline;
}

/* ===== RESPONSIVE ================================= */
@media (max-width: 600px) {
  .logo-desk { display: none; }
  .logo-mob  { display: block; }
  .heading-green-big { font-size: 16px; }
  .zimmer-gallery img { width: calc(50% - 4px); height: 80px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .map-wrap { max-width: 100%; }
}

/* ===== IMPRESSUM / DATENSCHUTZ =================== */
.page-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 30px 20px 50px;
}
.page-body h1 {
  font-size: 20px;
  color: #3a8c1c;
  margin-bottom: 20px;
  font-family: Arial, Helvetica, sans-serif;
}
.page-body h2 {
  font-size: 15px;
  color: #333;
  margin: 22px 0 8px;
  font-family: Arial, Helvetica, sans-serif;
}
.page-body p { font-size: 13px; color: #444; margin-bottom: 10px; line-height: 1.6; }
.page-body strong { color: #222; }
.page-body ul { margin: 8px 0 10px 22px; font-size: 13px; color: #444; }
.page-body a { color: #3a8c1c; }
.page-body a:hover { text-decoration: underline; }
