@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

body {
    font-family: 'Red Hat Display', sans-serif;
    letter-spacing: 1px;
}

.custom-link-1 {
    color: #434597; /* Modrá barva */
}

.navbar-nav .nav-link {
    font-weight: 600;                   /* tloušťka: 400=normal, 700=bold, 600=semibold */
    color: #434597 !important;          /* barva textu */
    text-transform: uppercase;          /* volitelné – velká písmena */
  }
  
.navbar-nav .nav-link:hover {
    color: #3698d3 !important;          /* barva při přejetí myší */
  }


.navbar .container-fluid {
  padding-left: 0;
}


.navbar-brand {
  margin-left: 0;
  padding-left: 0;
}

nav a {
    display: inline-block;
    margin-left: 40px;
    font-weight: 400;
}

nav a:hover {
    color: #7c97f6;
}

A {
    COLOR: #ffffff;
    FONT-SIZE: 12pt;
    FONT-WEIGHT: 300;
    TEXT-DECORATION: none;
}

A:hover {
    COLOR: #7c97f6;
    FONT-SIZE: 12pt;
    FONT-WEIGHT: 300;
    TEXT-DECORATION: none;
}

.header {
    background: rgb(255, 255, 255);
}


.vcenter {
    display: flex;
    align-items: center;
}

.hcenter {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

article {
    background: white;
}

.top {
    background-image: url(../img/top.jpg);
    background-attachment: local;
    background-position: left;
    background-size: cover;
    padding-bottom: 120px;
    padding-top: 120px;
}

.field-dark {
    background: #1587cf;
    color: rgb(37, 37, 37);
    padding-bottom: 50px;
    padding-top: 50px;
}


.logo {
    background: #ffffff;
    color: rgb(37, 37, 37);
    padding-bottom: 50px;
    padding-top: 50px;
}

.web {
    background: #f4f9ff;
    color: rgb(255, 255, 255);
    padding-bottom: 70px;
    padding-top: 70px;
}


footer {
    background: #223a76;
    padding-bottom: 50px;
    padding-top: 50px;
}

.btn-burger {
    display: none;
}

.shadow {
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.3);
}

.textpole {
    border-radius: 30px;
    padding: 30px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.modry-sloupec {
  background-color: #ffffff;
  color: #fff;
  border-radius: 40px;
  text-align: center;

  /* vnitřní odsazení */
  padding-top: 30px !important;
  padding-bottom: 30px !important;
  padding-left: 50px !important;
  padding-right: 50px !important;
}

#web img {
  display: block;
  width: 95%;
  margin: 0 auto 50px auto; /* nahoře 0, po stranách automaticky, dole 30px */
}

#tisk img {
  display: block;
  width: 95%;
  margin: 0 auto 50px auto; /* nahoře 0, po stranách automaticky, dole 30px */
}

.custom-toggler {
  border: none !important;
  box-shadow: none;
  outline: none;
  background: none;
  padding: 0;
}

.custom-toggler:focus {
  outline: none !important;
  box-shadow: none !important;
}

.custom-toggler-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 38px;
  height: 32px;
  transition: all 0.3s ease; /* plynulý přechod */
}

/* Jednotlivé čárky */
.custom-toggler-icon .bar {
  display: block;
  height: 5px;
  width: 100%;
  background-color: #223a76;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

/* 🚨 Hover efekt – změní barvu čárek */
.custom-toggler:hover .bar {
  background-color: #1587cf; 
}

.image-wrapper {
  position: relative;
  width: 100%;
  display: block; /* wrapper přesně obalí obrázek */
}

.image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 40px; /* volitelné zaoblení rohů */
}

.overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%; /* overlay přesně přes obrázek */
  background-color: rgba(21, 135, 207, 1); /* poloprůhledný pruh */
  color: #fff;
  text-align: center;
  padding: 10px 0;
  border-radius: 0 0 40px 40px; /* dolní rohy kopírují obrázek */
}

.overlay-text p {
  margin: 0;
  line-height: 1.2;
}

.service-box img {
  width: 120px; /* velikost ikonky, uprav dle potřeby */
  height: auto;
  display: block;
  margin: 0 auto 10px auto; /* centrování a mezera pod ikonou */
}