/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 24 2026 | 13:02:17 */
/* --- 1. ZÁKLADNÉ NASTAVENIE A FARBY --- */
:root {
  --blue:       #01578C;
  --blue-dark:  #013f66;
  --blue-light: #0169a8;
  --teal:       #1ab8a0;
  --teal-dark:  #0e8f7a;
  --bg-blue:    #e6f0f7;
  --bg-blue2:   #f0f7fc;
  --bg-teal:    #e6faf7;
  --text-main:  #1a2530;
  --text-mid:   #3d4e5a;
  --text-soft:  #7a8e9a;
  --white:      #ffffff;
  --border:     rgba(1,87,140,0.12);
}

*, *::before, *::after { box-sizing: border-box; }

/* --- 2. HERO SEKCIA (OBNOVENÁ, VYSOKÝ KONTRAST) --- */
.hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #017a8c 60%, var(--teal) 100%);
  color: var(--white); 
  padding: 72px 24px 64px; 
  text-align: center; 
  position: relative; 
  overflow: hidden;
}
.hero-inner { 
  position: relative; 
  max-width: 720px; 
  margin: 0 auto; 
}
.hero-tag {
  display: inline-block; 
  background: rgba(255,255,255,0.15); 
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.92); 
  font-size: 12px; 
  font-weight: 500; 
  letter-spacing: 0.08em;
  text-transform: uppercase; 
  padding: 5px 14px; 
  border-radius: 20px; 
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Merriweather', serif; 
  font-size: clamp(26px, 5vw, 40px); 
  font-weight: 700;
  line-height: 1.25; 
  margin-bottom: 16px; 
  color: var(--white);
}
.hero h1 span { 
  color: #7fe8d8; 
}
.hero-sub { 
  font-size: 16px; 
  color: rgba(255,255,255,0.82); 
  max-width: 560px; 
  margin: 0 auto 28px; 
  line-height: 1.7; 
}
.hero-cta {
  display: inline-block; 
  background: var(--teal); 
  color: var(--white); 
  font-size: 15px;
  font-weight: 600; 
  padding: 13px 28px; 
  border-radius: 6px; 
  text-decoration: none; 
  transition: background 0.2s;
}
.hero-cta:hover { 
  background: var(--teal-dark); 
}

