/* Grundsätzliche Template Farben und Einstellungen */

:root {

	--cassiopeia-color-primary: #000000;
	--cassiopeia-color-link: #0000ff;
	--cassiopeia-color-hover: lightgray;

	--cassiopeia-font-family-body: "Roboto", sans-serif;
	--cassiopeia-font-family-headings: "Roboto", sans-serif;
	--cassiopeia-font-weight-headings: 700;
	--cassiopeia-font-weight-normal: 400;

	--blue: #0d6efd;
	--indigo: #6610f2;
	--purple: #6f42c1;
	--pink: #d63384;
	--red: #dc3545;
	--orange: #fd7e14;
	--yellow: #ffc107;
	--green: #198754;
	--teal: #20c997;
	--cyan: #0dcaf0;
	--white: #fff;
	--gray: #6c757d;
	--gray-dark: #343a40;
	--gray-100: #f8f9fa;
	--gray-200: #e9ecef;
	--gray-300: #dee2e6;
	--gray-400: #ced4da;
	--gray-500: #adb5bd;
	--gray-600: #6c757d;
	--gray-700: #495057;
	--gray-800: #343a40;
	--gray-900: #212529;
	--primary: #0d6efd;
	--secondary: #6c757d;
	--success: #198754;
	--info: #0dcaf0;
	--warning: #ffc107;
	--danger: #dc3545;
	--light: #f8f9fa;
	--dark: #212529;
	--primary-rgb: 13, 110, 253;
	--secondary-rgb: 108, 117, 125;
	--success-rgb: 25, 135, 84;
	--info-rgb: 13, 202, 240;
	--warning-rgb: 255, 193, 7;
	--danger-rgb: 220, 53, 69;
	--light-rgb: 248, 249, 250;
	--dark-rgb: 33, 37, 41;
	--white-rgb: 255, 255, 255;
	--black-rgb: 0, 0, 0;
	--body-color-rgb: 33, 37, 41;
	--body-bg-rgb: 255, 255, 255;
	--font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	--gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
	--body-font-family: var(--cassiopeia-font-family-body);
	--body-font-size: 1.2rem;
	--body-font-weight: 400;
	--body-line-height: 1.5;
	--body-color: #383838;
	--body-bg: #ffffff;
	--blog-background: #e6e6e6;
	--first_article_blog_background: #d7e990;
}


/* Breite der Artikel an Header anpassen */
@supports (display:grid) {
  .site-grid > [class^="container-"], .site-grid > [class*=" container-"] {
    column-gap: 1em;
    width: 93%;
    max-width: 92%;
  }
}



/* Formatierungen für den Header */

.header {
	background:none;
}
/* Formatierung des Bereichs neben dem Logo*/

@media (width >= 656px) {
.moduletable.nebenlogo  {
  width: 100%;
  color: var(--body-color);
  font-size: xx-large;
	padding-top: 85px;
}
}
@media (width < 656px) {
.moduletable.nebenlogo  {
  width: 100%;
  color: var(--body-color);
  font-size: large;
	padding-top: 35px;
}
}

/* Die Schrift unter dem Headerbild */
.container-header .site-description {
  color: var(--body-color);
  white-space: normal;
  font-size: 1rem;
}

/* Die Schrift des Menues im rsp. gleich unter dem Header */

.mod-menu li:hover > ul {
  display: block !important;
}

.container-header .mod-menu {
  color: var(--body-color);
  flex: 1 0 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  /*font-size: 1.6rem;*/
  font-weight: 500;
}

.metismenu.mod-menu .metismenu-item {
  flex-wrap: wrap;
  align-items: center;
  padding: .5em 1em;
  font-size: 1.5rem;
  line-height: 1.5;
  display: flex;
	margin-left: 0px;
}

@media (width >= 992px) {
  .container-header .metismenu > li.level-1.active > a, .container-header .metismenu > li.level-1.active > button, .container-header .metismenu > li.level-1 > a:hover, .container-header .metismenu > li.level-1 > button:hover {
    text-decoration: underline;
  }
}
@media (width >= 656px) {
  .container-header .mod-menu > li + li {
    margin-left: 1.5em;
  }
}


/* Die Position des Menus unter dem Header*/
.container-header .container-nav {
  flex-wrap: wrap;
  justify-content: flex-start;
  padding-bottom: 1em;
  border-bottom-style: solid;
}
}

/* Das Dropdown-Menu im Menu färbst du mit der Klasse .metismenu.mod-menu .mm-collapse ein */

