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

:root {
  --gold: #b8960c;
  --gold-light: #d4af37;
  --dark: #1a1a1a;
  --dark2: #2c2c2c;
  --gray: #6b6b6b;
  --gray-light: #f5f4f0;
  --white: #ffffff;
  --green: #2d6a4f;
  --warn: #7a3b0a;
  --warn-bg: #fff8f0;
  --warn-border: #f0a050;
  --border: #e0ddd6;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.15);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--dark); background: var(--white); line-height: 1.65; font-size: 16px; }
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; object-fit: cover; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ── */
.btn { display: inline-block; padding: 14px 30px; border-radius: 6px; font-weight: 600; font-size: 15px; cursor: pointer; transition: all .2s ease; border: 2px solid transparent; font-family: 'Inter', sans-serif; }
.btn-primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(184,150,12,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-large { padding: 18px 42px; font-size: 16px; }

/* ── HEADER ── */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(26,26,26,0.93); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.08); transition: background .3s; }
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo { display: flex; flex-direction: column; gap: 1px; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--white); font-weight: 700; }
.logo-sub { font-size: 10px; color: var(--gold-light); letter-spacing: 1.5px; text-transform: uppercase; }
.nav-links { display: flex; list-style: none; gap: 28px; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--white); }
.btn-nav { background: var(--gold) !important; color: var(--white) !important; padding: 9px 20px; border-radius: 6px; font-weight: 600 !important; }
.btn-nav:hover { background: var(--gold-light) !important; }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 24px; cursor: pointer; }

/* ── HERO ── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: #0d1b2a; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,27,42,0.7) 0%, rgba(26,42,26,0.5) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 700px; padding-top: 68px; }
.hero-badge { display: inline-block; background: rgba(184,150,12,0.2); border: 1px solid rgba(184,150,12,0.5); color: var(--gold-light); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; border-radius: 20px; margin-bottom: 24px; font-weight: 500; }
.hero-title { font-size: clamp(36px, 5vw, 62px); color: var(--white); margin-bottom: 20px; font-weight: 700; }
.hero-title .gold { color: var(--gold-light); }
.hero-subtitle { font-size: 18px; color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 580px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.4); font-size: 24px; animation: bounce 2s infinite; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ── USPS ── */
.usps { background: var(--dark); padding: 28px 0; }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.usp { display: flex; align-items: flex-start; gap: 14px; color: var(--white); }
.usp-icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.usp strong { display: block; font-size: 13px; font-weight: 600; margin-bottom: 3px; }
.usp p { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.4; }

/* ── SECTIONS ── */
.section { padding: 96px 0; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.section-label { display: inline-block; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.section-header h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
.section-header p { color: var(--gray); font-size: 16px; line-height: 1.7; }

/* ── INTRO ── */
.intro-section { background: var(--gray-light); }
.intro-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.intro-text .section-label { display: block; margin-bottom: 12px; }
.intro-text h2 { font-size: clamp(26px, 3.5vw, 38px); margin-bottom: 18px; }
.intro-text p { color: var(--gray); margin-bottom: 14px; line-height: 1.75; }
.intro-images { display: grid; grid-template-rows: 260px 160px; gap: 14px; }
.intro-img { border-radius: var(--radius); width: 100%; height: 100%; object-fit: cover; box-shadow: var(--shadow); }

/* ── PREISE ── */
.preise-section { background: var(--white); }
.preise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.preis-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 2px solid var(--border); transition: transform .2s, box-shadow .2s; position: relative; }
.preis-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.preis-card.featured { border-color: var(--gold); }
.preis-badge { position: absolute; top: 14px; right: 14px; background: var(--gold); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; z-index: 2; }
.preis-img-wrap { height: 200px; overflow: hidden; }
.preis-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.preis-card:hover .preis-img-wrap img { transform: scale(1.04); }
.preis-body { padding: 28px; }
.preis-body h3 { font-size: 22px; margin-bottom: 4px; }
.preis-size { font-size: 13px; color: var(--gray); margin-bottom: 18px; }
.preis-preis { display: flex; align-items: baseline; gap: 8px; margin-bottom: 20px; border-top: 1px solid var(--border); padding-top: 16px; }
.preis-preis .amount { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700; color: var(--gold); }
.preis-preis .unit { font-size: 13px; color: var(--gray); }
.preis-features { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--gray); margin-bottom: 24px; }

