/* ===== Pension Pamp – Stylesheet ===== */
:root {
  --green-900: #1e3a2a;
  --green-700: #2d5a3d;
  --green-600: #3a7350;
  --green-100: #e8f0ea;
  --cream: #faf7f2;
  --sand: #f3ede3;
  --amber: #c8842e;
  --amber-dark: #a86b1f;
  --text: #2b2b28;
  --text-soft: #5c5c55;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(30, 58, 42, 0.10);
  --shadow-lg: 0 12px 40px rgba(30, 58, 42, 0.16);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
}

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

.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; color: var(--green-900); line-height: 1.25; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 0.5rem; }

.section { padding: 72px 0; }
.section-intro { max-width: 640px; color: var(--text-soft); margin-bottom: 40px; font-size: 1.06rem; }
/* ===== Buttons ===== */
.btn {
  display: inline-block; padding: 14px 28px; border-radius: 10px;
  font-weight: 600; font-size: 1rem; text-decoration: none; text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer; border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--amber); color: var(--white); box-shadow: 0 4px 14px rgba(200, 132, 46, 0.35); }
.btn-primary:hover { background: var(--amber-dark); }
.btn-secondary { background: var(--white); color: var(--green-900); border: 2px solid rgba(255,255,255,0.0); box-shadow: var(--shadow); }
.btn-outline-light { background: rgba(255,255,255,0.12); color: var(--white); border: 1.5px solid rgba(255,255,255,0.75); backdrop-filter: blur(4px); }
.btn-outline-light:hover { background: rgba(255,255,255,0.24); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 242, 0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(30, 58, 42, 0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }
.brand { text-decoration: none; line-height: 1.2; }
.brand strong { display: block; font-family: Georgia, serif; font-size: 1.25rem; color: var(--green-900); }
.brand span { font-size: 0.78rem; color: var(--amber-dark); letter-spacing: 0.08em; text-transform: uppercase; }
.main-nav { display: flex; gap: 26px; align-items: center; }
.main-nav a { text-decoration: none; color: var(--text); font-weight: 500; font-size: 0.96rem; }
.main-nav a:hover { color: var(--green-600); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { text-decoration: none; color: var(--green-900); font-weight: 600; font-size: 0.94rem; white-space: nowrap; }
.header-cta .btn { padding: 10px 20px; font-size: 0.92rem; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--green-900); margin: 5px 0; border-radius: 2px; transition: 0.2s; }

/* ===== Hero ===== */
.hero { position: relative; min-height: 78vh; display: flex; align-items: center; color: var(--white); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 8%; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(20, 38, 27, 0.66) 0%, rgba(20, 38, 27, 0.4) 50%, rgba(20, 38, 27, 0.12) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 640px; padding: 90px 0; }
.hero h1 { color: var(--white); font-size: clamp(2.4rem, 6vw, 3.6rem); margin-bottom: 16px; }
.hero-kicker {
  display: block; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.25rem); font-weight: 500; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85); margin-bottom: 8px;
}
.hero .hero-sub { font-size: clamp(1.05rem, 2vw, 1.25rem); color: rgba(255,255,255,0.92); margin-bottom: 18px; max-width: 540px; }
.hero-price { font-size: 1.1rem; color: rgba(255,255,255,0.92); margin-bottom: 26px; }
.hero-price strong { color: #f2c27b; font-size: 1.25rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Rooms / Prices ===== */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.price-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden; display: flex; flex-direction: column;
}
.price-card img { height: 250px; width: 100%; object-fit: cover; }
.price-card-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.price-card h3 { font-size: 1.35rem; margin-bottom: 6px; }
.price-card .occupancy { color: var(--text-soft); font-size: 0.94rem; margin-bottom: 14px; }
.price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 10px; }
.price-row .amount { font-size: 2.2rem; font-weight: 700; color: var(--green-700); font-family: Georgia, serif; white-space: nowrap; }
.price-row .per { color: var(--text-soft); font-size: 0.92rem; }
.stay-badge {
  color: var(--text-soft); font-size: 0.9rem;
  margin-bottom: 18px; white-space: nowrap;
}
.feature-list { list-style: none; margin-bottom: 22px; }
.feature-list li { padding: 5px 0 5px 30px; position: relative; font-size: 0.96rem; }
.feature-list li::before {
  content: "✓"; position: absolute; left: 0; top: 4px;
  width: 20px; height: 20px; border-radius: 50%; background: var(--green-100);
  color: var(--green-700); font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.price-card .btn { margin-top: auto; }
/* ===== Amenities ===== */
.amenities { background: var(--white); }
.amenity-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.amenity {
  background: var(--cream); border-radius: var(--radius); padding: 26px 22px; text-align: center;
}
.amenity .icon {
  width: 54px; height: 54px; margin: 0 auto 14px; border-radius: 50%;
  background: var(--green-100); display: flex; align-items: center; justify-content: center;
}
.amenity .icon svg { width: 26px; height: 26px; stroke: var(--green-700); }
.amenity h3 { font-size: 1.05rem; font-family: inherit; font-weight: 650; margin-bottom: 6px; }
.amenity p { font-size: 0.9rem; color: var(--text-soft); }

/* ===== Gallery ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 14px; }
.gallery-grid a { border-radius: 12px; overflow: hidden; display: block; position: relative; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.gallery-grid a:hover img { transform: scale(1.05); }
.gallery-grid a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid a:nth-child(4) { grid-row: span 2; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(15, 25, 18, 0.94); z-index: 200;
  display: none; align-items: center; justify-content: center; padding: 4vh 4vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 18px; right: 22px; background: none; border: none;
  color: var(--white); font-size: 2.2rem; cursor: pointer; line-height: 1;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.4);
  color: var(--white); font-size: 1.6rem; width: 48px; height: 48px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
.lightbox-caption { position: absolute; bottom: 20px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,0.85); font-size: 0.95rem; }

/* ===== Location ===== */
.location { background: var(--green-900); color: rgba(255,255,255,0.9); }
.location .eyebrow { color: #d9a856; }
.location h2 { color: var(--white); }
.location-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.location-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); min-height: 340px; display: flex; }
.location-img iframe { width: 100%; min-height: 340px; border: 0; display: block; }
.map-placeholder {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 32px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius);
}
.map-placeholder p { margin-bottom: 10px; }
.map-placeholder .map-note { font-size: 0.85rem; color: rgba(255,255,255,0.75); max-width: 340px; margin-bottom: 18px; }
.map-placeholder .map-note a { color: #d9a856; }
.location-facts { list-style: none; margin: 24px 0 28px; }
.location-facts li { display: flex; gap: 14px; padding: 10px 0; align-items: flex-start; }
.location-facts svg { flex-shrink: 0; width: 24px; height: 24px; stroke: #d9a856; margin-top: 2px; }
.location-facts strong { color: var(--white); display: block; }
.location-facts span { font-size: 0.92rem; color: rgba(255,255,255,0.75); }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-info-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 32px; }
.contact-info-card h3 { font-size: 1.2rem; margin-bottom: 18px; }
.contact-line { display: flex; gap: 14px; align-items: flex-start; padding: 10px 0; }
.contact-line svg { width: 22px; height: 22px; stroke: var(--green-700); flex-shrink: 0; margin-top: 3px; }
.contact-line a { color: var(--green-700); font-weight: 600; text-decoration: none; }
.contact-line a:hover { text-decoration: underline; }
.contact-line .label { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-soft); display: block; }

