#about-us {
  max-width: 100%;
  overflow-x: hidden;
  background-color: #fdf5e5;
  }
  
  #about-us h2 {
    font-family: 'Roboto', Courier, monospace;
    color: #64460e;
    font-size: 2.5rem;
    font-weight: 700;
  }

  #about-us p {
    font-family: 'Roboto', Courier, monospace;
    color: #0c0c0b;
    font-size: 1.5rem;
  }

  #about-us img {
    max-width: 300px;
    transition: transform 0.3s ease;
  }
  
  #about-us img:hover {
    transform: scale(1.1);
  }
  
  #about-us p.lead {
    font-size: 1.2rem;
    color: #6c757d;
  }


  /* ========================= */
/* NAVBAR                    */
/* ========================= */

.navbar {
  height: 8vh;
  background-color: #DDC9B4;
  padding: 0.5rem;
  display: flex;
  align-items: center; /* Zarovná obsah vertikálně */
  justify-content: center; /* Zarovná obsah horizontálně */
  position: relative;
}

.navbar-brand img {
  width: 50px;
  position: absolute;
  left: 1rem; /* Logo zarovnané vlevo */
  top: 50%; /* Pro umístění ve středu výšky */
  transform: translateY(-50%); /* Zarovnání přesně uprostřed */
}

.offcanvas-body {
  display: flex;
  justify-content: center; /* Zarovná tlačítko Home na střed */
}

.nav-link {
  color: #4C2719;
  font-weight: 700;
  font-family: 'Roboto', Courier, monospace;
  font-size: 1.5rem;
  text-align: center;
  position: relative;
}

.nav-link:hover {
  color: #946846;
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: brown;
  visibility: hidden;
  transition: 0.1s ease-in-out;
}

.nav-link:hover::before {
  width: 100%;
  visibility: visible;
}

.navbar-toggler,
.btn-close {
  border: none;
  font-size: 1.25rem;
  box-shadow: none;
  outline: none;
}

.hero-section {
  margin-top: 8vh; 
}



#kontakt .row:last-child {
  display: flex;
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
  text-align: center; 
}

#kontakt .fab {
  margin: 0 15px; 
  transition: transform 0.3s ease-in-out; 
}

#kontakt .fab:hover {
  transform: scale(1.2); 
  color: #946846; 
}

h5{
  color: #64460e;
  font-size: 1.5rem;
}

footer{
  background-color: #fdf5e5;
}

  