/* === Reset & základy === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:   #c9893a;
  --orange-d: #a8701e;
  --green:    #1e4d3b;
  --green-d:  #142e23;
  --red-notice: #c0000a;
  --green-l:  #e8f4f0;
  --cream:    #faf8f5;
  --dark:     #1a2e20;
  --text:     #374151;
  --muted:    #6b7280;
  --white:    #ffffff;
  --light:    #f9fafb;
  --border:   #e5e7eb;
  --red:      #b91c1c;
  --radius:   10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

a { color: inherit; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === Notice bar === */
.notice-bar {
  background: var(--red-notice);
  color: var(--white);
  font-size: .85rem;
  font-weight: 500;
  padding: .5rem 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  position: relative;
}

.notice-close {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--white);
  line-height: 1;
  opacity: .8;
}
.notice-close:hover { opacity: 1; }

/* === Header === */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.navbar {
  background: var(--green);
}

/* Horní lišta */
.header-topbar {
  background: rgba(30, 77, 59, 0.97);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  gap: 1rem;
}

.topbar-sep { color: rgba(255,255,255,.35); margin: 0 .2rem; }

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

/* Hlavní nav lišta */

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 1rem;
}

.nav-cta { flex-shrink: 0; }

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-badge {
  width: 42px;
  height: 42px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.logo-badge.small { width: 34px; height: 34px; font-size: .85rem; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-weight: 700;
  font-size: .95rem;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo-sep { color: rgba(255,255,255,.5); margin: 0 .3rem; }
.logo-city { font-size: .75rem; color: rgba(255,255,255,.65); letter-spacing: 2px; text-transform: uppercase; }

/* Status */
.open-status-nav {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.85);
  flex-shrink: 0;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-red { background: #ef4444; }
.dot-green { background: #22c55e; }

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 0;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  display: block;
  padding: 0 1.1rem;
  height: 56px;
  line-height: 56px;
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .3px;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }

.header-phone, .header-email {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: color .2s;
}
.header-phone:hover, .header-email:hover { color: var(--white); }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-mobile {
  display: none;
  list-style: none;
  flex-direction: column;
  background: var(--green-d);
  padding: .5rem 0 1rem;
  text-align: center;
  gap: .3rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: .65rem 1rem;
  display: block;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-weight: 500;
}
.nav-mobile .btn { margin: .5rem 1.5rem 0; display: block; }

@media (max-width: 900px) {
  .nav-links, .open-status-nav, .header-phone, .header-email { display: none; }
  .hamburger { display: block; }
}

/* === Tlačítka === */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: .9rem;
  padding: .6rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
}
.btn-orange:hover { background: var(--orange-d); transform: translateY(-1px); }

.btn-outline-white {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-outline-white:hover { background: rgba(255,255,255,.2); }

.btn-green {
  background: var(--green);
  color: var(--white);
}
.btn-green:hover { background: var(--green-d); }

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline-green:hover { background: var(--green); color: var(--white); }

.btn-lg { font-size: 1rem; padding: .85rem 2.2rem; }

/* === Hero === */
.hero {
  position: relative;
  background: url('hero.jpg') center/cover no-repeat;
  color: var(--white);
  min-height: 88vh;
  display: flex;
  flex-direction: column;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,45,28,.65) 0%, rgba(20,45,28,.5) 50%, rgba(15,35,20,.75) 100%);
}

.hero-body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem 3rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(180, 150, 100, 0.25);
  border: 1px solid rgba(200, 170, 120, 0.45);
  color: rgba(230, 205, 160, 0.95);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: .45rem 1.2rem;
  border-radius: 999px;
  margin-bottom: 2rem;
}

