/* ============================================
   HOTEL KANÁREK — STYLE
   Paleta: lesní zelená, krémová, mosazná zlatá
   Fonty: Fraunces (display) + Inter (text)
   ============================================ */

:root {
  --forest: #2F4538;
  --forest-deep: #25382C;
  --cream: #F7F3EC;
  --cream-warm: #F1EBDF;
  --ink: #1A1A18;
  --brass: #C9A876;
  --brass-deep: #B5925E;
  --sage: #7A8B7A;
  --line: rgba(26,26,24,0.12);
  --shadow: 0 18px 50px -20px rgba(26,26,24,0.28);
  --radius: 14px;
  --maxw: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
em { font-style: italic; color: var(--brass-deep); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 18px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--forest);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

/* ============ HEADER ============ */
#siteHeader {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all 0.3s ease;
}
#siteHeader.scrolled {
  background: rgba(247,243,236,0.92);
  backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--line);
}
#siteHeader nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
}
.logo svg { width: 32px; height: 32px; }
#siteHeader.scrolled .logo { color: var(--ink); }

.nav-links {
  display: flex;
  gap: 34px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
}
.nav-links a { position: relative; padding: 4px 0; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 0.65; }
#siteHeader.scrolled .nav-links { color: var(--ink); }

.nav-lang {
  display: flex;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
}
.nav-lang span { cursor: pointer; transition: color 0.2s; }
.nav-lang span.active { color: #fff; }
.nav-lang span:hover { color: #fff; }
#siteHeader.scrolled .nav-lang { color: var(--sage); }
#siteHeader.scrolled .nav-lang span.active { color: var(--ink); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
#siteHeader.scrolled .menu-toggle span { background: var(--ink); }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-panel {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: var(--cream);
  padding: 0 32px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.mobile-panel.open {
  max-height: 600px;
  padding: 20px 32px 30px;
}
.mobile-panel a {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.mobile-lang {
  display: flex;
  gap: 14px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage);
}
.mobile-lang span { cursor: pointer; }
.mobile-lang span.active { color: var(--ink); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Hero slideshow — plynulé střídání fotek */
.hero-slideshow .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-slideshow .hero-slide.active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero-slideshow .hero-slide { transition: none; }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, rgba(26,26,24,0.78) 0%, rgba(26,26,24,0.45) 50%, rgba(47,69,56,0.35) 100%);
}
.hero-content { max-width: 640px; padding-top: 60px; }
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  margin: 22px 0;
}
.hero .lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-mark {
  position: absolute;
  right: 6%;
  bottom: 12%;
  width: 180px;
  opacity: 0.5;
  z-index: -1;
}
.hero-mark svg { width: 100%; }

/* ============ BOOKING BAR ============ */
.booking-wrap {
  position: relative;
  z-index: 10;
  margin-top: -44px;
}
.booking-bar {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 26px;
  display: flex;
  gap: 20px;
  align-items: flex-end;
  flex-wrap: wrap;
}
.bf-field { flex: 1; min-width: 140px; }
.bf-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}
.bf-field input,
.bf-field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
}
.bf-field input:focus,
.bf-field select:focus {
  outline: none;
  border-color: var(--brass);
}
.bf-submit { flex: 1; min-width: 160px; }

/* ============ SECTION HEAD ============ */
.section-head {
  max-width: 620px;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
}
.section-head p {
  margin-top: 16px;
  color: #5a5a54;
  font-size: 1.05rem;
}

/* ============ INTRO ============ */
.intro { padding: 110px 0; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.intro h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.intro-media { position: relative; }
.img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.img-main img { width: 100%; height: 480px; object-fit: cover; }
.img-float {
  position: absolute;
  right: -30px;
  bottom: -40px;
  width: 200px;
  border-radius: 12px;
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow);
}
.img-float img { width: 100%; height: 180px; object-fit: cover; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stat .num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  color: var(--forest);
}
.stat .label {
  font-size: 0.82rem;
  color: var(--sage);
  margin-top: 4px;
}

/* ============ WHY ============ */
.why {
  padding: 110px 0;
  background: var(--forest);
  color: var(--cream);
}
.why .eyebrow { color: var(--brass); }
.why .section-head h2 { color: var(--cream); }
.why .section-head p { color: rgba(247,243,236,0.7); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.why-card {
  padding: 34px 26px;
  border: 1px solid rgba(247,243,236,0.14);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}
.why-card:hover {
  background: rgba(247,243,236,0.05);
  border-color: var(--brass);
  transform: translateY(-4px);
}
.why-card .icon {
  width: 34px;
  height: 34px;
  color: var(--brass);
  margin-bottom: 22px;
}
.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.94rem;
  color: rgba(247,243,236,0.72);
}

