/*-- Schriften --------------------------------------------------------------*/
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/Poppins-Regular.ttf');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/Poppins-SemiBold.ttf');
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/Oswald-Light.ttf');
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: bold;
  src: url('../fonts/Oswald-Bold.ttf');
}


/*-- Farben -----------------------------------------------------------------*/
:root               {
  --ciColDark:          #222222;  /* black      , rgb: 34, 34, 34; hsl: 0, 0% 13% */
  --ciColBright:        #f5b822;  /* ocher      */
  --ciColBrightAlt:     #f29039;  /* orange     */
  --ciColStandard:      #dfdfdf;  /* light gray */
  --ciColStandardAlt:   #c1c9c4;  /* dark gray  , rgb: 193, 201, 196; hsl: 143, 7% 77% */

  --ciFontStandard: 'Poppins', sans-serif;
  --ciFontAlt:      'Oswald', sans-serif;
}
.ciNavbar-bg-color { background-color: var(--ciColStandard); }
.ciBgDark          { background-color: var(--ciColDark);        color: white; }
.ciBgBright        { background-color: var(--ciColBright);      color: var(--ciColDark); }
.ciBgBrightAlt     { background-color: var(--ciColBrightAlt);   color: var(--ciColDark); }
.ciBgStandard      { background-color: var(--ciColStandard);    color: var(--ciColDark); }
.ciBgStandardAlt   { background-color: var(--ciColStandardAlt); color: var(--ciColDark); }
.ciColDark         { color: var(--ciColDark) !important ; }
.ciColBright       { color: var(--ciColBright); }
.ciColBrightAlt    { color: var(--ciColBrightAlt); }

.ciBg5050Bright    { background:       linear-gradient(to right, var(--ciColBright) 50%, var(--ciColBrightAlt) 50%);}
.ciBgGradient      { background-image: linear-gradient(to right, var(--ciColBright), var(--ciColBrightAlt));}
.ciBg5050BrightAlt { background:       linear-gradient(to right, var(--ciColBrightAlt) 50%, var(--ciColBright) 50%);}
.ciBgGradientAlt   { background-image: linear-gradient(to right, var(--ciColBrightAlt), var(--ciColBright));}


/*-- globale Einstellungen  -------------------------------------------------*/
body { font-family: var(--ciFontStandard), Arial, Helvetica, sans-serif; 
       background-color: var(--ciColStandard);    color: var(--ciColDark);}
/* .container        { max-width: 960px; } */
.font-weight-bold { font-weight: 600 !important; }
.ciFontAlt        { font-family: var(--ciFontAlt); }


/* Link Farben */
a           { color: var(--ciColDark); }
.ciBgDark a { color: white; }
a:hover     { color: var(--ciColBrightAlt); }
/* Sonderfall leaflet ---------------------------*/
a .leaflet-control-zoom-in { color: var(--ciColDark); }
.leaflet-bar a, .leaflet-control-attribution a { color: var(--ciColDark); }

.ciMxWidthHome     { max-width: 400px; }
.ciMxWidthStandard { max-width: 450px; }

.ciBgLeft  { width: 50%; background-color: var(--ciColBrightAlt); }
.ciBgRight { width: 50%; background-color: var(--ciColBrightAlt); }


/*-- Navigation -------------------------------------------------------------*/
/* hamburger */
.navbar-toggler                             { font-size: 1.5rem; }
/*-- animated hamburger -----------------------------------------------------*/
/* https://stackoverflow.com/questions/71952260/bootstrap-5-animated-hamburger-starting-off-as-x */
.navbar-toggler span {
  display: block;
  background-color: var(--ciColDark);
  height: 3px;
  width: 25px;
  margin-top: 5px;
  margin-bottom: 5px;
  position: relative;
  left: 0;
  opacity: 1;
  transition: all 0.35s ease-out;
  transform-origin: center left;
}
.navbar-toggler span:nth-child(1)                 { transform: translate(0%, 0%) rotate(0deg); }
.navbar-toggler span:nth-child(2)                 { opacity: 1; }
.navbar-toggler span:nth-child(3)                 { transform: translate(0%, 0%) rotate(0deg); }
.navbar-toggler span:nth-child(1)                 { margin-top: 0.3em; }
.navbar-toggler:not(.collapsed) span:nth-child(1) { transform: translate(15%, -33%) rotate(45deg); }
.navbar-toggler:not(.collapsed) span:nth-child(2) { opacity: 0; }
.navbar-toggler:not(.collapsed) span:nth-child(3) { transform: translate(15%, 33%) rotate(-45deg); }
/* the border around the hamburger when clicked: */
.navbar-light .navbar-toggler                     {   color: var(--ciColDark); }
/*-- animated hamburger end -------------------------------------------------*/

