:root {
  --bg-dark: #121212;
  --text-light: #f0f0f0;
  --text-secondary: #cccccc;
  --accent: #7a9550;
  --accent-soft: #8fa77b;
  --radius: 8px;
}
body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: "Inter", "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}
.container {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}
.header-content .site-name {
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  color: var(--text-light);
  font-weight: 700;
  text-shadow: 1px 1px 2px #000;
  margin: 0;
  line-height: 1.2;
}
p.site-name {
  margin: 0;
}
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #1c1c1c;
  padding: 10px 15px;
  border-bottom: 1px solid #2a2a2a;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
}
.header-content .logo {
  width: 36px;
  height: auto;
}
.header-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.header-title {
  font-size: 2.2em;
  font-weight: 700;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
h2 {
  font-size: 1.4em;
  text-align: center;
  margin-bottom: 25px;
  color: var(--text-light);
}
h2 a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
h2 a:hover {
  color: var(--accent-soft);
  text-decoration: underline;
}
.breadcrumbs {
  background-color: #222;
  padding: 10px 15px;
  border-radius: var(--radius);
  font-size: 0.95em;
  margin-bottom: 20px;
}
nav.breadcrumbs a {
  color: var(--text-secondary);
  text-decoration: none;
}
nav.breadcrumbs span {
  color: #aaa;
}
.section-title {
  font-size: 1.5em;
  color: var(--accent-soft);
  text-align: center;
  margin: 30px 0 15px;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent);
  margin: 10px auto 0;
  border-radius: 2px;
}
.intro-text {
  text-align: center;
  margin-top: -10px;
  margin-bottom: 25px;
  font-size: 1em;
  color: var(--text-secondary);
}
.images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  justify-items: center;
  max-width: 700px;
  margin: 0 auto 30px;
}
.images-grid a {
  text-decoration: none;
  color: inherit;
  text-align: center;
}
.images-grid img {
  width: 100%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: var(--radius);
  transition: transform 0.3s ease;
}
.images-grid a:hover img {
  transform: scale(1.05);
  border: 1px solid #ccc;
}
.caption {
  margin-top: 5px;
  font-size: 0.9em;
  color: var(--text-secondary);
}
.small-hr {
  width: 60%;
  margin: 15px auto;
  border: 1px solid var(--accent);
}
.logo-final {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}
.logo-footer {
  max-width: 300px;
  height: auto;
  opacity: 0.9;
}
footer.footer {
  background-color: #1a1a1a;
  color: var(--text-light);
  text-align: center;
  padding: 20px 0;
  margin-top: 30px;
}
.footer a {
  color: var(--accent-soft);
  text-decoration: none;
  font-weight: 600;
  margin: 0 6px;
}
.footer a:hover {
  text-decoration: underline;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 10px 0;
}
.footer-links a {
  background-color: transparent;
  border: 1px solid var(--accent-soft);
  color: var(--accent-soft);
  padding: 6px 14px;
  text-decoration: none;
  font-size: 0.95em;
  border-radius: var(--radius);
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.footer-links a:hover {
  background-color: var(--accent-soft);
  color: #000;
  transform: scale(1.05);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
}
@media (max-width: 600px) {
  .header-title {
    font-size: 1.6em;
    padding: 0 10px;
  }
  .section-title {
    font-size: 1em;
  }
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .images-grid {
    grid-template-columns: 1fr !important;
  }
  .images-grid img {
    max-width: 100%;
  }
  .header-content .logo {
    width: 28px;
  }
  .header-content .site-name {
    font-size: 1.2em;
  }
  p {
    font-size: 0.95em;
    line-height: 1.4em;
  }
}
@media (hover: hover) {
  .images-grid a:hover img {
    transform: scale(1.05);
  }
}
