/* SAB Sportanglerbund Voecklabruck - Theme fuer Projekt Irrseekarte
   Marke sab.at: Navy #031326, Gold #C7BE26, Gold-dunkel #b6ad15, Creme #f0efe7
   WICHTIG: keine doppelten Anfuehrungszeichen verwenden - Lizmap entfernt sie
   beim Ausliefern des CSS. url() unquoted lassen. */

/* Farbvariablen des Default-Themes auf die SAB-Marke umbiegen.
   Faerbt Kopfleiste, Navigation, Akzente und Bedienelemente konsistent. */
:root {
  --header-color: #031326;
  --color-contrasted-elements: #C7BE26;
  --color-contrasted-elements-light: #f0efe7;
  --color-contrasted-text: #ffffff;
  --color-dark-gray-elements: #031326;
}

/* Kopfleiste: Navy mit goldener Trennlinie */
#header {
  background-color: #031326;
  border-bottom: 3px solid #C7BE26;
}

/* Logo links oben (SAB-Emblem) */
#logo {
  background-image: url(/index.php/view/media/getMedia?repository=irrsee&project=Irrseekarte&path=media%2Fthemes%2FIrrseekarte%2Fcss%2F/img/SAB-Logo-small.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 65px;
  height: 65px;
}

/* Projekttitel weiss, Repository-Untertitel gold */
#title h1 {
  color: #ffffff;
}
#title h2,
#title h2 a {
  color: #C7BE26;
}

/* Kleiner Copyright-Hinweis unter dem Titel.
   Per ::after eingeblendet (kein HTML-Zugriff noetig).
   ACHTUNG: nur einfache Anfuehrungszeichen - Lizmap entfernt doppelte. */
#title::after {
  content: '© 2026 by gwids.at';
  display: block;
  clear: both;
  font-size: 1em;
  font-weight: normal;
  line-height: 1.5em;
  letter-spacing: 4px;
  color: #C7BE26;
  margin-top: 2px;
}

/* Auf schmalen/mobilen Screens ist im Header kein Platz - Copyright ausblenden. */
@media screen and (max-width: 767px) {
  #title::after {
    display: none;
  }
}

/* Navigation: Text weiss, aktiver/hover Eintrag in Gold */
#headermenu.navbar .nav > li > a {
  color: #ffffff;
}
#headermenu.navbar .nav .active > a,
#headermenu.navbar .nav > li > a:focus,
#headermenu.navbar .nav > li > a:hover {
  background-color: #C7BE26;
  color: #031326;
}

/* Suchfeld-Button und aktive Werkzeuge in Gold statt Petrol */
.navbar .nav .dropdown-menu {
  background-color: #f0efe7;
}

/* Login-/Connect-Button nur im ausgeloggten Zustand ausblenden.
   li.login existiert ausschliesslich bei anonymen Besuchern; sobald man
   angemeldet ist, steht dort das Nutzermenue - das bleibt unveraendert.
   Anmeldung ist weiter ueber den Direktlink /admin.php/auth/login moeglich. */
#headermenu .nav li.login {
  display: none;
}

/* Footer unten rechts: 3Liz-Logo durch GWIDS-Bildmarke ersetzen,
   'Powered by 3Liz' als Text, darunter Copyright (fett).
   #attribution-box ist ein Flex-Container. Logo als Hintergrund links,
   die zwei Textzeilen als ::before/::after untereinander. */
#attribution-box img {
  display: none;
}
#attribution-box {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 38px;
  background-image: url(/index.php/view/media/getMedia?repository=irrsee&project=Irrseekarte&path=media%2Fthemes%2FIrrseekarte%2Fcss%2F/img/gwids-logo.png);
  background-repeat: no-repeat;
  background-position: 4px center;
  background-size: 26px auto;
}
#attribution-box::before {
  content: 'Powered by 3Liz';
  order: 1;
  font-size: 10px;
  line-height: 1.35;
  color: #031326;
  white-space: nowrap;
}
#attribution-box::after {
  content: '© 2026 by gwids.at';
  order: 2;
  font-size: 10px;
  line-height: 1.35;
  font-weight: bold;
  letter-spacing: 1px;
  color: #031326;
  white-space: nowrap;
}
/* OL-Attributions-Toggle (›) nicht zwischen die Textzeilen rutschen lassen */
#attribution-ol {
  order: 3;
}
