@charset "UTF-8";
/* CSS Document */
*, *::before, *::after {
  box-sizing: border-box;
}
@font-face {
  font-family: 'Limelight';
  src: url('font/limelight-regular-webfont.woff2') format('woff2'),
       url('font/Limelight-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
html, body {
  min-height: 300%;
  width: 100%;
  font-family: "Open sans", sans-serif;
  font-size: 18px;
  color: rgba(46, 46, 46, 1.00);
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 0;
  scroll-behavior: smooth;
}
.logo {
  display: flex;
  justify-content: center;
}

.logo img {
  width: 80%;
  height: auto;
}
h1, h2, h3 {
  font-family: "Limelight", sans-serif;
  font-style: normal;
}
.nicht {
  display: none;
}
div.navigation {
  overflow: hidden;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  width: 100%;
  top: 0;
  position: -webkit-sticky; /* Safari */
  position: sticky;
  z-index: 100;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #e4eeea;
}
ul li {
  float: left;
}
ul li a {
  display: block;
  font-size: 19px;
  color: rgba(84, 34, 2, 1.00);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
li:first-child {
  margin-left: 15px;
}
li:last-child {
  margin-right: 15px;
}
ul li a:hover:not(.active) {
  color: rgba(146, 70, 0, 1.00)
}
ul li a.active {
  background-color: #04AA6D;
}
.sticky {
  margin-top: -100vh;
  width: 100vw;
  height: 100vh;
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 50px;
  z-index: 0;
}
.anchor-offset {
  scroll-margin-top: 100px;
}
div.section-header {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  z-index: 2
}
div.header-text {
  height: auto;
  width: 100%;
  padding: 0px 20px;
  padding-left: calc(20vw - 70px);
  margin-bottom: 0px;
  color: white;
  background: rgba(48, 86, 83, 0.5);
}
div.section {
  position: relative;
  background-color: rgba(254, 254, 254, 0.85);
  width: 100%;
  min-height: 100vh;
  z-index: 1
}
div.section h2 {
  color: rgba(48, 86, 83, 0.7)
}

div.section a{
	color: rgba(255,138,39,1.00);
}
div.section a:hover {
  color: rgba(255,138,39,0.5);
}
div.section:last-child {
  min-height: 50vh;
  padding: 3em calc(20vw - 70px) 6em;
}
div.section.dark {
  background-color: rgba(57, 86, 84, 0.95);
  color: white;
}
div.section.dark h2 {
  color: white;
}
.page-title > div > h1 {
  font-size: 80px;
}
.container-crew {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  margin: 30px;
  flex-wrap: wrap;
}

/* KREIS */
.circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
/* BILD */
.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
/* HOVER OVERLAY */
.circle-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
  padding: 20px;
  pointer-events: auto;
}
/* NEU: Layout für Text */
.circle-overlay-inner {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
}
/* TEXT LINKS */
.circle-overlay p {
  flex: 1;
  text-align: left;
  padding-left: 5px;
  font-size: 14px;
  margin: 0;
}
/* NAME RECHTS */
.circle-overlay h1 {
  flex: 1;
  text-align: right;
  padding-right: 5px;
  font-size: 21px;
  margin: 0;	
}
.circle:hover img {
  transform: scale(1.1);
}
.circle:hover .circle-overlay {
  opacity: 1;
}
.circle-overlay h1 {
  font-size: 21px;
  margin: 0;
}
.circle-overlay p {
  font-size: 14px;
  float: right;
  color: rgba(217, 214, 214, 1.00);
}
/* OVERLAY BACKGROUND */
.modal-crew {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: flex-start; /* WICHTIG: oben statt zentriert */
  padding-top: calc(2vh + 80px); /* <- Abstand für Navigation */
  background: rgba(0,0,0,0.6);
  z-index: 9999;
}
/* POST-IT */
.postit {
	max-height: 80vh;          /* begrenzt Höhe */
  overflow-y: auto;          /* macht scrollbar */
  padding: 2rem;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.3); /* wichtig: transparent! */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* für Safari/iPhone */
  color: rgba(217, 214, 214, 1.00);
  min-width: 300px;
  max-width: 90%;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
	
}
.modal-crew h1 {
  font-size: 21pt;
  background-color: aqua
}
/* TAPE */
.postit::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 100px;
  height: 25px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(2px);
  border-radius: 4px;
}
/* CLOSE */
.close {
  position: absolute;
  top: 8px;
  right: 10px;
  cursor: pointer;
  font-size: 18px;
}
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px;
}
/* 5 KACHELN */
.card {
  flex: 1 1 calc(20% - 20px);
  background: rgba(46, 46, 46, 1.00);
  border-radius: 16px;
  overflow:hidden;
  transition: 0.3s;
}
.card:hover {
  transform: translateY(-5px);
}
/* IMAGE */
.card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
/* CONTENT */
.card-content {
  padding: 15px;
}
.cardp{
	color:white; 
	font-size: 11pt; 
	font-weight: lighter; 
	font-family:'open sans','sans-serif';
}
.card h3 {
  margin: 0;
  color:antiquewhite;
  cursor: pointer;
  font-size: 14pt;
}

