/* Modern Green Theme */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #333;
  background-color: #e9f6e1; /* světle zelené pozadí */
  font-family: "Segoe UI", "Roboto", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

/* Odkazy */
a {
  text-decoration: none;
  color: #8AC75A;             /* hlavní zelená – stejná jako nadpisy */
  font-weight: 500;
  transition: color 0.3s, text-decoration 0.3s;
}
a:hover {
  color: #2e7d32;             /* tmavší kontrastní zelená */
  text-decoration: underline; /* zvýraznění při hoveru */
}

/* Nadpisy */
h1, h2, h3 {
  font-weight: 600;
  margin-bottom: 0.5em;
  color: #2f3e2c;
}

h2 {
  font-size: 20px;
  border-left: 6px solid #8AC75A;
  padding-left: 10px;
  margin-top: 1.5em;
  margin-bottom: 0.8em;
}

h1.small {
  font-size: 18px;
  color: #2e7d32;
  text-align: right;
}

p {
  margin-bottom: 1.2em;
  text-align: justify;
}

/* Seznamy */
ul, ol {
  padding-left: 20px;
  margin: 0;              /* odstranění mezery pod seznamy */
  padding-bottom: 0;
}
ul li, ol li {
  list-style-type: disc;
  color: #2f3e2c;
}

/* Layout */
#container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

#header {
  background: #8AC75A;
  color: white;
  padding: 20px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#logo h1 {
  color: white;
  font-size: 24px;
}

#navcontainer {
  margin-top: 15px;
}

#navlist {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  padding: 0;
}
#navlist li {
  display: inline;
}
#navlist a {
  color: white;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}
#navlist a:hover,
#navlist li.active a {
  background: #2e7d32;   /* tmavší kontrastní zelená */
  color: #fff;
}

/* Content */
#content {
  background: #fff;
  border-radius: 8px;
  padding: 25px;
  margin-top: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Footer */
#footer {
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: #666;
  margin-top: 40px;
  border-top: 1px solid #ddd;
}