.inquiry-form { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid #ddd6c8; border-radius: 10px;
  font-family: inherit; font-size: 1rem; background: var(--cream); color: var(--text);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--green-600); background: var(--white);
}
.form-check { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; font-size: 0.96rem; }
.form-check input { width: 18px; height: 18px; accent-color: var(--green-700); }
.form-hint { font-size: 0.85rem; color: var(--text-soft); margin-top: 12px; }
.inquiry-form .btn { width: 100%; }

/* ===== Footer ===== */
.site-footer { background: #16281d; color: rgba(255,255,255,0.75); padding: 48px 0 28px; font-size: 0.92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.site-footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 12px; }
.site-footer a { color: rgba(255,255,255,0.75); text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.site-footer ul { list-style: none; }
.site-footer li { padding: 4px 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ===== Legal pages ===== */
.legal-page { padding: 60px 20px; max-width: 760px; }
.success-icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--green-100);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.success-icon svg { width: 30px; height: 30px; stroke: var(--green-700); }
.kalender-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.back-link { color: var(--green-700); font-weight: 600; text-decoration: none; }
.back-link:hover { text-decoration: underline; }
@media (max-width: 540px) {
  .kalender-actions .btn { width: 100%; }
}
.legal-page h1 { margin-bottom: 24px; }
.legal-page h2 { font-size: 1.3rem; margin: 28px 0 10px; }
.legal-page p { margin-bottom: 12px; }
.legal-page a:not(.btn) { color: var(--green-700); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .main-nav {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--cream); flex-direction: column; padding: 20px; gap: 18px;
    border-bottom: 1px solid rgba(30,58,42,0.1); box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-phone { display: none; }
  .price-grid, .location-grid, .contact-grid { grid-template-columns: 1fr; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-grid a:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-grid a:nth-child(4) { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero { min-height: 64vh; }
}
@media (max-width: 540px) {
  /* Mobil: keine eingebettete Karte, stattdessen hervorgehobener Anfahrt-Button */
  .location-img { display: none; }
  .location .btn-outline-light {
    background: var(--amber); border-color: transparent; width: 100%;
    box-shadow: 0 4px 14px rgba(200, 132, 46, 0.35);
  }
  .location .btn-outline-light:hover { background: var(--amber-dark); }
  .amenity-grid { grid-template-columns: 1fr; gap: 12px; }
  .amenity {
    display: grid; grid-template-columns: 46px 1fr; column-gap: 16px;
    align-items: center; text-align: left; padding: 14px 18px;
  }
  .amenity .icon { grid-row: 1 / span 2; width: 46px; height: 46px; margin: 0; }
  .amenity .icon svg { width: 22px; height: 22px; }
  .amenity h3 { margin-bottom: 2px; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  .hero-content { text-align: center; }
  .hero-bg::after { background: linear-gradient(to bottom, rgba(20, 38, 27, 0.45) 0%, rgba(20, 38, 27, 0.32) 60%, rgba(20, 38, 27, 0.2) 100%); }
  .hero .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions .btn { width: 100%; }
  .header-inner { gap: 8px; }
  .brand strong { font-size: 1.02rem; }
  .brand span { font-size: 0.58rem; white-space: nowrap; letter-spacing: 0.04em; }
  .header-cta { gap: 6px; }
  .header-cta .btn { white-space: nowrap; padding: 8px 12px; font-size: 0.8rem; }
  .nav-toggle { padding: 6px 4px; }
}