.metismenu.mod-menu .mm-collapse {
	background: #ffffff;
}

/* Die Links im Dropdown Menu musst du dann auch einzeln ansteuern */
.metismenu.mod-menu .mm-collapse .metismenu-item a {
	color: var(--body-color);
}

/* Module haben die Klasse card, man steuert sie also mit .card an - wenn du nur ein bestimmtes Modul ansteuern willst, kannst du dem Modul in den Einstellungen eine eigene CSS Klasse geben und dann damit ansteuern  */

.card {
	box-shadow: 12px 4px 18px 0px rgba(0,0,0,0.35);
	-webkit-box-shadow: 12px 4px 18px 0px rgba(0,0,0,0.35);
	-moz-box-shadow: 12px 4px 18px 0px rgba(0,0,0,0.35);
}

/* Module sind auf verschiedenen Modulpositionen im Cassiopeia Template bekommen dann die Module zusätzlich zu card auch die Position als Klassennamen, zum Beispiel main-top - wenn du also alle Module auf Main Top ändern möchtest, nimmst du .main-top.card */

.main-top.card {
	background: #e1e9f5;
}

/*----*/
.blog-items[class^="masonry-"] .blog-item, .blog-items[class*=" masonry-"] .blog-item {
  page-break-inside: avoid;
  break-inside: avoid;
  margin-bottom: 1em;
  display: inline-flex;
  background-color: var(--blog-background);
  padding: 10px;
  border-radius: 10px;
}

.blog-items.items-leading.home_blog_first_article {
  background-color: var(--first_article_blog_background);
  border-radius: 10px;
  padding: 10px;
}

/* Überschriften sind html Elemente, die Hauptüberschrift ist eine h1, dann kommt h2, h3, h4 usw. Ein html Element steuerst du an indem du einfach den Namen davorschreibst */

h1 {
	/* text-shadow: 2px 2px 8px rgba(150, 150, 150, 1);
	color: rgba(119,9,121,1); */
}

/* In Joomla haben die meisten Buttons die Klasse btn-primary - im Element Inspektor kannst du nachsehen ob der Button, den du einfärben willst wirklich diese Farbe hat.
*/

.btn-primary {
	background: rgba(119,9,121,1);
}

/* Wenn du etwas einfärben möchtest, nur wenn man mit der Maus drüber fährt dann schreibst du :hover dahinter
*/

.btn-primary:hover {
	background: rgba(0,212,255,1);
}

/* In Joomla haben alle Beitragsbilder die Klasse item-image, wenn du nur ein bestimmtes Bild einsteuern möchtest, dann muss du dem Bild im Beitrag eine eigene CSS Klasse geben.
*/

.item-image {
/*	border: 2px solid #ff0000;*/
}


/*Laufen dir auf der Webseite icons über den Weg kannst du diese einzeln einfärben*/

.icon-user {

}

/* oder du färbst mit dieser besonderen Anweisung alle Icon ein*/

.fa, .fas, [class*=" icon-"], [class^="icon-"] {
	color: #403678;
}

/* Der Seitenfuß von Cassiopeia hat die Klasse "footer" du steuerst diese also mit .footer an */

.footer {
	/*background: rgb(2,0,36);*/
	/* background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(119,9,121,1) 35%, rgba(0,212,255,1) 100%);*/
	background: none;
}

/* Die Farbe des menues im Footer */
.footer a:not(.btn), .footer .btn-link {
  color: var(--body-color);
}

.footer a:not(.btn):hover, .footer a:not(.btn):focus, .footer .btn-link:hover, .footer .btn-link:focus {
  color: var(--body-color);
}

.mod-list li {
  padding: .25em 0;
  margin-left: 1.5em;
}

/* Positiom Footer*/

.footer .grid-child {
  justify-content: center;
  align-items: center;
  padding: 2.5rem .5em;
	border-top-style: solid;
  border-top-color: black;
}

.mod-menu {
  flex-direction: row;
}

/* Formate für das Berichtstemplate */
.berichtsauthor {
  font-size: 0.7rem;
}
@media (width >= 768px) {
  .col-md-8 {
    flex: none;
    width: 66.6667%;
    padding-right: 20px;
  }
}

@media (width >= 768px) {
  .col-md-4 {
    flex: none;
    width: 33.3333%;
    padding: 20px;
  }
}

.bildbericht {
  padding: 20px;
}

.bildbeschreibung {
  font-size: 0.9rem;
  margin-top: -15px;
}