.hero-badge::before {
  content: '•';
  color: rgba(210, 175, 115, 0.9);
  font-size: .9rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero h1 .clinic-name {
  display: block;
  color: var(--orange);
  font-style: italic;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  padding: .45rem 1rem;
  border-radius: 999px;
  font-size: .88rem;
  color: rgba(255,255,255,.9);
}

.hero-notice {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(185,28,28,.75);
  border-radius: 999px;
  padding: .4rem 1rem;
  font-size: .82rem;
  color: var(--white);
  margin-top: .5rem;
}

/* Info lišta dole v hero */
.hero-info-bar {
  position: relative;
  z-index: 1;
  background: rgba(20,35,25,.7);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255,255,255,.1);
}

.hero-info-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1.2rem 2rem;
  border-right: 1px solid rgba(255,255,255,.1);
  color: var(--white);
}

.hero-info-item:last-child { border-right: none; }

.hero-info-icon { font-size: 1.2rem; opacity: .7; flex-shrink: 0; }

.hero-info-label {
  font-size: .7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: .1rem;
}

.hero-info-value {
  font-size: .92rem;
  font-weight: 600;
  color: var(--white);
}

@media (max-width: 640px) {
  .hero-info-inner { grid-template-columns: 1fr; }
  .hero-info-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
}

/* === Sekce === */
.section { padding: 5rem 1.5rem; }
.section.alt { background: var(--cream); }

.section-label {
  display: inline-block;
  background: var(--green-l);
  color: var(--green);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.section-intro {
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 3rem;
  font-size: 1rem;
}

/* === O nás === */
.onas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .onas-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.onas-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  object-fit: cover;
  max-height: 480px;
}

.onas-text .section-label { margin-bottom: 1rem; }
.onas-text h2 { margin-bottom: 1rem; }
.onas-text > p { color: var(--muted); margin-bottom: 1.5rem; font-size: 1rem; }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  margin-top: 1.5rem;
}

.feature-card {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .9rem 1rem;
}

.feature-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: .05rem; }
.feature-card h3 { font-size: .88rem; font-weight: 700; color: var(--dark); margin-bottom: .2rem; }
.feature-card p { font-size: .8rem; color: var(--muted); }

/* === Služby === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  border-color: var(--green);
}

.service-icon-box {
  width: 52px;
  height: 52px;
  background: var(--green-l);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--green);
}

.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--green); margin-bottom: .45rem; }
.service-card p { font-size: .88rem; color: var(--muted); line-height: 1.6; }

.equipment-box {
  background: var(--green-l);
  border: 1px solid #c6dfc9;
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
}

.equipment-box strong { color: var(--green-d); display: block; margin-bottom: .8rem; font-size: .95rem; }

.equipment-box ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: .4rem .5rem;
}

.equipment-box li { font-size: .88rem; color: var(--green-d); font-weight: 500; }

/* === Tým === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 640px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}

.team-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }

.team-photo { width: 100%; height: 220px; object-fit: cover; display: block; }

.team-info { padding: 1.3rem 1.4rem; }
.team-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: .2rem; }
.team-role { font-size: .82rem; color: var(--orange); font-weight: 600; margin-bottom: .65rem; }
.team-bio { font-size: .87rem; color: var(--muted); }

/* === Galerie === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-wide { grid-column: 1 / -1; }

.gallery-item { margin: 0; border-radius: var(--radius); overflow: hidden; }

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}

.gallery-wide img { height: 320px; }
.gallery-item:hover img { transform: scale(1.03); }

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-wide { grid-column: auto; }
}

/* === FAQ === */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: .5rem; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.1rem 1.5rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background .2s;
  font-family: 'Inter', sans-serif;
}

.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--orange); font-weight: 400; flex-shrink: 0; transition: transform .2s; }
.faq-question[aria-expanded="true"] { background: var(--green-l); }
.faq-question[aria-expanded="true"]::after { transform: rotate(45deg); }

.faq-answer { display: none; padding: 0 1.5rem 1.1rem; font-size: .92rem; color: var(--muted); line-height: 1.7; }
.faq-answer.open { display: block; }
.faq-answer a { color: var(--green); text-decoration: underline; }

