/* ===== CSS Variables ===== */
:root {
  --color-bg: #FFF8F2;
  --color-bg-alt: #FEF0E4;
  --color-bg-dark: #3B2314;
  --color-surface: #FFFFFF;
  --color-border: #E8D5C4;
  --color-border-light: #F2E8DD;

  --color-text: #3B2314;
  --color-text-muted: #6B5040;
  --color-text-light: #8C7060;
  --color-text-white: #FFF8F2;

  --color-primary: #D2691E;
  --color-primary-light: #E8923E;
  --color-green: #2E7D32;
  --color-green-light: #4CAF50;
  --color-gold: #E8923E;
  --color-error: #C62828;
  --color-success: #2E7D32;

  --font-heading: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --shadow-sm: 0 1px 3px rgba(59, 35, 20, 0.08);
  --shadow-md: 0 4px 12px rgba(59, 35, 20, 0.1);
  --shadow-lg: 0 8px 24px rgba(59, 35, 20, 0.12);

  --transition: 0.2s ease;
  --transition-slow: 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 16px;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-primary-light);
}

input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.3;
  font-weight: 700;
}

/* ===== Container ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header ===== */
.header {
  background: var(--color-surface);
  border-bottom: 2px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border-light);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.header-contact a {
  color: var(--color-text-muted);
}

.header-contact a:hover {
  color: var(--color-primary);
}

.lang-switch {
  display: flex;
  gap: 4px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  padding: 2px;
}

.lang-btn {
  /* Groessere Tap-Flaeche fuer Touch-Bedienung (Barrierefreiheit) */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 36px;
  padding: 4px 12px;
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  transition: var(--transition);
}

/* Auf Touch-Geraeten volle 44px-Zielflaeche */
@media (max-width: 768px) {
  .lang-btn {
    min-width: 44px;
    min-height: 44px;
  }
}

.lang-btn.active {
  background: var(--color-surface);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.lang-btn:hover:not(.active) {
  color: var(--color-text);
}

.nav-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.brand {
  display: flex;
  align-items: center;
  padding: 8px 0;
  text-decoration: none;
  color: var(--color-text);
}

.brand:hover {
  color: var(--color-text);
  opacity: 0.9;
}

.brand-logo {
  height: 52px;
  width: auto;
}

/* Legacy brand styles (footer) */
.brand-icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
}

.brand-sub {
  font-size: 12px;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
  margin: 0;
}

.nav-menu a {
  display: block;
  padding: 18px 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.burger span {
  width: 20px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}

.burger:hover {
  background: var(--color-bg-alt);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary-light);
  color: white;
}

.btn-outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: white;
}

.btn-green {
  background: var(--color-green);
  color: white;
  border-color: var(--color-green);
}

.btn-green:hover {
  background: var(--color-green-light);
  border-color: var(--color-green-light);
  color: white;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

/* ===== Sections ===== */
.section {
  padding: 64px 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-dark {
  background: var(--color-bg-dark);
  color: var(--color-text-white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--color-text-white);
}

.section-dark .section-subtitle {
  color: rgba(253, 248, 240, 0.7);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.section-title {
  font-size: 32px;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a1a1a;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30,20,10,0.35) 0%, rgba(30,20,10,0.5) 100%);
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* picture-Wrapper aus dem Layout nehmen - das img bleibt exakt wie zuvor positioniert */
.hero-bg picture {
  display: contents;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 80px 0;
}

.hero-title {
  font-size: 42px;
  color: var(--color-text-white);
  margin-bottom: 18px;
  line-height: 1.2;
}

.hero-text {
  font-size: 18px;
  color: rgba(253, 248, 240, 0.85);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(253, 248, 240, 0.2);
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(253, 248, 240, 0.8);
}

.hero-feature svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

/* ===== Info Boxes (Home) ===== */
.info-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.info-box:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.info-box-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--color-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.info-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.info-box p {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* ===== Welcome Section (Home) ===== */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.welcome-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.welcome-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.welcome-text h2 {
  font-size: 30px;
  margin-bottom: 16px;
}

.welcome-text p {
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.welcome-features {
  list-style: none;
  margin: 20px 0 24px;
}

.welcome-features li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  color: var(--color-text-muted);
}

.welcome-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: 700;
}

/* ===== Highlights Grid (Home) ===== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.highlight-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
}

.highlight-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  background: var(--color-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 18px;
}

.highlight-icon-green {
  color: var(--color-green);
  background: rgba(46, 125, 50, 0.08);
}

.highlight-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.highlight-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ===== Teaser Grid (Home) ===== */
.teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.teaser-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
}

.teaser-badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}

