/* File: pohledy/css/rozlozeni.css */

/* globální box‐model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* === HLAVIČKA === */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #333;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  z-index: 100;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-link {
  flex-shrink: 0;
}
.logo {
  height: 50px;
  width: auto;
  display: block;
}
.site-title {
  margin: 0 20px;
  font-size: 1.8em;
  color: rgb(158, 214, 73);
  white-space: nowrap;
}
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  gap: 20px;
}
.site-nav a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.2s;
}
.site-nav a:hover {
  color: rgb(158, 214, 73);
}

/* === HLAVNÍ OBSAH === */
/* sem patří vaše oNas, galerie aj. */

/* === PATIČKA === */
footer {
  background: #222;
  color: #ccc;
  padding: 40px 20px;
  font-size: 1em;
  border-top: 3px solid rgb(158, 214, 73);
  text-align: center;
}
footer h2 {
  color: rgb(158, 214, 73);
  font-size: 1.6em;
  margin-bottom: 30px;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}
.footer-column {
  min-width: 220px;
  text-align: center;
}
.footer-column p {
  margin: 8px 0;
}
footer a {
  color: rgb(158, 214, 73);
  text-decoration: none;
  font-weight: bold;
}
footer a:hover {
  text-decoration: underline;
}

/* === RESPONZIVITA === */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .site-title {
    font-size: 1.5em;
    margin: 0;
  }
  .site-nav ul {
    flex-direction: column;
    gap: 10px;
  }
}