/* ============ ROOMS ============ */
.rooms { padding: 110px 0; }
.room-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 46px;
  flex-wrap: wrap;
}
.room-tab {
  padding: 9px 20px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.room-tab:hover { border-color: var(--brass); }
.room-tab.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.room-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.room-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 40px -24px rgba(26,26,24,0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.room-img { position: relative; overflow: hidden; }
.room-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.room-card:hover .room-img img { transform: scale(1.05); }
.room-img .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--brass);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}
.room-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.room-body h3 { font-size: 1.3rem; }
.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--sage);
}
.room-price {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.room-price .from { font-size: 0.74rem; color: var(--sage); }
.room-price .amount {
  font-family: 'Fraunces', serif;
  font-size: 1.45rem;
  color: var(--forest);
}
.room-price .amount small { font-size: 0.8rem; color: var(--sage); }
.room-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brass-deep);
}

/* ============ RESTAURANT ============ */
.restaurant {
  padding: 110px 0;
  background: var(--cream-warm);
}
.rest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.restaurant h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.menu-mini {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.menu-row .name { font-weight: 600; font-size: 1rem; }
.menu-row .desc { font-size: 0.86rem; color: var(--sage); margin-top: 2px; }
.menu-row .price {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  color: var(--forest);
  white-space: nowrap;
}
.rest-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.rest-media .tall {
  grid-row: span 2;
  border-radius: var(--radius);
  overflow: hidden;
}
.rest-media .tall img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.rest-media .wide {
  border-radius: var(--radius);
  overflow: hidden;
}
.rest-media .wide img { width: 100%; height: 172px; object-fit: cover; }

/* ============ LOCATION ============ */
.location { padding: 110px 0; }
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.location h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.loc-list {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.loc-item { display: flex; gap: 18px; }
.loc-item .ic {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--forest);
  color: var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
}
.loc-item .ic svg { width: 22px; height: 22px; }
.loc-item h4 { font-size: 1.1rem; margin-bottom: 3px; }
.loc-item p { font-size: 0.92rem; color: #5a5a54; }
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 440px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ============ REVIEWS ============ */
.reviews {
  padding: 110px 0;
  background: var(--forest);
  color: var(--cream);
}
.reviews .eyebrow { color: var(--brass); }
.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.reviews-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); color: var(--cream); }
.score-box { text-align: right; }
.score-box .num {
  font-family: 'Fraunces', serif;
  font-size: 3.2rem;
  color: var(--brass);
  line-height: 1;
}
.score-box .label { font-size: 0.84rem; color: rgba(247,243,236,0.7); margin-top: 6px; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.review-card {
  padding: 32px;
  border: 1px solid rgba(247,243,236,0.14);
  border-radius: var(--radius);
}
.review-card .stars { color: var(--brass); letter-spacing: 0.1em; margin-bottom: 16px; }
.review-card .quote {
  font-family: 'Fraunces', serif;
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--cream);
}
.review-card .who {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(247,243,236,0.14);
  display: flex;
  justify-content: space-between;
  font-size: 0.84rem;
  color: rgba(247,243,236,0.6);
}

/* ============ CTA STRIP ============ */
.cta-strip {
  padding: 90px 0;
  text-align: center;
  background: var(--brass);
  color: var(--ink);
}
.cta-strip h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 30px;
}

/* ============ FOOTER ============ */
footer {
  background: var(--ink);
  color: rgba(247,243,236,0.72);
  padding: 80px 0 40px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(247,243,236,0.12);
}
.foot-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 18px;
}
.foot-logo svg { width: 32px; height: 32px; color: var(--brass); }
.foot-grid > div > p { font-size: 0.92rem; line-height: 1.7; }
.foot-grid h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
}
.foot-grid ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.foot-grid ul a { font-size: 0.92rem; transition: color 0.2s; }
.foot-grid ul a:hover { color: var(--cream); }
.foot-bottom {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 0.84rem;
  color: rgba(247,243,236,0.5);
  flex-wrap: wrap;
  gap: 10px;
}