.teaser-badge-green {
  background: var(--color-green);
}

.teaser-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.teaser-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ===== Nearby Grid (Home) ===== */
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.nearby-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: var(--transition);
}

.nearby-item:hover {
  box-shadow: var(--shadow-sm);
}

.nearby-distance {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 32px;
  background: var(--color-primary);
  color: white;
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.nearby-name {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* ===== Apartment Cards ===== */
.apartments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.apartment-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.apartment-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.apartment-image {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.apartment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.apartment-card:hover .apartment-image img {
  transform: scale(1.03);
}

.apartment-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
}

.apartment-content {
  padding: 20px;
}

.apartment-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.apartment-title {
  font-size: 20px;
}

.apartment-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-green);
}

.apartment-description {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.apartment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--color-border-light);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.meta-item svg {
  color: var(--color-text-light);
}

/* ===== Pricing Table ===== */
.pricing-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pricing-table-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.table-scroll {
  overflow-x: visible;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.pricing-table th,
.pricing-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

/* Preisspalten rechtsbündig */
.pricing-table th:nth-child(2),
.pricing-table td:nth-child(2),
.pricing-table th:nth-child(3),
.pricing-table td:nth-child(3),
.pricing-table th:nth-child(4),
.pricing-table td:nth-child(4),
.pricing-table th:nth-child(5),
.pricing-table td:nth-child(5) { text-align: center; }

.pricing-table th:nth-child(n+6),
.pricing-table td:nth-child(n+6) { text-align: right; }

.pricing-table th {
  background: var(--color-bg-alt);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-text);
  white-space: nowrap;
}

.pricing-table th small {
  display: block;
  font-size: 11px;
  color: var(--color-text-light);
  text-transform: none;
  font-weight: 600;
  margin-top: 2px;
}

.pricing-table tbody tr:hover {
  background: var(--color-bg);
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

@media (max-width: 900px) {
  .table-scroll {
    overflow-x: auto;
  }
  .pricing-table {
    table-layout: auto;
    min-width: 700px;
  }
}

.pricing-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.info-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
}

.season-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 768px) {
  .season-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .season-info {
    grid-template-columns: 1fr;
  }
}

.season-block {
  padding: 12px;
  background: var(--color-bg);
  border-radius: var(--radius-sm);
}

.season-block strong {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
  color: var(--color-primary);
}

.season-block p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.info-list {
  list-style: none;
  margin-bottom: 16px;
}

.info-list li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  color: var(--color-text-muted);
  font-size: 14px;
}

.info-list li::before {
  content: '\2022';
  position: absolute;
  left: 4px;
  color: var(--color-primary);
  font-size: 18px;
}

/* ===== Seasons / Activities ===== */
.seasons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.season-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 36px;
}

.season-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.season-card h3 {
  font-size: 22px;
  margin-bottom: 18px;
}

.season-list {
  list-style: none;
}

.season-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--color-text-muted);
}

.season-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: 700;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  grid-auto-flow: dense;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg-alt);
  cursor: pointer;
  transition: var(--transition);
  aspect-ratio: 4/3;
}

.gallery-item:hover {
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(59, 35, 20, 0.8));
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-size: 14px;
  font-weight: 600;
  color: white;
}

.gallery-tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-wide {
  grid-column: span 2;
}

/* ===== Location ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.location-text h3 {
  font-size: 20px;
  margin-bottom: 12px;
  margin-top: 24px;
}

.location-text h3:first-child {
  margin-top: 0;
}

.location-text p {
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.location-highlights {
  list-style: none;
  margin: 16px 0;
}

.location-highlights li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  color: var(--color-text-muted);
}

.location-highlights li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: 700;
}

.location-map {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 400px;
}

.location-map iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Karten-Zustimmung (DSGVO) */
.map-consent {
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--color-bg-alt);
}

.map-consent-inner {
  max-width: 420px;
  text-align: center;
  color: var(--color-text-muted);
}

.map-consent-inner svg {
  color: var(--color-primary);
  margin-bottom: 12px;
}

