@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
}

.general_adminwindow {
  width: 100dvw;
  height: 100dvh;
  display: flex;
}
.general_adminwindow #admin_leftpanel {
  width: 18dvw;
  height: 100%;
  background-color: bisque;
}
.general_adminwindow #admin_leftpanel #sfr_logo_area {
  height: 7dvh;
}
.general_adminwindow #admin_leftpanel #sfr_logo_area img {
  width: 100%;
}
.general_adminwindow #admin_leftpanel #admin_mainmenu_list {
  height: 93dvh;
  width: 100%;
}
.general_adminwindow #admin_leftpanel #admin_mainmenu_list .menu_part {
  height: 5dvh;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.general_adminwindow #admin_leftpanel #admin_mainmenu_list .menu_part a.active {
  color: blue;
}
.general_adminwindow #admin_leftpanel #admin_mainmenu_list .menu_part a:link {
  text-decoration: none;
  color: lightseagreen;
}
.general_adminwindow #admin_leftpanel #admin_mainmenu_list ul {
  list-style-type: none;
  line-height: 1;
}
.general_adminwindow #admin_leftpanel #admin_mainmenu_list .borderboth {
  border-top: 2px dashed lightskyblue;
  border-bottom: 2px dashed lightskyblue;
}
.general_adminwindow #admin_leftpanel #admin_mainmenu_list .borderbottom {
  border-bottom: 2px dashed lightskyblue;
}
.general_adminwindow #normalmenulink ul {
  list-style-type: none;
  line-height: 1;
}
.general_adminwindow #admin_mainpanel {
  width: 82dvw;
  height: 100%;
}
.general_adminwindow #admin_mainpanel .admin_content {
  height: 100%;
  width: 100%;
  padding: 10px;
}

.standardliste {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

/* ---- Span Markierungen ---- */
.stats_number {
  padding: 5px;
  border-radius: 15%;
  background-color: lightseagreen;
  color: white;
}

.nosight {
  display: none;
}

.input_label {
  padding: 5px;
}

/* ---- Effekte ---- */
.box_shadow {
  box-shadow: 0 12px 16px 0 rgba(19, 26, 21, 0.24), 0 17px 50px 0 rgba(83, 248, 89, 0.19);
}

.box_shadow:hover {
  box-shadow: 0 12px 30px 0 rgba(1, 93, 29, 0.24), 0 17px 50px 0 rgba(2, 121, 12, 0.19);
}

/* ---- Effekte ---- */
/* ---- Formatierungen für Artikel ---- */
.text_liststyle ul {
  list-style-type: none;
  line-height: 1;
}

.success {
  background-color: green;
}

/* ---- CSS-Texteffekte ---- */
.hover-shift {
  font-size: 2.5rem;
  font-weight: bold;
  transition: color 0.3s ease;
  cursor: pointer;
}

.hover-shift:hover {
  color: #ff6a00;
  text-shadow: 0 0 5px #ff6a00;
}

.animated-gradient {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(270deg, #ff6a00, #ee0979, #ff6a00);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientAnimation 10s ease infinite;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.shadow-3d {
  font-size: 3rem;
  color: #222;
  text-shadow: 1px 1px 0 #999, 2px 2px 0 #888, 3px 3px 0 #777, 4px 4px 0 #666;
}

/* ---- Generelle Website-Formatierungen ---- */
.area_sitetitle {
  display: flex;
  justify-content: center; /* horizontal zentrieren */
  align-items: center; /* vertikal zentrieren */
  height: 8vh;
}

.area_undertitle {
  display: flex;
  justify-content: center; /* horizontal zentrieren */
  align-items: center; /* vertikal zentrieren */
  height: 8vh;
}

.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ---- Bild Caption ---- */
.portfolio_item {
  position: relative;
  width: 100%;
}

.image-overlay-caption {
  position: relative;
  width: 100%;
  height: auto; /* Höhe durch Inhalt oder extern festlegen */
  overflow: hidden;
}

/* Bild füllt den Container vollständig aus */
.image-overlay-caption img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* skaliert Bild proportional und schneidet ggf. zu */
  display: block;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.image-overlay-caption:hover img {
  filter: grayscale(0%);
}

.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 1.9rem;
  font-weight: bold;
  letter-spacing: 0.4em;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.image-overlay-caption:hover .caption {
  opacity: 1;
  visibility: visible;
}

/* portfolio_text initial ausblenden */
.portfolio_text {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease, max-height 0.5s ease;
}

/* sichtbar bei Hover auf .portfolio_item */
.portfolio_item:hover .portfolio_text {
  opacity: 1;
  max-height: 300px;
  margin-top: 10px;
}/*# sourceMappingURL=sfr_general.css.map */