/* ============ PAGE HERO (podstránky) ============ */
.page-hero {
  position: relative;
  padding: 180px 0 80px;
  color: #fff;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; z-index: -2; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(26,26,24,0.7), rgba(47,69,56,0.55));
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  max-width: 700px;
}
.page-hero .lead {
  margin-top: 18px;
  font-size: 1.12rem;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
}
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  display: flex;
  gap: 8px;
}
.breadcrumb a:hover { color: #fff; }

/* ============ PLACEHOLDER ============ */
.ph {
  background: linear-gradient(135deg, var(--sage), var(--forest));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 20px;
}

/* ============ ROOM DETAIL (pokoje.html) ============ */
.room-detail {
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
}
.room-detail:nth-child(even) { background: var(--cream-warm); }
.rd-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.room-detail:nth-child(even) .rd-grid { direction: rtl; }
.room-detail:nth-child(even) .rd-grid > * { direction: ltr; }
.rd-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 420px;
}
.rd-gallery > *:first-child {
  grid-row: span 2;
  border-radius: var(--radius);
  overflow: hidden;
}
.rd-gallery > *:not(:first-child) {
  border-radius: var(--radius);
  overflow: hidden;
}
.rd-gallery img { width: 100%; height: 100%; object-fit: cover; }
.rd-info h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.rd-price-tag {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  color: var(--forest);
  margin: 16px 0;
}
.rd-price-tag small { font-size: 0.9rem; color: var(--sage); }
.rd-features {
  list-style: none;
  margin: 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.rd-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  color: #4a4a45;
}
.rd-features li svg { width: 18px; height: 18px; color: var(--brass-deep); flex-shrink: 0; }

/* ============ MENU PAGE (restaurace.html) ============ */
.menu-section { padding: 90px 0; }
.menu-category { margin-bottom: 64px; }
.menu-category h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 8px;
}
.menu-category .cat-note { color: var(--sage); font-size: 0.95rem; margin-bottom: 28px; }
.menu-items { display: flex; flex-direction: column; }
.menu-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.menu-item .mi-name { font-weight: 600; font-size: 1.05rem; flex-shrink: 0; }
.menu-item .mi-dots {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-4px);
}
.menu-item .mi-desc {
  font-size: 0.86rem;
  color: var(--sage);
  flex-basis: 100%;
  margin-top: -8px;
}
.menu-item .mi-price {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: var(--forest);
  white-space: nowrap;
}
.menu-item-row { display: flex; flex-wrap: wrap; align-items: baseline; gap: 16px; width: 100%; }

.rest-hours {
  background: var(--forest);
  color: var(--cream);
  padding: 60px 0;
  margin-top: 40px;
}
.hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.hours-grid .hg-item h4 { color: var(--brass); font-family: 'Inter', sans-serif; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.hours-grid .hg-item p { font-size: 1.1rem; }

/* ============ CONFERENCE (konference.html) ============ */
.conf-intro { padding: 90px 0; }
.conf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.conf-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 30px;
}
.spec-cell {
  background: var(--cream);
  padding: 24px;
}
.spec-cell .sc-num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  color: var(--forest);
}
.spec-cell .sc-label { font-size: 0.86rem; color: var(--sage); margin-top: 4px; }

.conf-uses {
  padding: 90px 0;
  background: var(--cream-warm);
}
.uses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.use-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 40px -24px rgba(26,26,24,0.3);
}
.use-card .uc-img { height: 200px; }
.use-card .uc-img img { width: 100%; height: 100%; object-fit: cover; }
.use-card .uc-body { padding: 26px; }
.use-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.use-card p { font-size: 0.92rem; color: #5a5a54; }

.conf-equipment {
  padding: 90px 0;
}
.equip-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 40px;
  margin-top: 36px;
}
.equip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}
.equip-item svg { width: 20px; height: 20px; color: var(--brass-deep); flex-shrink: 0; }

