/*
 * WEDOS Group — Global Styles
 * styles.css · v1.0.0
 *
 * Pokryté třídy:
 * - Utility bar (util-link)
 * - Navigace (nav-btn, nav-link, nav-item, dropdown-panel)
 * - Produkty v dropdownu (prod-item, prod-icon, prod-img, prod-name, prod-desc)
 * - Buttony (btn-primary, btn-contact)
 * - Sekce (label-blue, section-label)
 * - Mobilní menu (mob-group, mob-group-label, mob-item, mob-link, mob-active, mob-cta, mob-prod-label)
 * - Jazyky (lang-btn, lang-btn-active, lang-opt, lang-opt-active)
 * - Footer (footer-label, footer-link, footer-badge, footer-legal)
 * - Misc (font-sora, arrow-link)
 */

/* ═══════════════════════════════════════════
   PROMĚNNÉ
═══════════════════════════════════════════ */
:root {
  --dark:        #0C0933;
  --dark-mid:    #172554;
  --blue:        #2563EB;
  --blue-hover:  #1D4ED8;
  --blue-light:  #EFF6FF;
  --text:        #0F172A;
  --muted:       #475569;
  --neutral:     #E3E6EA;
  --surface:     #F8FAFC;
  --white:       #FFFFFF;
  --r:           8px;
  --font-sora:   'Sora', system-ui, -apple-system, sans-serif;
  --font-inter:  'Inter', system-ui, -apple-system, sans-serif;
}

/* ═══════════════════════════════════════════
   UTILITY BAR
═══════════════════════════════════════════ */
.util-link {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.15s;
}
.util-link:hover {
  color: #ffffff;
}

/* ═══════════════════════════════════════════
   NAVIGACE
═══════════════════════════════════════════ */
.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
}
.nav-btn:hover {
  color: #ffffff;
}

.nav-link {
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover {
  color: #ffffff;
}

/* Dropdown panel */
.dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid var(--neutral);
  border-radius: var(--r);
  box-shadow: 0 10px 30px rgba(12, 9, 51, 0.12);
  padding: 8px;
  z-index: 100;
  min-width: 200px;
}
.group:hover .dropdown-panel {
  display: block;
}

/* Dropdown navigační položky */
.nav-item {
  display: block;
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.15s;
  white-space: nowrap;
}
.nav-item:hover {
  background: var(--blue-light);
  color: var(--text);
}

/* Dropdown šířky */
.dp-products  { min-width: 380px; }
.dp-solutions { min-width: 240px; }
.dp-company   { min-width: 220px; }
.dp-resources { min-width: 220px; }
.dp-lang      { min-width: 180px; right: 0; left: auto; transform: none; }

/* ═══════════════════════════════════════════
   PRODUKTY V DROPDOWNU
═══════════════════════════════════════════ */
.prod-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--text);
  transition: background 0.15s;
}
.prod-item:hover {
  background: var(--blue-light);
}

.prod-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--neutral);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.prod-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.prod-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.prod-desc {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════
   BUTTONY
═══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: #ffffff !important;
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--r);
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--blue-hover);
  color: #ffffff !important;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: rgba(255, 255, 255, 0.8) !important;
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-decoration: none !important;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn-contact:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff !important;
}

/* ═══════════════════════════════════════════
   SEKCE — LABELY
═══════════════════════════════════════════ */
.label-blue {
  font-family: var(--font-inter);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

/* ═══════════════════════════════════════════
   MOBILNÍ MENU
═══════════════════════════════════════════ */
.mob-group {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mob-group:last-child {
  border-bottom: none;
}

.mob-group-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.mob-item {
  display: block;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.15s;
}
.mob-item:hover {
  color: #ffffff;
}

.mob-link {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.15s;
}
.mob-link:hover {
  color: #ffffff;
}

.mob-active {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mob-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  background: var(--blue);
  color: #ffffff !important;
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 24px;
  border-radius: var(--r);
  text-decoration: none !important;
  transition: background 0.15s;
}
.mob-cta:hover {
  background: var(--blue-hover);
}

.mob-prod-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 6px;
}

/* ═══════════════════════════════════════════
   JAZYKOVÝ PŘEPÍNAČ (v dropdownu)
═══════════════════════════════════════════ */
.lang-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.15s;
}
.lang-opt:hover {
  background: var(--blue-light);
}

.lang-opt-active {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-radius: 6px;
  background: var(--blue-light);
}

/* Jazykový přepínač v mobilním menu */
.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: all 0.15s;
}
.lang-btn:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.lang-btn-active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background: var(--blue);
  border: 1px solid var(--blue);
  text-decoration: none;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer-label {
  font-family: var(--font-inter);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
}

.footer-link {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-link:hover {
  color: #ffffff;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 2px 8px;
}

.footer-legal {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-legal:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ═══════════════════════════════════════════
   MISC
═══════════════════════════════════════════ */
.font-sora {
  font-family: var(--font-sora) !important;
}

.arrow-link {
  transition: gap 0.15s;
}
.arrow-link:hover {
  gap: 10px !important;
}