/* =========================
  KONTAKTFORMULAR ZEILEN HINTERGRUND
========================= */

.form-control {
  background: linear-gradient(to bottom, #ede6d6, #d6c3a3);
  max-width: 100%;
  border: 1px solid #555;
}

/* =========================
  FOOTER
========================= */
.footer {
  color: #fff;
  background-color: var(--cassiopeia-color-primary);
  background-image: linear-gradient(180deg, var(--cassiopeia-color-primary) 0%, #511d25 100%);
  margin-top: 1em;
}

.site-grid {
    min-height: 100vh;

    background:
        linear-gradient(to bottom, rgba(237,230,214,0.85), rgba(155,133,97,0.85)),
        url("/images/allgemeines/haus-vorderansicht-web.JPG");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* =========================
   ROOT / VARIABLEN
========================= */
:root {
  --main-green: #2f5d50;
  --soft-brown: #8b5e3c;
  --light-bg: #f4efe687;
  --light2-bg: #9b968e3d;
}

/* =========================
   BASE
========================= */
body {
  font-family: "courgette", cursive;
  font-size: 17px;
  line-height: 1.8;
  color: #3b2f2f;
  background: linear-gradient(to bottom, #ede6d6, #d6c3a3);
  margin: 0;
}

a {
  color: #3b2f2f;
  text-decoration: none;
}

a:hover {
  color: #5a3e2b;
  text-decoration: underline;
}

/* =========================
   TYPO
========================= */
h1, h2, h3, h4 {
  font-family: "Courgette", cursive;
  color: #67222d;
  margin-bottom: 15px;
}

/* =========================
   HEADER (Cassiopeia)
========================= */
.container-header {
  background-image: linear-gradient(0deg, var(--cassiopeia-color-primary) 0%, #511d25 100%);
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.container-header .mod-menu a {
  padding: 10px 12px;
  font-size: 20px;
  font-family: "Courgette", cursive;
}

.container-header .mod-menu a:hover {
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
}

/* =========================
   CONTAINER
========================= */
.container,
.page-container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* =========================
   MAIN CONTENT BOX
========================= */
.container-main {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  padding: 40px 25px;
}

/* =========================
   GRID SYSTEM
========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* =========================
   CARDS
========================= */
.card {
  background: var(--light-bg);
  border-radius: 12px;
  border-left: 5px solid #67222d;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.card001 {
  background-image: linear-gradient(0deg, var(--cassiopeia-color-primary) 0%, #511d25 100%);
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
}

.card001:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card001 a {
  color: #f4efe6;
}

.card001 a:hover {
  color: #d1b27b;
}

/* =========================
   HIGHLIGHT
========================= */
.highlight {
  background: #efe6d6;
  color: #5a3e2b;
}

/* =========================
   CHIP LINKS
========================= */
.chip-link {
  display: inline-block;
  padding: 6px 12px;
  margin: 4px;
  color: #f4efe6;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  border: 4px solid rgba(90, 62, 43, 0.2);
  transition: all 0.2s ease;
}

.chip-link:hover {
  color: #d1b27b;
  border-color: #9a3d3d;
  transform: translateY(-2px);
}

/* =========================
   HERO (PARALLAX FIXED)
========================= */
.hero {
  position: relative;
  min-height: 80vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 40px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* Background Layer */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("https://www.ferienhaus-vogtland.com/images/allgemeines/haus-vorderansicht-web.JPG")
    center / cover no-repeat;

  z-index: 1;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.95;
}

/* =========================
   BUTTONS
========================= */
.btn-cta,
.hero-btn {
  font-size: 16px;
  letter-spacing: 0.5px;
  background-image: linear-gradient(0deg, var(--cassiopeia-color-primary) 0%, #511d25 100%);
  color: #f4efe6;
  padding: 12px 25px;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-cta:hover,
.hero-btn:hover {
  transform: translateY(-2px);
  color: #d1b27b;
}

/* =========================
   STICKY CTA
========================= */
.sticky-cta {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background-image: linear-gradient(0deg, var(--cassiopeia-color-primary) 0%, #511d25 100%);
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  z-index: 99999;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.sticky-cta:hover {
  color: #d1b27b;
  transform: translateY(-2px);
}

/* =========================
   PRICE
========================= */
.price-container {
  margin: 40px auto;
  background: var(--light-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.price-highlight {
  text-align: center;
  background-image: linear-gradient(0deg, var(--cassiopeia-color-primary) 0%, #511d25 100%);
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.price-highlight span {
  font-size: 42px;
  font-weight: bold;
  display: block;
}

/* =========================
   BOXES
========================= */
.highlight-box {
  background: var(--light-bg);
  border-left: 5px solid #67222d;
  padding: 20px;
  border-radius: 8px;
  margin-top: 10px;
}

.note-box {
  background: var(--light2-bg);
  border-left: 5px solid #67222d;
  padding: 20px;
  border-radius: 8px;
  margin-top: 10px;
}

/* =========================
   MAP
========================= */
.map-section {
  position: relative;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  margin: 40px 0;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%) brightness(0.9);
}

/* =========================
   INFO
========================= */
.info-box {
  background: var(--light-bg);
  padding: 25px;
  border-left: 5px solid #67222d;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* =========================
   ACTIVITIES
========================= */
.activities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
 
}

.activity {

  background: var(--light-bg);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.activity:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.activity-header {
  padding: 12px 14px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  color: #5a3e2b;
  border-left: 5px solid #67222d;
}

.distance {
  background-image: linear-gradient(0deg, var(--cassiopeia-color-primary) 0%, #511d25 100%);
  color: #f4efe6;
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 999px;
}

.activity img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-left: 5px solid #67222d;
}

.activity-text {
  padding: 12px 14px;
  font-size: 16px;
  color: #5a5a5a;
  text-align: center;
  font-weight: 500;
  min-height: 60px;
  border-left: 5px solid #67222d;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .activities {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
  }

  .container-main {
    padding: 20px 15px;
  }

  .sticky-cta {
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 10px;
    justify-content: center;
  }

  .hero::before {
    background-attachment: scroll;
  }
}

@media (max-width: 600px) {
  .activities {
    grid-template-columns: 1fr;
  }
}

/* =========================
   PAGE WRAPPER (neu)
========================= */
.page-container,
.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* =========================
   HERO (leicht angepasst)
========================= */
.hero {
  padding: 40px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* =========================
   CARD (vereinheitlicht)
========================= */
.card {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* =========================
   GRID (MERGED - responsiv sauber)
========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Mobile Fix */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   LISTEN
========================= */
ul {
  padding-left: 18px;
}

/* =========================
   BADGE (angepasst an Design)
========================= */
.badge {
  display: inline-block;
  background-image: linear-gradient(0deg, var(--cassiopeia-color-primary) 0%, #511d25 100%);
  color: #f4efe6;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 10px;
}

/* =========================
   StickyBurger
========================= */
@media (max-width: 991.98px) {

  /* Burger folgt dem Scroll (fixed) */
  .navbar-toggler {
    position: fixed !important;
    top: 15px;
    right: 15px;
    z-index: 99999;
    background: rgba(81, 29, 37, 0.9);
    border-radius: 8px;
    padding: 8px 10px;
  }

  .navbar-toggler-icon {
    filter: invert(1);
  }

  /* WICHTIG: Dropdown aus Flow lösen */
  .container-header .navbar-collapse {
    position: fixed !important;
    top: 60px; /* direkt unter Burger */
    right: 15px;
    width: 250px;

    background: linear-gradient(0deg, #511d25 0%, var(--cassiopeia-color-primary) 100%) !important;
    z-index: 99998;
    padding: 15px;
    border-radius: 10px;
  }

  .container-header .navbar-collapse a {
    color: #f4efe6 !important;
    display: block;
    padding: 10px 5px;
  }

  .container-header .navbar-collapse a:hover {
    color: #d1b27b !important;
  }

}