/* Algera – statická verze | vlastní styly
 * --------------------------------------------------
 * Sem patří jen to, co Tailwind utility třída neumí pohodlně sama:
 * vlastní třídy převzaté 1:1 z původního globals.css.
 *
 * Pozn.: vlastní barvy (algera-blue, algera-red …) a fonty (Raleway,
 * Open Sans) jsou nakonfigurované v <script> v každém .html – stačí
 * používat běžné Tailwind utility (bg-algera-blue, font-raleway …).
 */

/* ----- Menu odkazy v hlavičce ----- */
.algera-nav-link {
  position: relative;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.925rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2E3399;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.algera-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #C42948;
  transition: width 0.25s ease;
}

.algera-nav-link:hover::after {
  width: 100%;
}

.algera-nav-link:hover {
  color: #1a1f6b;
}

/* ----- Hlavní červené CTA tlačítko ----- */
.algera-btn {
  display: inline-block;
  background: #C42948;
  color: white;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  border: 2px solid #C42948;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.algera-btn:hover {
  transform: scale(1.04);
}

/* ----- Karta služby na úvodu i v přehledu ----- */
.service-card {
  background: white;
  border: 1px solid #DDE2EF;
  border-top: 3px solid #2E3399;
  border-radius: 4px 18px 4px 18px;
  padding: 2rem 1.5rem;
  transition: box-shadow 0.25s, transform 0.25s;
}

.service-card:hover {
  box-shadow: 0 8px 30px rgba(46, 51, 153, 0.12);
  transform: translateY(-3px);
}

/* ----- Karta hodnoty (sekce „Stabilita / Spolehlivost / Bezpečnost") ----- */
.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-bottom: 3px solid transparent;
  transition: border-color 0.25s;
}

.value-card:hover {
  border-color: #2E3399;
}

/* ----- Odkaz „Více →" na kartě služby ----- */
.service-more-link {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C42948;
  text-decoration: none;
  transition: color 0.2s;
}

.service-more-link:hover {
  color: #2E3399;
}