/* ── HOTEL GALLERY ── */
.hotel-section { background: var(--gray-light); }
.hotel-gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 14px; margin-bottom: 32px; border-radius: var(--radius); overflow: hidden; }
.gallery-main img { height: 420px; border-radius: var(--radius) 0 0 var(--radius); }
.gallery-side { display: flex; flex-direction: column; gap: 14px; }
.gallery-side img { flex: 1; height: 203px; border-radius: 0; }
.gallery-side img:first-child { border-radius: 0 var(--radius) 0 0; }
.gallery-side img:last-child { border-radius: 0 0 var(--radius) 0; }
.amenities { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.amenity { background: var(--white); border: 1px solid var(--border); border-radius: 30px; padding: 8px 18px; font-size: 14px; font-weight: 500; color: var(--dark2); }

/* ── UMGEBUNG ── */
.umgebung-header { text-align: center; margin: 48px 0 24px; }
.umgebung-header h3 { font-size: 24px; margin-top: 8px; }
.umgebung-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.umgebung-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; cursor: default; }
.umgebung-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.umgebung-item:hover img { transform: scale(1.05); }
.umgebung-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.65)); color: var(--white); font-size: 13px; font-weight: 600; padding: 20px 12px 10px; text-align: center; }
@media (max-width: 720px) { .umgebung-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── SO GEHT'S ── */
.so-gehts-section { background: var(--white); }
.steps { display: flex; align-items: flex-start; gap: 0; }
.step { flex: 1; text-align: center; padding: 36px 24px; background: var(--gray-light); border-radius: var(--radius); }
.step-number { width: 48px; height: 48px; border-radius: 50%; background: var(--gold); color: var(--white); font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.step-icon { font-size: 32px; margin-bottom: 12px; }
.step h3 { font-size: 18px; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.step-connector { display: flex; align-items: center; padding: 0 8px; padding-top: 36px; flex-shrink: 0; }
.connector-line { width: 32px; height: 2px; background: var(--gold); opacity: 0.4; }
.steps-cta { text-align: center; margin-top: 48px; }

/* ── HINWEISE ── */
.hinweise-section { background: var(--gray-light); }
.hinweise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.hinweis-card { background: var(--white); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow); border-left: 4px solid var(--border); }
.hinweis-card.warning { border-left-color: var(--warn-border); background: var(--warn-bg); }
.hinweis-icon { font-size: 32px; margin-bottom: 14px; }
.hinweis-card h3 { font-size: 18px; margin-bottom: 12px; }
.hinweis-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.hinweis-card ul { margin-top: 10px; padding-left: 18px; font-size: 14px; color: var(--gray); display: flex; flex-direction: column; gap: 6px; }

.reinigung-table-wrap { max-width: 480px; margin: 0 auto; background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.reinigung-table-wrap h3 { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 20px; text-align: center; }
.reinigung-table { width: 100%; border-collapse: collapse; }
.reinigung-table th { text-align: left; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); font-family: 'Inter', sans-serif; border-bottom: 2px solid var(--border); padding-bottom: 10px; }
.reinigung-table td { padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
.reinigung-table tr:last-child td { border-bottom: none; }
.reinigung-table td:last-child { text-align: right; font-size: 18px; color: var(--gold); }

/* ── KONTAKT / FORM ── */
.kontakt-section { background: var(--dark); }
.kontakt-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.kontakt-info .section-label { display: block; margin-bottom: 12px; }
.kontakt-info h2 { font-size: clamp(26px, 3.5vw, 38px); color: var(--white); margin-bottom: 16px; }
.kontakt-info > p { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.7; margin-bottom: 32px; }
.kontakt-steps-mini { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.mini-step { display: flex; align-items: flex-start; gap: 14px; color: rgba(255,255,255,0.8); font-size: 14px; line-height: 1.5; }
.mini-num { width: 26px; height: 26px; border-radius: 50%; background: var(--gold); color: var(--white); font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.kontakt-paypal { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,0.07); border-radius: 10px; padding: 16px 20px; }
.kontakt-paypal span { font-size: 13px; color: rgba(255,255,255,0.6); }

.coupon-form { background: var(--white); border-radius: 16px; padding: 40px; box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { margin-bottom: 18px; }
label { font-size: 13px; font-weight: 600; color: var(--dark2); }
input, select, textarea { font-family: 'Inter', sans-serif; font-size: 15px; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px; background: var(--white); color: var(--dark); transition: border-color .2s, box-shadow .2s; outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,150,12,0.12); }
textarea { resize: vertical; }
.checkbox-group { margin-bottom: 20px; }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--gray); cursor: pointer; font-weight: 400; }
.checkbox-label input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; padding: 0; accent-color: var(--gold); }
.checkbox-label a { color: var(--gold); text-decoration: underline; }

.preisvorschau { background: var(--gray-light); border-radius: 10px; padding: 18px 20px; margin-bottom: 20px; text-align: center; border: 1px solid var(--border); }
.vorschau-label { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--gray); margin-bottom: 6px; }
.vorschau-betrag { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--gold); }
.vorschau-hinweis { font-size: 11px; color: var(--gray); margin-top: 6px; }

