:root {
  --text: #222;
  --line: #dadada;
  --brand: #184f38;
  --max: 1160px;
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(rgba(10, 14, 12, 0.62), rgba(10, 14, 12, 0.62)), url("../media/images/bluete.jpg") center center / cover no-repeat fixed;
}
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
.hero { min-height: 210px; background: transparent; color: #fff; position: relative; }
.hero-inner { max-width: var(--max); margin: 0 auto; min-height: 210px; padding: 24px 18px 10px; position: relative; }
.branding { display: flex; align-items: center; gap: 16px; }
.branding img { width: 88px; height: auto; display: block; filter: saturate(.82) brightness(.94) contrast(1.02); }
.brand-text h1 { margin: 0; font-size: clamp(1.2rem, 2.2vw, 2rem); line-height: 1.2; text-shadow: 0 2px 8px rgba(0,0,0,.35); }
.brand-text p { margin: 6px 0 0; color: #e6e6e6; }
.topnav { margin-top: 16px; background: linear-gradient(180deg, rgba(13, 35, 27, .92) 0%, rgba(12, 24, 30, .84) 100%); border: 1px solid rgba(118,186,151,.26); border-radius: 14px; padding: 8px 10px; box-shadow: 0 8px 24px rgba(0, 0, 0, .24); }
.topnav ul { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.topnav a { color: #e9f5ef; display: block; padding: 8px 12px; border-radius: 999px; font-size: .94rem; border: 1px solid rgba(120,190,154,.22); background: rgba(255,255,255,.03); white-space: nowrap; }
.topnav a:hover, .topnav a.is-active { background: rgba(118, 186, 151, .22); border-color: rgba(151,214,184,.5); color: #fff; text-decoration: none; }
.section { max-width: var(--max); margin: 18px auto; background: rgba(255,255,255,.97); border: 1px solid var(--line); border-radius: 14px; padding: 18px; box-shadow: 0 10px 34px rgba(0,0,0,.15); }
.section h2 { margin: 2px 0 12px; color: #173f2f; }
.section h3 { margin: 0 0 10px; }
.content { font-size: 1rem; line-height: 1.56; }
.block, .hint { background: #fff; border: 1px solid #e4e4e4; border-radius: 12px; padding: 14px 16px; margin: 0 0 12px; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 10px; }
.card { border: 1px solid #e3e7e9; background: #fcfefe; border-radius: 10px; padding: 12px; }
.hint-warning { border-left: 5px solid #b07a00; }
.hint-info { border-left: 5px solid #2e6e57; }
table { width: 100%; border-collapse: collapse; }
th, td { border-bottom: 1px solid #ddd; padding: 10px; text-align: left; }
.map { width: 100%; min-height: 320px; border: 0; border-radius: 10px; }
.btn { display: inline-block; background: #1f6247; color: #fff; padding: 10px 14px; border-radius: 10px; text-decoration: none; }
footer { max-width: var(--max); margin: 14px auto 30px; color: #f0f0f0; text-align: center; font-size: .95rem; }
@media (max-width: 760px) {
  .branding { align-items: flex-start; }
  .branding img { width: 68px; }
}