.card h3:hover {
  color: rgba(248, 164, 5, 1.00)
}
.card a {
  display: inline-block;
  margin-top: 8px;
  color: #94a3b8;
  font-size: 14px;
}
.overlayexp {
  position: fixed; /* WICHTIG */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  z-index: 9999;
}
/* GLASS BOX */
.overlayexp-content {
  background: rgba(255, 255, 255, 0.1);
  color: aliceblue;
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 30px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  font-size: 75%;
}
#overlayexp-text a {
  color: whitesmoke; /* Wunschfarbe */
  text-decoration: none; /* optional: Unterstrich entfernen */
}
#overlayexp-text a:hover {
  color: darkorange; /* Farbe beim Hover */
}
/* CLOSE */
/*.close {
  float: right;
  cursor: pointer;
  font-size: 20px;
}*/
#myBtn {
  position: fixed;
  bottom: 60px;
  right: 20px;
  z-index: 99;

  width: 50px;
  height: 50px;

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.2);

  cursor: pointer;

  /* Zentrierung */
  display: none; /* standard: versteckt */
  align-items: center;
  justify-content: center;

  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transition: background 0.3s ease, transform 0.2s ease;
}

#myBtn:hover {
  background: rgba(0,0,0,0.5);
  transform: translateY(-2px);
}

/* Pfeil nach oben */
.arrow-up {
  width: 0;
  height: 0;

  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 18px solid white;
}
footer {
  position: fixed;
  font-size: clamp(0.8rem, 3vw, 1rem);
  bottom: 0;
  width: 100%;
  height: auto;
  font-weight: lighter;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(255, 255, 255, 1);
  color: rgba(102, 102, 102, 1);
  box-shadow: 0px 0px 5px 5px #888888;
  z-index: 100;
	display: block;
  padding: 14px 16px;
  list-style-type: none;
  float: right;
	
}

footer a:first-child {}
footer a {
  color: rgba(84, 34, 2, 1.00);
  text-decoration: none;
  padding: 0px 16px;
}
footer a:hover {
  color: rgba(153, 153, 153, 1);
}
@media (max-width: 900px) {
  .circle {
    width: 180px;
    height: 180px;
  }
  .circle-overlay h1 {
    font-size: 16px;
  }
  .circle-overlay p {
    font-size: 12px;
  }
}
@media (min-width: 1200px) {
  .logo img {
    width: 50%;
  }
}
@media (max-width: 1200px) {
  .card {
    flex: 1 1 calc(33.33% - 20px);
  }
}
@media (max-width: 768px) {
  .postit {
    max-height: 90vh;
    width: 95vw;
    padding: 1.2rem;
  }
}
@media (max-width: 700px) {
  .card {
    flex: 1 1 calc(50% - 20px);
  }
}
@media (max-width: 400px) {
  .card {
    flex: 1 1 100%;
  }
}
@media screen and (max-width:800px) {
  .nicht {
    display: inherit;
  }
  div.parallax-image1 {
    display: none;
  }
  div.parallax-image1a {
    background-image: url("../images/Faden_02_mob.jpg");
    background-size: cover;
  }
  div.parallax-image2 {
    display: none;
  }
  div.parallax-image2a {
    background-image: url("../images/gemeinsam_mob.jpg");
    background-size: cover;
  }
  div.parallax-image3 {
    display: none;
  }
  div.parallax-image3a {
    background-image: url("../images/EquiVitas_Tor_04_mob.jpg");
    background-size: cover;
  }
  div.parallax-image4 {
    display: none;
  }
  div.parallax-image4a {
    background-image: url("../images/vonHinten_mob.jpg");
    background-size: cover;
  }
  div.parallax-image5 {
    display: none;
  }
  div.parallax-image5a {
    background-image: url("../images/EquiVitas_Expertinnen-02_mob.jpg");
    background-size: cover;
  }
  div.parallax-image6 {
    display: none;
  }
  div.parallax-image6a {
    background-image: url("../images/EquiVitas_VanessaLiekefett_Exper_mob.jpg");
    background-size: cover;
  }
  html {}
  ul li a {
    font-size: 80%;
    padding: 12px 12px;
  }
  .sticky {
    top: 50px;
  }
  div.header-text {
    padding-left: calc(20vw - 50px);
  }
  div.section {
    padding: 3em calc(20vw - 70px);
  }
  div.header-text h1 {
    font-size: 32pt;
  }
  div.header-text h2 {
    font-size: 19pt;
  }
  div.section h2 {
    font-size: 18pt;
  }
  div.section p {}
}
@media (max-width: 600px) {
  .container-crew {
    justify-content: center;
    padding: 0;
  }
  .circle {
    width: 200px;
    height: 200px;
  }
}
@media screen and (max-width:550px) {
  div.header-text {
    margin-bottom: 100px;
  }
  .sticky {
    top: 60px;
  }
  footer { 
  font-size: clamp(0.7rem, 2vw, 0.5rem);
  padding: 14px 10px;
 
	
}
}