body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
  background: #f5f5f5;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0077cc;
  color: white;
  padding: 1rem 2rem;
}

header .logo {
  font-weight: bold;
  font-size: 1.2rem;
}

nav a {
  color: white;
  margin-left: 1.5rem;
  text-decoration: none;
}

.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(to right, #0077cc, #2ecc71);
  color: white;
}

.hero h1 {
  font-size: 2.5rem;
}

.btn {
  display: inline-block;
  background: white;
  color: #0077cc;
  padding: 0.7rem 1.5rem;
  margin-top: 1rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.products {
  padding: 2rem;
  text-align: center;
}

.products .grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  width: 250px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.card img {
  max-width: 100%;
  border-radius: 5px;
}

.about, .contact {
  padding: 2rem;
  text-align: center;
  background: #fff;
  margin: 2rem 0;
}

.socials a {
  display: inline-block;
  margin: 0 1rem;
  text-decoration: none;
  color: #2ecc71;
  font-weight: bold;
}

footer {
  background: #0077cc;
  color: white;
  text-align: center;
  padding: 1rem;
}

/* Kontakt – layout a karty */
.contact { padding: 2rem; background: #fff; }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.contact-card, .map-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  padding: 1.5rem;
}
.contact h3 { margin-top: 0.5rem; }

/* info drobnosti */
.address { line-height: 1.6; }
.contact-list .tag {
  display: inline-block;
  min-width: 80px;
  font-weight: 600;
  color: #0077cc;
}
.contact-list a { color: #333; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

.socials-inline { margin: 1rem 0 1.25rem; }
.btn-outline {
  display: inline-block;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  border: 2px solid #2ecc71;
  text-decoration: none;
  font-weight: 600;
  margin-right: 0.75rem;
  transition: transform .05s ease, background .2s ease;
  color: #2ecc71;
}
.btn-outline:hover { background: #2ecc71; color: #fff; transform: translateY(-1px); }

/* otváracie hodiny */
.hours {
  width: 100%;
  border-collapse: collapse;
  margin: 0.5rem 0 0.25rem;
}
.hours th, .hours td {
  text-align: left;
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
}
.hours th { color: #0077cc; font-weight: 600; }
.hours td { font-variant-numeric: tabular-nums; }

.note { color: #666; font-size: 0.9rem; margin-top: 0.5rem; }

/* mapa */
.map { border-radius: 10px; overflow: hidden; box-shadow: 0 3px 14px rgba(0,0,0,0.08); }

/* responzívne */
@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; }
}