/* === Kontakt === */
.contact-label {
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.contact-h2 {
  text-align: center;
  color: var(--green);
  margin-bottom: 3.5rem;
}

.contact-card-main {
  background: var(--green);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

@media (max-width: 700px) {
  .contact-card-main { grid-template-columns: 1fr; }
}

.contact-left {
  padding: 3rem;
  border-right: 1px solid rgba(255,255,255,.12);
}

@media (max-width: 700px) {
  .contact-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); padding: 2rem; }
}

.contact-right { padding: 3rem; }

@media (max-width: 700px) { .contact-right { padding: 2rem; } }

.contact-section-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.contact-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(201,137,58,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-section-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(255,255,255,.5);
}

.contact-address { margin-bottom: 1.5rem; }

.contact-street {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.contact-city {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1.2;
}

.contact-phone-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: .4rem;
  transition: opacity .2s;
}
.contact-phone-link:hover { opacity: .8; }

.contact-email-link {
  display: block;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: opacity .2s;
}
.contact-email-link:hover { opacity: .8; }

.contact-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
  padding: .55rem 1.2rem;
  border-radius: 999px;
  transition: background .2s;
}
.contact-nav-btn:hover { background: rgba(255,255,255,.2); }

.hours-box {
  background: rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  margin-bottom: .8rem;
}

.hours-day-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--orange);
  margin-bottom: .8rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: .4rem;
}

.hours-period { font-size: .88rem; color: rgba(255,255,255,.65); }
.hours-time { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--white); }
.hours-pause { opacity: .5; }
.hours-time-small { font-size: .82rem; color: rgba(255,255,255,.45); }

.hours-closed {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 1rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .8rem;
  font-size: .88rem;
  color: rgba(255,255,255,.4);
}

.hours-notice-box {
  background: var(--red-notice);
  border-radius: 16px;
  padding: .9rem 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .8rem;
  color: var(--white);
  line-height: 1.5;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.1);
  height: 360px;
  margin-bottom: 1.5rem;
}

.billing-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem 2rem;
}

.billing-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.billing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 640px) { .billing-grid { grid-template-columns: 1fr 1fr; } }

.billing-key { font-size: .72rem; color: var(--muted); margin-bottom: .25rem; }
.billing-val { font-size: .9rem; color: var(--dark); font-weight: 500; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--green-l);
  border: 1px solid #c6dfc9;
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-card h3 { font-size: 1rem; font-weight: 700; color: var(--green-d); margin-bottom: 1rem; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: .45rem .3rem; font-size: .9rem; color: var(--dark); border-bottom: 1px dashed #c6dfc9; }
.hours-table td:last-child { text-align: right; font-weight: 600; }
.hours-table tr.closed td { color: var(--muted); font-style: italic; }

.contact-items { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: .9rem; align-items: flex-start; }
.contact-icon { font-size: 1.3rem; flex-shrink: 0; }
.contact-item strong { display: block; font-size: .8rem; color: var(--muted); margin-bottom: .1rem; text-transform: uppercase; letter-spacing: .5px; }
.contact-item p { font-size: .95rem; color: var(--dark); }
.contact-item a { color: var(--green); text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }

.contact-actions { display: flex; gap: .8rem; flex-wrap: wrap; }

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.1);
  height: 400px;
}

/* === Footer === */
footer {
  background: var(--green-d);
  color: rgba(255,255,255,.6);
  padding: 2rem 1.5rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-logo { display: flex; align-items: center; gap: .75rem; }
.footer-name { color: var(--white); font-weight: 600; font-size: .92rem; }
.footer-meta { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: .1rem; }

.footer-links { list-style: none; display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .86rem; transition: color .2s; }
.footer-links a:hover { color: var(--white); }

.footer-copy { font-size: .8rem; color: rgba(255,255,255,.4); }

@media (max-width: 640px) {
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