/* --- 3. NAVIGÁCIA (CHIPS) --- */
.nav-anchors { 
  background: var(--bg-blue2); 
  border-bottom: 1px solid var(--border); 
  padding: 16px 24px; 
  position: sticky; top: 0; z-index: 1000; 
  display: flex; justify-content: center; 
  box-shadow: 0 4px 12px rgba(1, 87, 140, 0.05);
  -ms-overflow-style: none; scrollbar-width: none;
}
.nav-anchors::-webkit-scrollbar { display: none; }
.nav-anchors-inner { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.nav-anchor {
  display: inline-block; padding: 8px 16px; font-size: 13px; font-weight: 500;
  color: var(--blue); background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; text-decoration: none; transition: all 0.2s ease; white-space: nowrap;
}
.nav-anchor:hover { 
  color: var(--white); background: var(--blue); border-color: var(--blue); 
  box-shadow: 0 4px 8px rgba(1, 87, 140, 0.2); 
}

/* --- 4. INTRO TEXT (ZAROVNANIE DOĽAVA) --- */
.intro { 
  padding: 48px 24px; 
  display: flex; justify-content: center; 
  background: var(--bg-blue2); 
  border-bottom: 1px solid var(--border); 
}
.intro-inner { max-width: 800px; width: 100%; text-align: left; }
.intro p { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.intro p:last-child { margin-bottom: 0; }
.intro strong { color: var(--blue-dark); font-weight: 600; }

/* --- 5. SEKCIE A KARTY DIAGNÓZ --- */
.section { max-width: 1140px; margin: 0 auto; padding: 52px 24px; }
.section-head { text-align: center; margin-bottom: 36px; }
.section-eyebrow { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal-dark); margin-bottom: 10px; }
.section-head h2 { font-family: 'Merriweather', serif; font-size: clamp(20px, 3.5vw, 26px); font-weight: 700; color: var(--blue-dark); line-height: 1.3; margin-bottom: 10px; }
.section-head p { font-size: 16px; color: #3d4e5a; max-width: 620px; margin: 0 auto; line-height: 1.6; }

.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.diag-card { 
  background: var(--white); border: 1px solid var(--border); border-radius: 12px; 
  padding: 28px; display: flex; flex-direction: column; height: 100%; transition: box-shadow 0.3s, transform 0.2s;
  position: relative; overflow: hidden;
}
.diag-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--blue),var(--teal)); opacity:0; transition:opacity 0.2s;
}
.diag-card:hover { box-shadow: 0 10px 20px rgba(1,87,140,0.1); transform: translateY(-2px); }
.diag-card:hover::before { opacity:1; }
.card-title { font-family: 'Merriweather', serif; font-size: 16px; font-weight: 700; color: #013f66; margin-bottom: 16px; line-height: 1.4; margin-top: 0; }

.card-desc { 
  font-size: 16px; /* NOVÝ VZHĽAD: Väčší text pre pohodlné čítanie */
  color: #1a2530; /* NOVÝ VZHĽAD: Maximálny kontrast pre pacientov */
  line-height: 1.7; 
  flex: 1; 
  margin-bottom: 20px; 
}

/* --- 6. SYMPTÓMY (NÁVRAT K PÔVODNÉMU JEMNÉMU ŠTÝLU) --- */
.card-symptoms { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; border-top: 1px solid var(--border); padding-top: 16px; }
.symptom-tag { 
  font-size: 11px; /* Pôvodná menšia veľkosť */
  background: #eef5fa; 
  color: #01578c; /* Pôvodná svetlejšia modrá */
  padding: 4px 10px; 
  border-radius: 20px; 
  font-weight: 500; /* Pôvodná stredná hrúbka */
  white-space: nowrap; 
}
.symptom-tag { 
  font-size: 12px; /* Zväčšené písmo */
  color: #013f66; /* Výrazne tmavšia modrá pre špičkový kontrast */
  background: #eef5fa; 
  padding: 5px 11px; /* Mierne zväčšený vnútorný priestor */
  border-radius: 20px; 
  font-weight: 600; /* Tučnejšie písmo pre lepšiu čitateľnosť */
  white-space: nowrap; 
}

/* --- 7. TLAČIDLÁ --- */
.card-actions { display: flex; gap: 8px; margin-top: auto; }
.btn-primary { 
  flex: 1; background: var(--teal); color: var(--white); font-size: 13px; font-weight: 600; 
  padding: 10px 12px; border-radius: 6px; text-decoration: none; text-align: center; transition: background 0.2s;
}
.btn-primary:hover { 
	background: #06405c; /* Tmavomodrá farba zo screenshotu */
  color: #ffffff; /* Biely text */ }
.btn-secondary { 
  flex: 1; background: transparent; color: var(--blue); font-size: 13px; font-weight: 500; 
  padding: 9px 12px; border-radius: 6px; text-decoration: none; text-align: center; border: 1px solid var(--border); transition: background 0.2s, border-color 0.2s;
}
.btn-secondary:hover { background: var(--bg-blue); border-color: var(--blue); }
.section-divider { border: none; border-top: 1px solid var(--border); margin: 0 24px; }

/* --- 8. BOTTOM CTA --- */
.bottom-cta { 
  background: linear-gradient(135deg, var(--blue-dark) 0%, #017a8c 60%, var(--teal) 100%); 
  padding: 56px 24px; text-align: center; color: var(--white); 
}
.bottom-cta h2 { font-family: 'Merriweather', serif; font-size: clamp(20px, 3vw, 28px); font-weight: 700; margin-bottom: 12px; color: var(--white); }
.bottom-cta p { font-size: 15px; color: rgba(255,255,255,0.82); margin-bottom: 28px; max-width: 550px; margin: 0 auto; }
.bottom-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: white; color: var(--blue-dark); padding: 13px 28px; border-radius: 6px; text-decoration: none; font-weight: 600; transition: opacity 0.2s; }
.btn-white:hover { opacity: 0.9; }
.btn-outline-white { background: transparent; color: white; padding: 12px 28px; border-radius: 6px; border: 1.5px solid rgba(255,255,255,0.5); text-decoration: none; transition: border-color 0.2s, background 0.2s; }
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.08); }

/* --- 9. MOBILNÁ RESPONSIVITA --- */
@media(max-width:600px){
  .nav-anchors { position: relative; padding: 12px 16px; }
  .nav-anchors-inner { gap: 6px; }
  .nav-anchor { padding: 6px 12px; font-size: 12px; white-space: normal; text-align: center; }
  .cards-grid { grid-template-columns: 1fr; }
  .card-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { flex: none; width: 100%; }
}