/* =========================
   ZÁPATÍ
========================= */

.footer {
  height: auto;
  width: 100%;
  margin-top: 80px;
}

/* horní pruh */
.footer-top {
  background-color: #000; /* černý pruh */
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #fff; /* tenká bílá čára nahoře */
}

/* přerušovaná čára přes celou šířku */
.footer-top .dashed-line {
  width: 100%; /* přes celou šířku */
  height: 2px;
  background-image: repeating-linear-gradient(
    to right,
    #fff,          /* barva čáry */
    #fff 20px,     /* délka bílé čáry */
    transparent 20px, /* mezera */
    transparent 40px   /* celková délka patternu = čára+mezera */
  );
}

/* spodní část - PC i mobil */
.footer-bottom {
  display: flex;
  flex-direction: column;   /* sloupec: logo nahoře, čára, text pod čárou */
  align-items: center;      /* centrování horizontálně */
  text-align: center;       /* text uprostřed */

  gap: 0.5rem;              /* mezera mezi logo-čára-text */
  background-color: #000;
}

/* logo */
.footer-logo {
  height: 60px;             /* PC velikost loga */
}

/* separator - vodorovná čára pro PC i mobil */
.footer-separator {
  width: 100%;          /* šířka čáry */
  height: 1px;         /* tloušťka čáry */
  background-color: #fff;
  margin: 0rem 0;    /* mezera nad a pod čárou */
}

/* text */
.footer-text {
  display: flex;
  flex-direction: row;  /* PC horizontálně */
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-text span {
  display: block;
}

/* MOBIL */
@media (max-width: 700px) {
  .footer-logo {
    height: 40px;        /* menší logo na mobil */
  }

  .footer-text {
    flex-direction: column; /* každý řádek pod sebou */
    gap: 0.25rem;
    font-size: 0.9rem;
  }
}