.map-consent-inner p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.map-consent-inner .btn {
  margin-bottom: 12px;
}

.map-consent-remember {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  cursor: pointer;
}

.map-consent-remember input {
  width: auto;
  margin: 0;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-block {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
}

.info-block strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.info-block p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.info-block a {
  color: var(--color-text-muted);
}

.info-block a:hover {
  color: var(--color-primary);
}

.contact-extras {
  margin-top: 12px;
  padding: 20px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
}

.contact-extras h4 {
  font-size: 15px;
  margin-bottom: 10px;
}

.contact-extras ul {
  list-style: none;
}

.contact-extras li {
  padding: 4px 0;
  padding-left: 22px;
  position: relative;
  font-size: 14px;
  color: var(--color-text-muted);
}

.contact-extras li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: 700;
}

.contact-form-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 10px 14px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  /* 16px verhindert den iOS-Safari-Auto-Zoom beim Antippen von Feldern.
     Unter 16px zoomt Safari auf iPhone/iPad automatisch hinein. */
  font-size: 16px;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(139, 105, 20, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

/* ===== Footer ===== */
.footer {
  background: var(--color-bg-dark);
  color: var(--color-text-white);
  padding: 48px 0 24px;
}

.footer h2,
.footer h3,
.footer h4 {
  color: var(--color-text-white);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 48px;
  margin-bottom: 36px;
}

.footer-brand .brand-name {
  color: var(--color-text-white);
}

.footer-brand .brand-sub {
  color: rgba(253, 248, 240, 0.6);
}

.footer-tagline {
  font-size: 14px;
  color: rgba(253, 248, 240, 0.7);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 30ch;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(253, 248, 240, 0.7);
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(253, 248, 240, 0.15);
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(253, 248, 240, 0.5);
}

/* ===== Page Header (Sub-pages) ===== */
.page-header {
  background: var(--color-bg-dark);
  padding: 48px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 34px;
  color: var(--color-text-white);
  margin-bottom: 10px;
}

.page-header p {
  font-size: 16px;
  color: rgba(253, 248, 240, 0.7);
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  padding: 14px 0;
  font-size: 13px;
  color: var(--color-text-light);
  border-bottom: 1px solid var(--color-border-light);
}

.breadcrumb a {
  color: var(--color-text-muted);
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb span {
  margin: 0 6px;
  color: var(--color-text-light);
}

/* ===== Notification ===== */
.notification {
  position: fixed;
  top: 80px;
  right: 20px;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
  animation: slideIn 0.3s ease-out;
}

.notification-success {
  background: var(--color-green);
  color: white;
}

.notification-error {
  background: var(--color-error);
  color: white;
}

@keyframes slideIn {
  from { transform: translateX(300px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(300px); opacity: 0; }
}

/* ===== Arrival Section ===== */
.arrival-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.arrival-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
}

.arrival-card h3 {
  font-size: 18px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.arrival-card p,
.arrival-card li {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.arrival-card ul {
  list-style: none;
  margin-top: 10px;
}

.arrival-card li {
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.arrival-card li::before {
  content: '\2022';
  position: absolute;
  left: 4px;
  color: var(--color-primary);
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .nav-menu a {
    padding: 16px 6px;
    font-size: 12px;
  }
}

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

  .nearby-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .nav-menu {
    display: none;
  }

  .burger {
    display: flex;
  }

  .nav-menu.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-surface);
    border-bottom: 2px solid var(--color-border);
    padding: 12px;
    box-shadow: var(--shadow-md);
    z-index: 99;
  }

  .nav-menu.active a {
    padding: 12px 14px;
    border-bottom: none;
  }

  .brand-logo {
    height: 40px;
  }

  .nav-cta .btn {
    display: none;
  }

  .header-top {
    flex-wrap: wrap;
    gap: 8px;
  }

  .header-contact {
    display: none;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-features {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

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

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

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

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

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

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

  .gallery-tall {
    grid-row: span 1;
  }

  .gallery-wide {
    grid-column: span 1;
  }

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

  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section {
    padding: 40px 0;
  }

  .page-header {
    padding: 32px 0;
  }

  .page-header h1 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .brand-logo {
    height: 34px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .section {
    padding: 30px 0;
  }

  .page-header {
    padding: 24px 0;
  }

  .page-header h1 {
    font-size: 22px;
  }

  .page-header p {
    font-size: 14px;
  }

  h2 {
    font-size: 22px;
  }

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

  .contact-form-wrap {
    padding: 16px;
  }

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

  .footer-content {
    gap: 24px;
  }

  .footer-links {
    gap: 20px;
  }

  .btn-lg {
    padding: 12px 24px;
    font-size: 14px;
  }

  /* Preistabelle auf Smartphone: Card-Layout */
  .table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pricing-table {
    min-width: 600px;
    font-size: 12px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 8px 5px;
  }

  .pricing-table th {
    font-size: 10px;
  }

  .pricing-table th small {
    font-size: 9px;
  }

  /* Info-Seite */
  .news-card {
    padding: 14px;
  }

  .news-date {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .news-day {
    font-size: 16px;
  }

  .news-month {
    font-size: 9px;
  }

  .download-card {
    padding: 12px;
  }

  /* Gästebuch */
  .gb-entry {
    padding: 16px;
  }

  /* Legal pages */
  .legal-content {
    padding: 16px;
  }

  .legal-content h2 {
    font-size: 20px;
  }

  .legal-content p {
    font-size: 14px;
  }
}

/* ===== Apartment Detail Page ===== */

/* Gallery */
.detail-gallery {
  margin-bottom: 32px;
}

.detail-gallery-main {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-bg-dark);
  aspect-ratio: 16 / 9;
}

.detail-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(59, 35, 20, 0.6);
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
  line-height: 1;
}

.gallery-nav:hover {
  background: rgba(59, 35, 20, 0.85);
}

.gallery-prev { left: 0; border-radius: 0 8px 8px 0; }
.gallery-next { right: 0; border-radius: 8px 0 0 8px; }

.gallery-counter {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(59, 35, 20, 0.7);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  z-index: 2;
}

.detail-gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-behavior: smooth;
}

.gallery-thumb {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 3px solid transparent;
  opacity: 0.6;
  transition: opacity 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.gallery-thumb:hover {
  opacity: 0.85;
}

.gallery-thumb.active {
  border-color: var(--color-accent);
  opacity: 1;
}

/* 3D Tour */
.detail-tour3d {
  margin-bottom: 36px;
}

.tour3d-text {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  font-size: 15px;
}

.tour3d-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #1a1a1a;
}

.tour3d-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 24px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
  z-index: 10001;
  transition: opacity 0.2s;
  opacity: 0.7;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  font-size: 28px;
  padding: 16px 20px;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 10001;
  line-height: 1;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev { left: 12px; border-radius: 8px; }
.lightbox-next { right: 12px; border-radius: 8px; }

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
  z-index: 10001;
}

/* Legacy hero styles (kept for backward compat) */
.detail-hero {
  position: relative;
  height: 360px;
  overflow: hidden;
  background: var(--color-bg-dark);
}

.detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.detail-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 0;
  background: linear-gradient(transparent, rgba(59, 35, 20, 0.85));
}

.detail-hero-overlay h1 {
  color: var(--color-text-white);
  font-size: 36px;
  margin-bottom: 6px;
}

.detail-hero-overlay p {
  color: rgba(253, 248, 240, 0.75);
  font-size: 16px;
}

.detail-content {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 36px;
  align-items: start;
}

.detail-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 120px;
}

