/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Merriweather', serif;
  background-color: #f9f9f9;
  color: #4a4a4a;
  font-size: 18px;
  line-height: 1.8;
}

/* Main content */
main {
  max-width: 1200px;
  margin: 30px auto;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border-radius: 8px;
}

main h2 {
  margin-bottom: 15px;
  color: #4a4a4a;
  font-size: 2rem;
}

main h3 {
  font-size: 1.4rem;
  margin-top: 20px;
  margin-bottom: 10px;
}

main p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #444;
}

.site-header {
  background-color: #f5f5f5;
  border-bottom: 2px solid #ccc;
}

.header-inner {
  display: flex;
  justify-content: space-between; /* H1 vľavo, navigácia vpravo */
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
}

.site-title {
  font-size: 1.8rem;
  margin: auto;
  background: linear-gradient(90deg, #006699, #004466); /* gradient z farieb ikon */
  -webkit-background-clip: text;   /* použije gradient len na text */
  -webkit-text-fill-color: transparent; /* text sa vyplní gradientom */
  transition: background 0.4s ease;
}

.nav-container ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-container a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem; /* medzera medzi ikonou a textom */
}

.nav-container a i {
  font-size: 1.2rem;
  color: #006699;
}

.nav-container a:hover {
  color: #006699;
}

.nav-container a:hover i {
  color: #004466;
}

/* Desktop */
.nav-container ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.menu-toggle {
  display: none; /* skryté na desktop */
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #333;
}