/* CELÁ STRÁNKA */
body {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  background: #f4f0e9;
  color: #76448e !important;
  line-height: 1.6;
}

/* KONTEJNER (STŘED STRÁNKY) */
.container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 20px;
}

/* LOGO */
.logo {
  width: 120px;
  margin-bottom: 20px;
}

/* GALERIE */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 40px;
}

/* OBRÁZKY - ČTVEREC */
.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* KONTAKT */
.contact {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(43, 27, 74, 0.2);
}

/* VĚTŠÍ OBRAZOVKY */
@media (min-width: 600px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}