.form-submit { text-align: center; }
.form-success { display: none; text-align: center; padding: 40px 0; }
.form-success.visible { display: block; }
.success-icon { width: 64px; height: 64px; border-radius: 50%; background: #d4edda; color: var(--green); font-size: 28px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.form-success h3 { color: var(--green); margin-bottom: 10px; font-size: 22px; }
.form-success p { color: var(--gray); }

/* ── IMPRESSUM ── */
.impressum-section { background: #111; padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.impressum-section h3 { font-size: 18px; color: rgba(255,255,255,0.6); margin-bottom: 16px; font-family: 'Inter', sans-serif; font-weight: 600; }
.impressum-section p { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.8; margin-bottom: 12px; max-width: 600px; }
.impressum-section a { color: var(--gold); }
.impressum-section strong { color: rgba(255,255,255,0.5); }

/* ── DATENSCHUTZ ── */
.datenschutz-hinweis { background: #111; padding: 36px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.datenschutz-hinweis h3 { font-size: 15px; color: rgba(255,255,255,0.5); margin-bottom: 8px; font-family: 'Inter', sans-serif; font-weight: 600; }
.datenschutz-hinweis p { font-size: 13px; color: rgba(255,255,255,0.3); max-width: 760px; line-height: 1.7; }
.datenschutz-hinweis a { color: var(--gold); }

/* ── FOOTER ── */
.footer { background: #0f0f0f; color: rgba(255,255,255,0.6); padding: 56px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand .logo-text { color: var(--white); font-size: 20px; display: block; margin-bottom: 8px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact p { font-size: 13px; margin-bottom: 6px; }
.footer-contact a { color: var(--gold-light); font-size: 15px; }
.footer-bottom { padding: 20px 24px; text-align: center; font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .preise-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .intro-layout { grid-template-columns: 1fr; gap: 40px; }
  .hotel-gallery { grid-template-columns: 1fr; }
  .gallery-main img { height: 280px; border-radius: var(--radius) var(--radius) 0 0; }
  .gallery-side { flex-direction: row; }
  .gallery-side img { height: 160px; border-radius: 0; }
  .gallery-side img:last-child { border-radius: 0 0 var(--radius) 0; }
  .gallery-side img:first-child { border-radius: 0 0 0 var(--radius); }
  .hinweise-grid { grid-template-columns: 1fr; }
  .kontakt-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 720px) {
  .steps { flex-direction: column; }
  .step-connector { padding: 8px 0; width: 100%; justify-content: center; }
  .connector-line { width: 2px; height: 28px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: #1a1a1a; padding: 20px 24px; gap: 16px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .coupon-form { padding: 24px 18px; }
  .usp-grid { grid-template-columns: 1fr; }
}
