@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;
}

/* 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;
  display: block;
}

main {
  font-family: 'Outfit', sans-serif;
}

/* Kontakt box */
.kontakt-info {
  padding: 28px;
  margin: 20px auto;
  max-width: 1000px;
  background-color: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

.kontakt-info h2 {
  font-size: 28px;
  color: #8B0000;
  margin-bottom: 24px;
  text-align: center;
}

.kontakt-info h3 {
  font-size: 22px;
  color: #333;
  margin-top: 28px;
  margin-bottom: 16px;
}

.kontakt-info p {
  font-size: 16px;
  line-height: 1.7;
  margin: 10px 0;
}

.kontakt-info a {
  color: #e74c3c;
  text-decoration: none;
}

.kontakt-info a:hover {
  text-decoration: underline;
}

/* oteviraci doba */
.opening-hours {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
}

.opening-hours li {
  font-size: 16px;
  line-height: 1.6;
  padding: 10px 0;
  border-bottom: 1px solid #d7d7d7;
}

.opening-hours li:last-child {
  border-bottom: none;
}

iframe {
  display: block;
  width: 100%;
  border: 0;
}

/* Tablet */
@media screen and (max-width: 1024px) {
  .gallery-header {
    height: 300px;
  }

  .gallery-header .header-logo {
    max-width: 160px;
    width: 125px;
  }

  .kontakt-info {
    margin: 20px;
    padding: 24px;
  }
}

/* Mobil */
@media screen and (max-width: 768px) {
  .gallery-header {
    height: 200px;
  }

  .gallery-header .header-logo {
    max-width: 120px;
  }

  .kontakt-info {
    margin: 16px;
    padding: 18px;
  }

  .kontakt-info h2 {
    font-size: 24px;
  }

  .kontakt-info h3 {
    font-size: 20px;
  }

  .kontakt-info p,
  .opening-hours li {
    font-size: 15px;
  }

  iframe {
    height: 300px;
  }
}