/*
Theme Name: Parkhotel Schwedt
Theme URI: https://www.parkhotel-schwedt.com
Author: Wilken Solutions
Description: Custom theme for Parkhotel Schwedt — Direktbuchung, photography-first hospitality.
Version: 0.3.146
Text Domain: phs-theme
*/

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('assets/fonts/lato-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/lato-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/lato-400i.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/lato-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/open-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/open-sans-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/open-sans-700.woff2') format('woff2');
}

html, body { margin: 0; padding: 0; width: 100%; max-width: 100%; }

/* ── Parkhotel Schwedt · Design tokens (from landing-vorschau mockup) ── */
.phs-site {
  --gold: #cc9900;
  --gold-hover: #aa6600;
  --ink: #2c2c2c;
  --ink-soft: #5a5a5a;
  --cream: #f2efeb;
  --white: #ffffff;
  --line: #d8d2c8;
  --phs-header-h: 80px;
  --phs-sticky-h: 80px;
  --phs-book-hang: 100px;
  --heading: 'Lato', 'Segoe UI', sans-serif;
  --body: 'Open Sans', 'Segoe UI', sans-serif;
  --max: 1110px;
  --max-wide: 1280px;
  --on-gold: #ffffff;
  --on-photo: #ffffff;
  --radius: 4px;
  --pad: clamp(16px, 4.5vw, 24px);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--white);
  overflow: visible;
  width: 100%;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

html.phs-menu-lock,
html.phs-menu-lock body {
  overflow: hidden;
}

.phs-site ::selection {
  background: #efe4c8;
  color: #8a5200;
}

.phs-site *, .phs-site *::before, .phs-site *::after { box-sizing: border-box; }
.phs-site img { display: block; max-width: 100%; height: auto; }
.phs-site a { color: inherit; text-decoration: none; }
.phs-site ul { list-style: none; margin: 0; padding: 0; }
.phs-site p { margin: 0 0 12px; }

.phs-site h1, .phs-site h2, .phs-site h3, .phs-site h4 {
  font-family: var(--heading);
  color: var(--ink);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.phs-container,
.phs-container-wide {
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  padding: 0 var(--pad);
  box-sizing: border-box;
}
.phs-container { max-width: var(--max); }
.phs-container-wide { max-width: var(--max-wide); }

.phs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  min-height: 48px;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  font-family: var(--body);
}

/* Beat `.phs-site a { color: inherit }` so link-buttons keep their own type color. */
.phs-site .phs-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.phs-site .phs-btn-solid,
.phs-site a.phs-btn-solid {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.phs-site .phs-btn-solid:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: var(--white);
}

.phs-site .phs-btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.phs-site .phs-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.phs-site .phs-btn-outline {
  color: var(--ink);
  border-color: var(--ink);
  padding: 14px 28px;
}

.phs-site .phs-btn-outline:hover { background: var(--ink); color: #fff; }

.phs-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.phs-reveal.is-visible { opacity: 1; transform: none; }

/* Legal copy must stay readable even if a tall .phs-reveal never intersects. */
.phs-legal-page .phs-page-body.phs-reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .phs-reveal { opacity: 1; transform: none; transition: none; }
}
