:root {
  --green: #51673c;
  --green-dark: #445732;
  --orange: #c97833;
  --orange-dark: #b26424;
  --cream: #f7f3ed;
  --text-soft: #e8ddcf;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  font-family: Georgia, "Times New Roman", serif;
  color: #fff;
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background: #2c2c28;
}

.background {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(34, 30, 23, 0.55), rgba(34, 30, 23, 0.68)),
    url('assets/camping-bergschusterhof.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(6px) saturate(0.95);
  transform: scale(1.08);
}

.page-wrap {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 48px 24px 60px;
}

.hero {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 34px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.25rem);
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-shadow: 0 3px 20px rgba(0,0,0,0.35);
}

.hero p {
  margin: 16px 0 0;
  font-size: clamp(1.15rem, 2vw, 2rem);
  color: var(--text-soft);
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.cards {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.card {
  background: rgba(247, 243, 237, 0.96);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 45px rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.28);
}

.card-image {
  aspect-ratio: 16 / 8.4;
  overflow: hidden;
}

.card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  min-height: 290px;
  padding: 34px 28px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, rgba(255,255,255,0.18), rgba(255,255,255,0.05));
}

.camping-logo {
  display: block;
  width: min(100%, 540px);
  max-width: 540px;
  height: auto;
  margin: 0 auto 28px;
}

.apartment-icon {
  color: var(--orange);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 10px;
}

.apartment-body h2 {
  margin: 0;
  color: var(--orange-dark);
  text-align: center;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1.16;
}

.apartment-body p {
  margin: 12px 0 28px;
  color: #6e675f;
  font-size: clamp(1.2rem, 1.6vw, 1.7rem);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  width: min(100%, 420px);
  padding: 14px 24px;
  border-radius: 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.3rem, 1.6vw, 1.7rem);
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0,0,0,0.14);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.cta::after {
  content: '→';
  margin-left: 16px;
  font-size: 1.2em;
  line-height: 1;
}

.cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
}

.cta-green {
  background: linear-gradient(180deg, #5d7b40 0%, var(--green) 100%);
}

.cta-orange {
  background: linear-gradient(180deg, #d9863b 0%, var(--orange) 100%);
}

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

  .card-body {
    min-height: 240px;
  }

  .camping-logo {
    width: min(100%, 480px);
  }
}

@media (max-width: 640px) {
  .page-wrap {
    padding: 28px 16px 34px;
  }

  .hero {
    margin-bottom: 22px;
  }

  .card {
    border-radius: 20px;
  }

  .card-body {
    padding: 24px 18px 26px;
  }

  .camping-logo {
    margin-bottom: 18px;
  }

  .cta {
    width: 100%;
    font-size: 1.15rem;
    min-height: 56px;
  }
}
