/* Ubytování Horská — jednoduchý statický web */

:root {
  --pine:   #2f5d50;
  --pine-d: #244840;
  --stone:  #3a3f44;
  --mist:   #f4f6f5;
  --sky:    #6ea8a0;
  --text:   #2b2b2b;
  --muted:  #6b7280;
  --line:   #e2e6e4;
  --radius: 12px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--pine) 0%, var(--pine-d) 60%, var(--stone) 100%);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.hero__inner {
  max-width: 640px;
  margin: 0 auto;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  margin: 0 0 12px;
  opacity: 0.85;
}

.hero__title {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  margin: 0 0 14px;
  font-weight: 700;
}

.hero__subtitle {
  font-size: 1.15rem;
  margin: 0 0 28px;
  opacity: 0.95;
}

.hero__cta {
  display: inline-block;
  background: #fff;
  color: var(--pine-d);
  text-decoration: none;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

/* ---------- Sections ---------- */
.section {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.section__title {
  font-size: 1.8rem;
  margin: 0 0 18px;
  color: var(--pine-d);
}

.section__lead {
  color: var(--muted);
  margin: 0 0 28px;
}

/* ---------- Features ---------- */
.features {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.feature__title {
  margin: 0 0 8px;
  color: var(--pine);
  font-size: 1.1rem;
}

.feature p { margin: 0; color: var(--muted); }

/* ---------- Reservation / widget placeholder ---------- */
.section--reserve { background: var(--mist); }

.widget-placeholder {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px dashed var(--sky);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
  padding: 24px;
}

.widget-placeholder__text {
  margin: 0;
  font-size: 1rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--stone);
  color: #d8dcde;
  padding: 36px 0;
  text-align: center;
  font-size: 0.95rem;
}

.footer p { margin: 4px 0; }

.footer__copy {
  margin-top: 14px;
  color: #9aa1a6;
  font-size: 0.85rem;
}
