.elementor-1852 .elementor-element.elementor-element-3f1acbb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1852 .elementor-element.elementor-element-3f1acbb:not(.elementor-motion-effects-element-type-background), .elementor-1852 .elementor-element.elementor-element-3f1acbb > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#121212;}.elementor-1852 .elementor-element.elementor-element-a6ad06d{--spacer-size:50px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-1852 .elementor-element.elementor-element-dc59201{text-align:center;}.elementor-1852 .elementor-element.elementor-element-dc59201 .elementor-heading-title{font-family:"Poppins", Sans-serif;font-size:40px;font-weight:500;line-height:1.3em;color:#E0E0E0;}.elementor-1852 .elementor-element.elementor-element-7a4c3e8{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:center;}.elementor-1852 .elementor-element.elementor-element-7a4c3e8:not(.elementor-motion-effects-element-type-background), .elementor-1852 .elementor-element.elementor-element-7a4c3e8 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#121212;}.elementor-1852 .elementor-element.elementor-element-0f23f63{--spacer-size:50px;}@media(min-width:768px){.elementor-1852 .elementor-element.elementor-element-3f1acbb{--content-width:92%;}}@media(max-width:1024px){.elementor-1852 .elementor-element.elementor-element-dc59201 .elementor-heading-title{font-size:40px;}}@media(max-width:767px){.elementor-1852 .elementor-element.elementor-element-dc59201 .elementor-heading-title{font-size:35px;}.elementor-1852 .elementor-element.elementor-element-e96d886.elementor-element{--align-self:center;}}/* Start custom CSS for heading, class: .elementor-element-dc59201 */.elementor-1852 .elementor-element.elementor-element-dc59201 .elementor-heading-title {
  display: inline-block;
  background: linear-gradient(
    120deg,
    #ffffff 0%,
    #999999 10%,
    #06AC35 25%,   /* Haupt-Grün */
    #cccccc 40%,
    #06AC35 55%,   /* nochmals Haupt-Grün */
    #999999 70%,
    #ffffff 100%
  );
  background-size: 200% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: metallic-glow 5s linear infinite;  /* Dauer angepasst */
}

@keyframes metallic-glow {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-eb18d46 */:root {
  --primary-color: #06AC35;
  --primary-hover: #05982F;
  --dark-bg: #121212;
  --darker-bg: #0A0A0A;
  --text-light: #fff;
  --radius: 12px;
}

/* Animierte Projekt-Titel */
.project-title,
.project-card h3 {
  display: inline-block;
  background: linear-gradient(
    120deg,
    #ffffff 0%,
    #999999 10%,
    var(--primary-color) 25%,
    #cccccc 40%,
    var(--primary-color) 55%,
    #999999 70%,
    #ffffff 100%
  );
  background-size: 200% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: metallic-glow 5s linear infinite;
}

@keyframes metallic-glow {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* Filter */
.filter-container {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filter-button {
  padding: 10px 20px;
  border: 1px solid var(--primary-color);
  background: transparent;
  color: var(--text-light);
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
}

.filter-button:focus {
  outline: none;
  box-shadow: none;
  background-color: var(--primary-color);
  color: #fff;
}

.filter-button.active {
  background-color: var(--primary-color);
  color: #fff;
}

.filter-button:hover {
  background-color: var(--primary-hover);
  color: #fff;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  justify-items: center;
  min-height: 500px;
  align-items: start;
}

/* Karten einheitlich darstellen */
.project-card {
  background: var(--dark-bg);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 0 14px rgba(6, 172, 53, 0.15);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 400px;
  width: 100%;
   border: 3px solid rgba(6, 172, 53, 0.3); /* dezenter grüner Rahmen */
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(6, 172, 53, 0.3);
}

.project-card.hidden {
  display: none !important;
}

.project-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.project-info {
  padding: 20px;
  color: var(--text-light);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-container {
  background: #1a1a1a;
  border-radius: var(--radius);
  border: 3px solid var(--primary-color); /* ✅ Grüner Rahmen */
  width: 90%;
  max-width: 1100px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  color: white;
  position: relative;
}

.close-button {
  position: sticky;
  top: 0;
  right: 0;
  background: none;
  color: white;
  font-size: 26px;
  cursor: pointer;
  border: none;
  float: right;
  z-index: 10000;
  padding: 10px;
  transition: color 0.3s ease;
}

.close-button:hover {
  color: var(--primary-color);
  background: none;
  font-size: 30px;
}

.modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.info-section {
  margin-bottom: 24px;
}

.info-heading {
  color: var(--primary-color);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
}

/* CTA Button Style wie Kontakt */
a.kontakt-btn.projekt-btn {
  position: relative;
  overflow: hidden;
  background-color: #06AC35 !important;
  color: #fff !important;
  border: none !important;
  padding: 14px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: color 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  z-index: 1;
  text-align: center;
  text-decoration: none;
}

a.kontakt-btn.projekt-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #000;
  transition: all 0.3s ease;
  z-index: -1;
  border-radius: 5px;
}

a.kontakt-btn.projekt-btn:hover::before {
  left: 0;
}

a.kontakt-btn.projekt-btn:hover {
  color: #ffffff !important;
  box-shadow: 0 0 12px 3px #00ff5e;
}

.main-image-container img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.thumbnails-container {
  display: flex;
  gap: 10px;
}

.thumbnails-container img {
  width: 70px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  opacity: 0.6;
  cursor: pointer;
  transition: all 0.2s ease;
}

.thumbnails-container img.active,
.thumbnails-container img:hover {
  opacity: 1;
  border: 2px solid var(--primary-color);
}

/* Feature-Liste */
.info-features {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.info-features li {
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
}

.info-features li::before {
  content: "✓";
  color: var(--primary-color);
  font-weight: bold;
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 0.2em;
  font-family: Arial, sans-serif !important;
}

@media (max-width: 768px) {
  .modal-content {
    grid-template-columns: 1fr;
  }
}

#prevLightbox,
#nextLightbox {
  color: #00ff5e !important;
  text-shadow: 0 0 8px #00ff5e, 0 0 16px #00ff5e;
  font-size: 50px;
  z-index: 10001;
  transition: transform 0.2s ease;
}

#prevLightbox:hover,
#nextLightbox:hover {
  transform: scale(1.2);
  text-shadow: 0 0 12px #00ff5e, 0 0 20px #00ff5e;
}

@media (max-width: 768px) {
  #prevLightbox,
  #nextLightbox {
    font-size: 60px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e96d886 */.cta-button {
  position: relative;
  overflow: hidden;
  background-color: #06AC35;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #000;
  transition: all 0.3s ease;
  z-index: -1;
  border-radius: 5px;
}

.cta-button:hover::before {
  left: 0;
}

.cta-button:hover {
  color: #ffffff;
  box-shadow: 0 0 12px 3px #00ff5e;
}/* End custom CSS */