

/*————————————————————————————————————————————————————————————————————————————————————————————————*/
/* PATICKA                                                         															  */
/*————————————————————————————————————————————————————————————————————————————————————————————————*/


/* Zaklad paticky ————————————————————————————————————————————————————————————————————————————————*/
footer {
  padding: 2.5rem 0 1.5rem 4rem;
  background: #1f2937; 
  color: white; 
}

.footer-content {
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  margin-bottom: 1.5rem;
  display: grid;
  gap: 3rem;
}

.footer-description {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #9ca3af; 
}

.footer-column {
  margin-top: 1rem;
  display: flex; 
  gap: 1rem;
}

.footer-column a {
  transition: all 0.3s ease;
  font-size: 1.3rem;
  color: #9ca3af;
}

.footer-column a:hover {
  transform: translateY(-3px);
  color: #33bebb;
}

.footer-h3 {
  margin-bottom: 1.25rem;
  margin-top: 1.25rem;
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 600; 
}

.footer-list {
  list-style: none; 
}

.footer-list li {
  margin-bottom: 0.7rem;
}

.footer-list li a {
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  font-size: 0.95rem;
  color: #9ca3af; 
}

.footer-list li a:hover {
  transform: translateX(5px);
  color: #33bebb;
}

/* Provozovatel ——————————————————————————————————————————————————————————————————————————————————*/
.footer-operator-block {
  margin: 1.5rem 0rem;
}

.footer-operator {
  max-width: 800px;
}

.footer-operator-title {
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 600;
}

.footer-operator p {
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #9ca3af;
}

.footer-operator strong {
  color: #ffffff;
  font-weight: 600;
}

/* Copyright —————————————————————————————————————————————————————————————————————————————————————*/
.footer-copyright {
  border-top: 1px solid #374151;
  justify-content: space-between;
  padding-top: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  gap: 1rem;
}

.footer-copyright p {
  font-size: 0.875rem;
  color: #6b7280; 
  margin: 0;
}

.footer-copyright-links {
  font-size: 0.875rem;
  display: flex; 
  gap: 1.75rem; 
}

.footer-copyright-links a {
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  color: #9ca3af; 
}

.footer-copyright-links a:hover {
  color: #33bebb;
}

.footer-copyright-links a::after {
  transition: width 0.3s ease;
  background: #33bebb;
  position: absolute;
  bottom: -2px;
  content: '';
  height: 1px;
  width: 0;
  left: 0;
}

.footer-copyright-links a:hover::after {
  width: 100%;
}


/* Responzivita ——————————————————————————————————————————————————————————————————————————————————*/

/* max-width: 1024px */
@media (max-width: 1024px) { 
	.footer-copyright-links {
		margin-top: 1rem;
		flex-direction: column;
		gap: 1rem;
	}
}

/* max-width: 992px */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

/* max-width: 576px */
@media (max-width: 576px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* max-width: 380px */
@media (max-width: 380px) {
	.footer-content, .footer-copyright{
	  margin: 0rem 0.5rem;
	}

	.footer-copyright{ 
    margin-top: 1.75rem;
	}
}