/* Import font from Google - Go to fonts.google.com, select a font and look for the import command */

:root {

    --cassiopeia-color-primary: #20B6E9;
    --cassiopeia-color-link: #FE3642;
    --cassiopeia-color-hover: #FFDD00;

    --cassiopeia-font-family-body: "Roboto", sans-serif;
    --cassiopeia-font-family-headings: "Roboto", sans-serif;
    --cassiopeia-font-weight-headings: 500;
    --cassiopeia-font-weight-normal: 300;

    --blue: #49C1EA;
    --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(47, 24, 24, 0.15), rgba(248, 249, 250, 100));
    --body-font-family: var(--cassiopeia-font-family-body);
    --body-font-size: 1.5rem;
    --body-font-weight: 400;
    --body-line-height: 1.3;
    --body-color: #383838;
    --body-bg: #efefef;
}


/* Use font on the page: On Google you can also find the CSS instruction for using the font. If you put this in the body element then the font will be used on the whole website. */

body {
    font-family: 'Roboto', sans-serif;
    color: var(--gray-900);
    text-shadow: 2px 2px 8px rgba(150, 150, 150, 1);
}

.header {
    background: linear-gradient(180deg,  rgb(248, 249, 250, 100), rgba(255, 221, 0, 100)); /*gba(239, 239, 239, 1);*/
    opacity: 1.0;
    color: var(--gray-900);
}

.container-header .site-description {
    font-family: 'Roboto', sans-serif;
    color: var(--gray-900);
    text-shadow: 2px 2px 8px rgba(150, 150, 150, 1);
    font-size:  1rem;
  }
}

.grid-child .container-nav {
   margin: 0;
}
.container-nav .metismenu-item  {
    text-shadow: 2px 2px 8px rgba(150, 150, 150, 1);
    color: var(--gray-900);

}


/* KategroierenBild*/
.blog-items img {
    border: 2px solid rgba(239, 239, 239, 1);
    border-radius: 25px;
    /*clip-path: circle(30%);*/
    /*border-radius: 80%;*/
  }

.blog-items img:hover {
    filter: grayscale(1)
  }

/*Bild Content */
.blog img {
    border: 2px solid rgba(239, 239, 239, 1);
    border-radius: 25px;

  }

.contact-categoryKontakt img {
     /*border-radius: 25px;*/
     clip-path: circle(50%);
}

.contact-categoryKontaktVorstand img {
     /*border-radius: 25px;*/
     clip-path: circle(50%);
}
.contact-categoryKontakt img:hover {
    filter: grayscale(1)
}
/* The page footer of Cassiopeia has the class "footer" so you control it with .footer */

.footer {
    font-size:  0.5em;
    color: var(--gray-900); 
    background: linear-gradient(180deg,  rgb(248, 249, 250, 100), rgba(255, 221, 0, 100));
    /* Import font from Google - Go to fonts.google.com, select a font and look for the import command */
}


.container-footer {
    font-size:  0.5em;
    color: var(--gray-900); 
    background: linear-gradient(180deg,  rgb(248, 249, 250, 100), rgba(255, 221, 0, 100));
    /* Import font from Google - Go to fonts.google.com, select a font and look for the import command */
}


.image-overlay-container {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.image-overlay-container img {
  display: block;
  width: 100%;
  height: auto;
}

/* --- Overlay --- */
.image-overlay-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);   /* dunkler Halbtransparent */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Hover Effekt */
.image-overlay-container:hover .overlay {
  opacity: 1;
}

/* Text Styling */
.image-overlay-container .overlay-title {
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  padding: 10px;
}
