

.main {
  /* background-color: blue; */
  /* border: solid blue; */
  position: relative;
  top: 0;
  left: 0;
  height: 100%;
  width: 100vw;
  z-index: 1;

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;

  padding-left: 20px;
  padding-right: 20vw;

  padding-top: 20px;

  overflow-y: scroll;
}

.menu-projekte {
  text-decoration: underline;
}

.filtered {
  /* border: solid blue; */
  width: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
}

.projekte-filter {
  font-size: 12px;
  width: 100vw;
  display: flex;
  padding-bottom: 20px;
}


.projekte-filter-band {
  cursor: pointer;


/* angepasste Buttons */
  width: fit-content;
  border: solid #F6FF7E;
  /* background-color: #F986E2; */
  background-color: #F6FF7E;
  color: black;
  font-family: Krona;
  border-radius: 50px;
  padding-left: 10px;
  padding-right: 10px;
  /* margin-top: 10px; */
  /* margin-bottom: 10px; */
  position: sticky;
  top: 0;
  z-index: 20;

  -webkit-box-shadow: 0px 0px 15px -1px rgba(0,0,0,0.47);
  box-shadow: 0px 0px 15px -3px rgba(0,0,0,0.47);

  transition: transform 0.125s ease;

  text-decoration: none;
}

.projekte-filter-band:hover {
  text-decoration: underline;
  transform: scale(1.1);
}

.projekte-filter-item {
  cursor: pointer;


/* angepasste Buttons */
  width: fit-content;
  border: solid var(--highlightsmall);
  /* background-color: #F986E2; */
  background-color: var(--highlightsmall);
  color: white;
  font-family: Krona;
  border-radius: 50px;
  padding-left: 10px;
  padding-right: 10px;
  /* margin-top: 10px; */
  /* margin-bottom: 10px; */
  position: sticky;
  top: 0;
  z-index: 20;

  transition: transform 0.25s ease;
}

.filteractive {
  transform: scale(1.05);
}

.projekte-filter-item:hover {
  /* font-weight: bold; */
  /* text-decoration: underline; */
  transform: scale(1.05);
}

.projekte-filter-item-visible {
  position: absolute;
  top: 0;
}

.projekte-filter-spacer {
  width: 20px;
}

.projekte-filter-spacer-vert {
  /* width: 0px;
  height: 30px; */
}

.projekte-spacer {
  height: calc(20vh - 50px);
  flex-shrink: 0;

  display: none;
}

.projekt-frame {
  transition: width 0.5s ease, opacity 0.4s ease;

  width: 25vw;
  height: 15vw;
  /* border: solid blue; */

  display: flex;
  flex-direction: column;

  /* border: solid pink; */

  /* margin-top: 25px; */
  padding-right: 10px;
  padding-bottom: 10px;

  overflow: hidden;
}

.projekt-spacer {
  flex: 10%
}


.projekt-text {
  /* font-family: Krona; */
  display: flex;
  flex-direction: column;

  flex: 60%;

  padding-bottom: 20px;
}

.projekt-titel {
  font-family: Krona;
  font-size: 12px;
  /* text-transform: uppercase; */
  /* font-weight: bold; */
  text-decoration: none;
  color: black;
  /* transition: font-variation-settings 0.1s ease, letter-spacing 0.1s ease; */
  /* transition: font-variation-settings 0.1s ease, letter-spacing 0.1s ease; */

  padding-top: 10px;
}

.projekt-bild-titel {
  position: absolute;
  width: 100%;
  font-family: Krona;
  font-size: 12px;
  /* text-transform: uppercase; */
  /* font-weight: bold; */
  text-decoration: none;
  color: white;
  /* transition: font-variation-settings 0.1s ease, letter-spacing 0.1s ease; */
  /* transition: font-variation-settings 0.1s ease, letter-spacing 0.1s ease; */

  padding-top: 10px;

  pointer-events: none;

  z-index: 2;

  opacity: 0;

  padding-left: 10px;
  padding-right: 10px;

  text-align: center;
}

.projekt-bild-dark {
  opacity: 0;
  transition: all 0.25s ease;
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: black;

  z-index: 1;
}

.projekt-titel:hover {
    /* font-variation-settings: "wght" 900;
    transition: font-variation-settings 0.2s ease, letter-spacing 0.2s ease;
    letter-spacing: 0.025em; */
    text-decoration: underline;
}

.projekt-beschreibung {
  font-size: 12px;
  overflow-y: scroll;
}

.projekt-bild {
  position: relative;
  flex: 30%;
  transition: transform 0.25s ease;

  display: flex;
  align-items: center;

  height: 100%;
  min-height: 100%;
  overflow: hidden;
}

.projekt-cover:hover {
  transform: scale(1.05);
}

.projekt-cover {
  /* height: 250px; */
  /* padding-left: 40px; */
  width: 100%;
  min-height: 100%;
  /* max-width: 30vw; */
  object-fit: cover;

  transition: all 0.25s ease;

  z-index: 0;
}

.projekt-cover:hover ~ .projekt-bild-titel {
    opacity: 1;
}

.projekt-cover:hover ~ .projekt-bild-dark {
    opacity: 0.5;
}
