@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600&display=swap');


body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #fff;
    color: #333;
  }
  

  /* Galerie - horní obrázek s logem */
.gallery-header {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
  }
  
  .gallery-header .header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .gallery-header .header-overlay {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.64);
    padding: 10px;
    border-radius: 8px;
  }
  
  .gallery-header .header-logo {
    max-width: 200px;
  }


  #map {
    width: 100%;
    height: 400px;
  }


  .kontakt-info {
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .kontakt-info h2 {
    font-size: 28px;
    color: #8B0000;;
    margin-bottom: 10px;
  }
  
  .kontakt-info h3 {
    font-size: 22px;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  
  .kontakt-info p {
    font-size: 16px;
    line-height: 1.6;
    margin: 5px 0;
  }
  
  .kontakt-info a {
    color: #e74c3c;
    text-decoration: none;
  }
  
  .kontakt-info a:hover {
    text-decoration: underline;
  }
  
  .kontakt-info ul {
    list-style: none;
    padding: 0;
  }
  
  .kontakt-info ul li {
    font-size: 16px;
    line-height: 1.6;
  }

  main {
    font-family: 'Outfit', sans-serif;
  }



  /* === RESPONSIVITA TABLET (max-width: 1024px) === */
@media screen and (max-width: 1024px) {
  .gallery-header {
    height: 300px;
  }

  .header-logo {
    max-width: 160px;
    width: 125px;
  }

  .navbar ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .navbar li {
    margin: 5px 10px;
  }


  .kontakt-info {
    padding: 0 20px;
    text-align: center;
  }
}


/* === RESPONSIVITA MOBIL (max-width: 768px) === */
@media screen and (max-width: 768px) {
  .gallery-header {
    height: 200px;
  }

  .header-logo {
    max-width: 120px;
  }

  .navbar ul {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .navbar li {
    margin: 5px 0;
  }

  .navbar a {
    font-size: 14px;
    padding: 8px 12px;
  }

  .kontakt-info {
    padding: 10px 20px;
    font-size: 15px;
    text-align: center;
  }

  .kontakt-info h2,
  .kontakt-info h3 {
    font-size: 20px;
    margin-top: 20px;
  }

    #map {
    height: 250px;
    margin: 20px;
    width: 90vw;
    border-radius: 5px;
  }


}

  