/* ============ GALLERY (galerie.html) ============ */
.gallery-section { padding: 90px 0; }
.gal-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.gal-filter {
  padding: 9px 20px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.gal-filter:hover { border-color: var(--brass); }
.gal-filter.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}
.gal-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gal-item.tall { grid-row: span 2; }
.gal-item.wide { grid-column: span 2; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gal-item:hover img { transform: scale(1.06); }
.gal-item .gal-cap {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(26,26,24,0.6));
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: #fff;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gal-item:hover .gal-cap { opacity: 1; }

/* ============ CONTACT (kontakt.html) ============ */
.contact-section { padding: 90px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.ci-block { display: flex; gap: 16px; }
.ci-block .ic {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--forest);
  color: var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ci-block .ic svg { width: 22px; height: 22px; }
.ci-block h4 { font-size: 1.05rem; margin-bottom: 4px; }
.ci-block p, .ci-block a { font-size: 0.95rem; color: #4a4a45; line-height: 1.6; }
.ci-block a:hover { color: var(--brass-deep); }

.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 1.6rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 7px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--ink);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { outline: none; border-color: var(--brass); }
.form-field textarea { resize: vertical; min-height: 120px; }

.contact-map {
  margin-top: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 380px;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .mobile-panel { display: flex; }
  .intro-grid, .rest-grid, .loc-grid, .conf-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .room-detail:nth-child(even) .rd-grid { direction: ltr; }
  .rd-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .room-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .uses-grid, .hours-grid { grid-template-columns: 1fr; }
  .img-float { display: none; }
  .nav-lang { display: none; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .why-grid, .room-grid, .gal-grid, .conf-specs, .equip-list, .form-row { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .booking-bar { flex-direction: column; align-items: stretch; }
  .reviews-head { flex-direction: column; align-items: flex-start; }
  .score-box { text-align: left; }
  .hero { min-height: 70vh; }
  .hero-content { padding-top: 40px; text-align: center; }
  .hero-content .eyebrow { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero h1 { margin: 16px 0; }
  .gal-item.wide { grid-column: span 1; }
  .gal-item.tall { grid-row: span 1; }

  /* Zmenšení textů pro lepší čitelnost na mobilu */
  .hero .lead { font-size: 1rem; line-height: 1.55; }
  .page-hero .lead { font-size: 1rem; line-height: 1.55; }
  .intro p, .conf-intro p { font-size: 0.98rem; line-height: 1.6; }
  .section-head p, .why .lead { font-size: 0.98rem; }
  .intro { padding: 70px 0; }
  .why, .rooms, .restaurant, .reviews { padding-top: 70px; padding-bottom: 70px; }
  p[style*="1.05rem"] { font-size: 0.98rem !important; }

  /* Vybavení pokoje — dva sloupce i na mobilu, kompaktněji */
  .rd-features { gap: 10px 14px; }
  .rd-features li { font-size: 0.86rem; gap: 7px; }
  .rd-features li svg { width: 15px; height: 15px; }
}


/* ============ SCORE CARDS (Booking + Google) ============ */
.score-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 720px;
  margin: 0 auto;
}
.score-card {
  text-align: center;
  padding: 44px 32px;
  border: 1px solid rgba(247,243,236,0.16);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}
.score-card:hover {
  background: rgba(247,243,236,0.05);
  border-color: var(--brass);
}
.score-card .sc-source {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,243,236,0.65);
  margin-bottom: 14px;
}
.score-card .sc-big {
  font-family: 'Fraunces', serif;
  font-size: 4.2rem;
  line-height: 1;
  color: var(--brass);
}
.score-card .sc-big .sc-max {
  font-size: 1.6rem;
  color: rgba(247,243,236,0.5);
}
.score-card .sc-stars {
  color: var(--brass);
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  margin: 14px 0 20px;
}
.score-card .sc-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  transition: color 0.2s;
}
.score-card .sc-link:hover { color: var(--brass); }

@media (max-width: 600px) {
  /* Skóre karty vedle sebe a kompaktní */
  .score-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .score-card { padding: 24px 12px; }
  .score-card .sc-source { font-size: 0.68rem; margin-bottom: 8px; }
  .score-card .sc-big { font-size: 2.8rem; }
  .score-card .sc-big .sc-max { font-size: 1.1rem; }
  .score-card .sc-stars { font-size: 1rem; margin: 8px 0 12px; }
  .score-card .sc-link { font-size: 0.82rem; }
}


/* ============ MENU — MOBILNÍ VERZE (čitelnost) ============ */
@media (max-width: 640px) {
  .menu-item-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .menu-item .mi-name {
    font-size: 1rem;
    line-height: 1.35;
    white-space: normal;      /* název se smí zalomit */
    word-break: break-word;   /* dlouhá slova nepřetečou */
  }
  .menu-item .mi-dots {
    display: none;            /* tečkovaná čára na mobilu nedává smysl */
  }
  .menu-item .mi-price {
    font-size: 1.05rem;
    color: var(--brass-deep, #a8843f);
    font-weight: 600;
    margin-top: 2px;
  }
  .menu-item .mi-desc {
    margin-top: 2px;
  }
  .menu-item {
    padding: 14px 0;
  }
  .menu-category { margin-bottom: 40px; }
}

/* ============ SLIDESHOW POKOJŮ ============ */
.rd-slideshow {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}
.slide-track {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
}
.slide-track .slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
  cursor: zoom-in;
  pointer-events: none;
}
.slide-track .slide.active { opacity: 1; pointer-events: auto; }

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.slide-arrow:hover { background: #fff; }
.slide-prev { left: 12px; }
.slide-next { right: 12px; }

.slide-counter {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.8rem;
  padding: 3px 10px;
  border-radius: 20px;
  z-index: 2;
}
.slide-dots {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.slide-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.slide-dot.active { background: #fff; }

/* Lightbox — fotka přes celou obrazovku */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  cursor: pointer;
  line-height: 1;
}
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px; height: 54px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-arrow:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.9rem;
  background: rgba(0,0,0,0.5);
  padding: 5px 14px;
  border-radius: 20px;
}

@media (max-width: 600px) {
  .slide-arrow { width: 38px; height: 38px; font-size: 1.4rem; }
  .lightbox-arrow { width: 44px; height: 44px; font-size: 1.6rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ============ KONTAKT — layout stránky ============ */
.contact-grid-page {
  grid-template-columns: 1fr 1.2fr;
  align-items: stretch;
}
.contact-map-page {
  height: 100%;
  min-height: 520px;
}
@media (max-width: 768px) {
  .contact-grid-page { grid-template-columns: 1fr; gap: 36px; }
  .contact-map-page { min-height: 340px; height: 340px; }
}

/* ============ PRÁVNÍ STRÁNKY (obchodní podmínky, ochrana údajů) ============ */
.legal-section { padding: 80px 0; background: var(--cream); }
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  color: #3a3a35;
  line-height: 1.7;
}
.legal-content h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: var(--forest);
  margin: 40px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.legal-content h3 {
  font-size: 1.1rem;
  color: var(--forest);
  margin: 24px 0 8px;
}
.legal-content p { margin: 12px 0; }
.legal-content ul, .legal-content ol { margin: 12px 0; padding-left: 24px; }
.legal-content li { margin: 8px 0; }
.legal-content ul ul, .legal-content ol ul {
  margin: 8px 0;
  padding-left: 22px;
  list-style: disc;
}
.legal-content a { color: var(--brass-deep); text-decoration: underline; }
.legal-date {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-style: italic;
  color: var(--sage);
}
.legal-table-wrap { overflow-x: auto; margin: 16px 0; }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.legal-table th, .legal-table td {
  border: 1px solid var(--line);
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
}
.legal-table th {
  background: var(--forest);
  color: #fff;
  font-weight: 600;
}
.legal-table tr:nth-child(even) td { background: #fff; }

@media (max-width: 600px) {
  .legal-section { padding: 50px 0; }
  .legal-content h2 { font-size: 1.3rem; margin-top: 32px; }
  .legal-content { font-size: 0.96rem; }
  .legal-table { font-size: 0.85rem; }
  .legal-table th, .legal-table td { padding: 8px 10px; }
}

/* ============ KOMPAKTNĚJŠÍ HOMEPAGE NA MOBILU (13. 7. 2026) ============ */
@media (max-width: 600px) {
  /* Menší svislé mezery mezi sekcemi */
  .intro { padding: 48px 0; }
  .why, .rooms, .restaurant, .reviews { padding-top: 48px; padding-bottom: 48px; }
  .location { padding: 48px 0; }
  .cta-strip { padding: 56px 0; }
  .section-head { margin-bottom: 30px; }

  /* Mřížky těsněji u sebe */
  .intro-grid { gap: 30px; }
  .why-grid { gap: 14px; }
  .room-grid { gap: 18px; }
  .rest-grid { gap: 30px; }
  .loc-grid { gap: 26px; }
  .review-grid { gap: 14px; }

  /* Nižší obrázky */
  .img-main img { height: 300px; }
  .room-img img { height: 175px; }

  /* Kompaktnější karty */
  .why-card { padding: 20px 18px; }
  .room-body { padding: 18px; gap: 9px; }
  .review-card { padding: 20px; }

  /* Patička — dva sloupce vedle sebe, menší mezery */
  footer { padding: 42px 0 22px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 24px 18px; padding-bottom: 24px; }
  .foot-grid > div:first-child { grid-column: 1 / -1; }
  .foot-logo { margin-bottom: 10px; }
  .foot-grid h5 { margin-bottom: 10px; }
  .foot-grid ul { gap: 7px; }
  .foot-bottom { margin-top: 20px; flex-wrap: wrap; gap: 6px; }
}

/* Recenze — menší mezera pod nadpisem na mobilu */
@media (max-width: 600px) {
  .reviews .section-head { margin-bottom: 26px !important; }
}

/* ============ AKCE — VYBAVENÍ BEZ FOTKY (13. 7. 2026) ============ */
.conf-grid.conf-grid-nofoto {
  grid-template-columns: 1fr;
  gap: 0;
}
.conf-grid-nofoto .equip-list {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 40px;
}
@media (max-width: 900px) {
  .conf-grid-nofoto .equip-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .conf-grid-nofoto .equip-list { grid-template-columns: 1fr; }
}

/* ============ KONTAKT — sekce doprava pod mapou (13. 7. 2026) ============ */
#doprava .loc-list {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 48px;
}
@media (max-width: 600px) {
  #doprava .loc-list { grid-template-columns: 1fr; gap: 20px; }
}

/* ============ PŘEPÍNAČ JAZYKŮ — odkazy (13. 7. 2026) ============ */
.nav-lang a { cursor: pointer; transition: color 0.2s; color: inherit; text-decoration: none; }
.nav-lang a.active { color: #fff; }
.nav-lang a:hover { color: #fff; }
#siteHeader.scrolled .nav-lang a.active { color: var(--ink); }
.mobile-lang a { cursor: pointer; color: inherit; text-decoration: none; }
.mobile-lang a.active { color: var(--ink); }

/* ============ ČISTŠÍ MOBILNÍ HERO + výraznější přepínač jazyků (13. 7. 2026) ============ */
@media (max-width: 600px) {
  /* Skrýt dlouhý popisný text v heru — na mobilu působí přeplácaně */
  .hero .lead { display: none; }

  /* Tlačítka symetrická: obě na plnou šířku pod sebou */
  .hero-ctas { flex-direction: column; width: 100%; gap: 10px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  /* Přepínač jazyků v mobilním menu — výraznější, s oddělovačem */
  .mobile-lang {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    gap: 0;
    font-size: 1rem;
  }
  .mobile-lang a {
    padding: 6px 16px;
    border-radius: 8px;
  }
  .mobile-lang a.active {
    background: var(--forest);
    color: #fff;
  }
}

/* ============ OPRAVA DATUMOVÝCH POLÍ NA iOS (13. 7. 2026) ============ */
/* iOS Safari přidává datumovým inputům vlastní odsazení a rozbíjí šířku — sjednotíme */
.bf-field input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  max-width: 100%;
  min-width: 0;
}
.bf-field {
  min-width: 0;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .booking-bar { box-sizing: border-box; }
  .bf-field input[type="date"] {
    width: 100%;
    text-align: left;
  }
}

/* ============ GALERIE — ošetření chybějících fotek (13. 7. 2026) ============ */
/* Pokud se fotka nenačte, místo prázdného čtverce s ikonou zobrazíme jemné pozadí */
.gal-item img {
  background: var(--cream-warm);
}
.gal-item img:not([src]),
.gal-item img[src=""] {
  visibility: hidden;
}

/* ============ ZVÝRAZNĚNÉ "REZERVOVAT" V MOBILNÍM MENU (13. 7. 2026) ============ */
.mobile-panel a.mobile-cta {
  background: var(--forest);
  color: #fff;
  text-align: center;
  border-radius: 999px;
  border-bottom: none;
  padding: 14px 0;
  margin-top: 12px;
  font-size: 1.3rem;
}
.mobile-panel a.mobile-cta:hover {
  background: var(--forest-deep);
}

/* ============ ELEGANTNÍ IKONKY U POKOJŮ NA HOMEPAGE (13. 7. 2026) ============ */
.room-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.room-meta .rm-ic {
  width: 17px;
  height: 17px;
  color: var(--brass-deep);
  flex-shrink: 0;
}

/* ============ CENÍK NA STRÁNCE POKOJE (13. 7. 2026) ============ */
@media (max-width: 700px) {
  .pricing > .container > div[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