.navbar-light .navbar-toggler               { border-color: transparent; }
.navbar-toggler, .navbar-toggler:focus, .navbar-toggler:active 
                                     { outline: none; }
/* previous line removes dotted outline when focused or active */

.ciNavbar-bg-color { background-color: var(--ciColStandard); }
.navbar-light .navbar-nav .nav-link,
.navbar .nav-link, .navbar .navbar-brand        { color: var(--ciColDark);   /* background-color: white; */}
.navbar-light .navbar-nav .nav-link.active      { color: var(--ciColBrightAlt);            /* background-color: #c5c6c6; */ }
.navbar-nav li a:hover, .navbar-nav li.active a { color: var(--ciColBrightAlt) !important; /* background-color: #c5c6c6 !important; */ }


/*-- hero image -------------------------------------------------------------*/
.container-fluid.wide { max-width: 1920px;}
.imageWrapper   { position: relative;
                  width: 100%;
									min-height: 210px;
									overflow: hidden; }
@media screen and (min-width: 768px) {
.imageWrapper { min-height: 450px; } }


.ciHeroBg            { background-color: rgba(34, 34, 34, 0.6) !important; }
.ciHeroImgText {
  position: absolute;
  top: 45%;
  left: 30%;
  transform: translate(-30%, -50%);
  color: white;
  font-size: 1.5em;
}
.ciHeroAnimation {
	background-color: transparent;
	color: transparent;
	opacity: 0;
/* animation */        animation-duration: 3.5s;
                       animation-delay: 0s;
                       animation-fill-mode: forwards;
                       animation-timing-function: ease-out;
                       animation-name: ciHeroAnimKeyFrames;
}
@media (min-width:768px) { .ciHeroImgText { font-size: 2em; left: 35%;} }
@keyframes ciHeroAnimKeyFrames { 
			     0%     { opacity: 0; left: 55%; } 
				 100%     { opacity: 1; left: 30%; }
}
/* -- animated box within hero image -- end ---------------------------------*/


/* ChatGPT Prompt: wie kann um ein Icon von fontawesome einen Kreis machen? */
.icon-circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ciColBrightAlt); /* Kreisfarbe */
  color: var(--ciColDark);        /* Iconfarbe */
  font-size: 9px;
}
.icon-circle-footer {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ciColBrightAlt); /* Kreisfarbe */
  color: white;        /* Iconfarbe */
  font-size: 17px;
}
.icon-square {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
/*  border-radius: 20%; */
  border: 2px solid var(--ciColBrightAlt);
  background: transparent; /* Kreisfarbe */
  color: white;        /* Iconfarbe */
  font-size: 14px;
}


/* -- Kontakt ---------------------------------------------------------------*/
.leaflet-popup-content {
  margin: 3px 19px;
}
.ciMap { height: 400px;
         width: 278px; 
         margin: 0 auto; 
				 background-image: url("../images/defaultmap.bw.560x400.jpg"); }
.ciMapMaxSize { max-width: 14em; }
@media screen and (min-width: 768px) {
.ciMap { width: 400px; } }
@media screen and (min-width: 992px) {
.ciMap { width: 560px; 
         margin: 0 0; }
.ciMapMaxSize { max-width: 25em; } }

.ciBtnEtxLink       { color: var(--ciColDark) !important ;
                      background-color: rgba(0,0,0,.05); }
.ciBtnEtxLink:hover { color: var(--ciColBrightAlt) !important ;
                      background-color:  var(--ciColStandard); }
.ciBtnMap           { color: white;
                      background-color: var(--ciColBrightAlt);
                      border-color:transparent; } 
.ciBtnMap:hover     { color: var(--ciColBrightAlt);
                      background-color: var(--ciColStandard); }
.ciBgBrightAlt:hover { color: white; }












.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}


