/* Základní reset a font */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: #fff;
  color: #000;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HLAVIČKA */
header {
  background: #e30613;
  color: white;
  padding: 1rem 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header h1 {
  margin: 0;
  font-size: 1.8rem;
}

nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* HERO sekce */
.hero {
  background: #f7f7f7;
  padding: 4rem 0;
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
}

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

/* SLUŽBY */
.services {
  padding: 3rem 0;
  background: #fff;
  text-align: center;
}

.services h3 {
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.services ul {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
}

.services li {
  margin: 0.75rem 0;
}

/* PATIČKA */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
}

/* RESPONSIVITA */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }

  nav {
    flex-direction: column;
    gap: 1rem;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