/* Properties Grid */
.detail-properties {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.property-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.property-item svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.property-item div {
  display: flex;
  flex-direction: column;
}

.property-item strong {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-text);
}

.property-item span {
  font-size: 12px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.detail-prop {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  text-align: center;
}

.detail-prop-icon {
  color: var(--color-primary);
  margin-bottom: 8px;
}

.detail-prop-value {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-text);
  margin-bottom: 2px;
}

.detail-prop-label {
  font-size: 12px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Amenity Groups */
.amenity-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.amenity-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.amenity-group {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.amenity-group h3 {
  font-size: 16px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
}

.amenity-group h3 svg {
  flex-shrink: 0;
}

.amenity-list {
  list-style: none;
}

.amenity-list li {
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.amenity-list li svg {
  flex-shrink: 0;
  color: var(--color-green);
}

.detail-section-title {
  font-size: 22px;
  margin-bottom: 20px;
  margin-top: 32px;
  color: var(--color-text);
}

.price-rows {
  display: flex;
  flex-direction: column;
}

.price-row-highlight {
  background: var(--color-bg-alt);
  margin: 8px -8px -4px;
  padding: 10px 8px !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

/* Sidebar Price Card */
.detail-price-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.detail-price-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 14px;
}

.price-row:last-of-type {
  border-bottom: none;
}

.price-row .label {
  color: var(--color-text-muted);
}

.price-row .value {
  font-weight: 700;
  color: var(--color-text);
}

.price-row .value.highlight {
  color: var(--color-green);
}

.detail-cta {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}

.detail-cta h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.detail-cta p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

/* Description Section */
.detail-description {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.detail-description h2 {
  font-size: 20px;
  margin-bottom: 12px;
}

.detail-description p {
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Back Link */
.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.detail-back:hover {
  color: var(--color-primary-light);
}

/* Apartment Card as Link */
.apartment-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.apartment-card-link:hover {
  color: inherit;
}

.apartment-card .btn-detail {
  margin-top: 12px;
  width: 100%;
  text-align: center;
  font-size: 13px;
  padding: 8px 16px;
}

/* Detail responsive */
@media (max-width: 1024px) {
  .detail-content {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .detail-hero {
    height: 260px;
  }

  .detail-hero-overlay h1 {
    font-size: 28px;
  }

  .detail-gallery-main {
    aspect-ratio: 4 / 3;
  }

  .gallery-thumb {
    width: 64px;
    height: 48px;
  }

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

  .detail-properties {
    grid-template-columns: repeat(2, 1fr);
  }

  .lightbox-nav {
    padding: 12px 14px;
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .detail-properties {
    grid-template-columns: 1fr;
  }

  .gallery-thumb {
    width: 56px;
    height: 42px;
  }

  .gallery-nav {
    padding: 8px 12px;
    font-size: 20px;
  }
}

/* ===== Legal Pages (Impressum, Datenschutz) ===== */
.legal-content {
  max-width: 800px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 40px;
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 36px;
  margin-bottom: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border-light);
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-content p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-content a {
  word-break: break-word;
}

/* Sitemap List */
.sitemap-list {
  list-style: none;
  margin: 0 0 10px;
}

.sitemap-list > li {
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border-light);
}

.sitemap-list > li:last-child {
  border-bottom: none;
}

.sitemap-list > li > a {
  font-size: 16px;
  font-weight: 600;
}

.sitemap-list ul {
  list-style: none;
  margin-top: 6px;
  padding-left: 24px;
}

.sitemap-list ul li {
  padding: 4px 0;
}

.sitemap-list ul li a {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-muted);
}

.sitemap-list ul li a:hover {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .legal-content {
    padding: 24px;
  }
}

/* ===== Info Page ===== */
.info-page-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: start;
}

.info-page-main h2,
.info-page-sidebar h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.info-downloads-text {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

/* News Cards */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-card {
  display: flex;
  gap: 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}

.news-card:hover {
  box-shadow: var(--shadow-md);
}

.news-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 56px;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  color: white;
  flex-shrink: 0;
}

.news-day {
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1;
}

.news-month {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

.news-content h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.news-content p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Download Cards */
.downloads-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.download-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.download-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
  color: inherit;
  transform: translateY(-1px);
}

.download-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
}

.download-info {
  display: flex;
  flex-direction: column;
}

.download-info strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.download-info span {
  font-size: 12px;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-hint {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  padding: 16px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
}

.info-hint svg {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-hint p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ===== Guestbook Page ===== */
.gb-summary {
  text-align: center;
  margin-bottom: 40px;
  padding: 28px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.gb-avg-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.gb-avg-number {
  font-size: 42px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1;
}

.gb-avg-stars {
  display: flex;
  gap: 2px;
  font-size: 24px;
  color: var(--color-gold);
}

.gb-avg-count {
  font-size: 14px;
  color: var(--color-text-muted);
}

.gb-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: start;
}

/* Guestbook Form */
.gb-form-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
  position: sticky;
  top: 120px;
}

.gb-form-wrap h2 {
  font-size: 22px;
  margin-bottom: 8px;
}

.gb-form-text {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.gb-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Star Rating Input */
.gb-star-input {
  display: flex;
  gap: 4px;
}

.gb-star-btn {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--color-border);
  transition: color 0.15s ease;
  padding: 0 2px;
  line-height: 1;
}

.gb-star-btn:hover,
.gb-star-btn.active {
  color: var(--color-gold);
}

.gb-star-btn.hover {
  color: var(--color-gold);
}

/* Guestbook Entries */
.gb-entries-wrap h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.gb-entries {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gb-loading {
  text-align: center;
  padding: 40px;
  color: var(--color-text-muted);
  font-size: 14px;
}

.gb-entry {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.gb-entry-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.gb-entry-author {
  display: flex;
  flex-direction: column;
}

.gb-entry-name {
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-heading);
  color: var(--color-text);
}

.gb-entry-origin {
  font-size: 13px;
  color: var(--color-text-light);
}

.gb-entry-stars {
  display: flex;
  gap: 1px;
  font-size: 16px;
  color: var(--color-gold);
}

.gb-entry-stars .star-empty {
  color: var(--color-border);
}

.gb-entry-message {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
}

.gb-entry-date {
  font-size: 12px;
  color: var(--color-text-light);
}

.gb-no-entries {
  text-align: center;
  padding: 40px;
  color: var(--color-text-muted);
  font-size: 15px;
}

/* Info & Guestbook Responsive */
@media (max-width: 1024px) {
  .info-page-grid {
    grid-template-columns: 1fr;
  }

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

  .gb-form-wrap {
    position: static;
  }
}

@media (max-width: 768px) {
  .news-card {
    flex-direction: column;
    gap: 12px;
  }

  .news-date {
    flex-direction: row;
    gap: 6px;
    width: fit-content;
    padding: 6px 14px;
    height: auto;
    min-width: auto;
  }

  .gb-avg-rating {
    flex-direction: column;
    gap: 8px;
  }
}

/* ===== NEWS / AKTUELLES PAGE ===== */

.news-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.news-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(59, 35, 20, 0.08);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.news-card:hover {
  box-shadow: 0 4px 20px rgba(59, 35, 20, 0.15);
}

.news-card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.news-card:hover .news-card-image img {
  transform: scale(1.03);
}

.news-card-content {
  padding: 28px 32px 32px;
}

.news-card-date {
  font-size: 13px;
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.news-card-content h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.news-card-text {
  color: var(--color-text-light);
  font-size: 15px;
  line-height: 1.7;
}

.news-card-text p {
  margin-bottom: 10px;
}

.news-card-text p:last-child {
  margin-bottom: 0;
}

/* Teaser Card Images */
.teaser-card-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

/* Highlight Card Images (Excursions) */
.highlight-card-image {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 14px;
}

@media (max-width: 768px) {
  .teaser-card-image {
    max-height: 160px;
  }
  .highlight-card-image {
    max-height: 140px;
  }
}

.empty-state-public {
  text-align: center;
  padding: 60px 24px;
  color: var(--color-text-light);
  font-size: 16px;
}

.loading-placeholder {
  text-align: center;
  padding: 60px 24px;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .news-card-image {
    height: 200px;
  }

  .news-card-content {
    padding: 20px 24px 24px;
  }

  .news-card-content h2 {
    font-size: 18px;
  }
}

/* ===== Preisschätzung im Anfrageformular ===== */
.price-estimate {
  margin: 4px 0 20px;
  padding: 18px 20px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.price-estimate-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-text);
  margin-bottom: 10px;
}

.price-estimate-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  color: var(--color-text-muted);
  padding: 4px 0;
}

.price-estimate-row span:last-child {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.price-estimate-total {
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--color-border);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
}

.price-estimate-total span:last-child {
  color: var(--color-primary);
}

.price-estimate-note {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text-light);
}

/* ===== Kapazitäts-Warnung im Anfrageformular ===== */
.capacity-warning {
  margin: 4px 0 20px;
  padding: 14px 18px;
  background: #FDECEA;
  border: 1px solid #F5C6C0;
  border-left: 4px solid var(--color-error);
  border-radius: var(--radius-md);
}

.capacity-warning-title {
  font-weight: 700;
  font-size: 14px;
  color: #8A1C13;
  line-height: 1.4;
}

.capacity-warning-suggest {
  margin-top: 8px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.capacity-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.capacity-suggest {
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  color: var(--color-primary);
  background: var(--color-surface);
  border: 1px solid var(--color-primary);
  border-radius: 999px;
  transition: var(--transition);
}

.capacity-suggest:hover {
  color: #fff;
  background: var(--color-primary);
}
