*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --fontcolor:  #cbd5e1;;
  --bodybg: #030B0F;
  --greenii: #0bf57c;;
  --normalgray: #eff7ea;
  --normalgraytwo: #f3f6f1;
  --lightblack: #303030;
  --neon-royalblue: #4169E1;
  --neon-glow: rgba(65, 105, 225, 0.75);
  --pink: #FF69B4;
}
a {
    text-decoration: none;
}

li {
    list-style: none;
}

html {
    scroll-behavior: smooth;
}


/* HEADER / HOME */
.nav-wrap {
  padding-top: 10px;
  background-color: var(--bodybg);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-logo {
  font-weight: 800;
  font-size: 18px;
  color: #deece5;
  letter-spacing: .4px;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav-link:hover,
.nav-drawer a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 11px;
  text-decoration-color: var(--greenii);
}

.nav-link {
  text-decoration: none;
  color: var(--fontcolor);
  font-size: 14px;
}

.nav-cta {
  padding: 10px 14px;
  border-radius: 10px;
  background: #0bf57c;
  color: #edf5eb;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid #0bf57c;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #f8fafc;
  font-size: 24px;
  z-index:1001;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100%;
  width: 240px;
  background: var(--bodybg);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: right .6s ease-in-out;
  z-index: 1000;
}

.nav-drawer.open {
  right: 0;
}

.nav-drawer a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 16px;
}

/* HOME */
.home-wrap {
  background-color: var(--bodybg);
}

.home-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
  max-width: 1100px;
  margin: 0 auto;
}

.home-title {
  font-size: 42px;
  line-height: 1.05;
  font-weight: 800;
  margin: 0 0 16px 0;
  color: #f8fafc;
}

.home-text {
  font-size: 16px;
  color: #a3a3ab;
  width: 50%;
  margin: 0 0 22px 0;
}

.home-actions {
  display: flex;
  gap: 12px;
}

.home-action-primary {
  display: inline-block;
  padding: 12px 18px;
  background: #0bf57c;
  color: #1f2937;
  border: 1px solid #0bf57c;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  
}
.home-action-primary:hover{
  background-color: #1c1c1f;
  color: white;
}


.home-action-secondary {
  display: inline-block;
  padding: 12px 18px;
  background: #1c1c1f;
  color: #e5e7eb;
  border: 1px solid #2f2f33;
  border-radius: 12px;
  text-decoration: none;
}
.home-action-secondary:hover{
  background-color: #0bf57c;
  color: #1f2937;
}


.home-visual {
  position: relative;
  min-height: 420px;
}

.home-card-back {
  position: absolute;
  right: 18px;
  top: 22px;
  width: 240px;
  height: 280px;
  background: #0bf57c;
  border-radius: 18px;
}

.home-card {
  position: absolute;
  right: 0;
  top: 60px;
  width: 370px;
  height: 440px;
  background: #151517;
  border-radius: 18px;
  border: 1px solid #2a2a2e;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.home-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-badge {
  position: absolute;
  right: -8px;
  bottom: -100px;
  background: #1b1b1e;
  color: #f8fafc;
  border: 1px solid #42f50b;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.home-badge span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #cbd5e1;
  width: 200px;
  height: 50px;
}

@media (max-width: 900px) {
  html, body { overflow-x: hidden; }

  .nav-wrap { padding: 14px 16px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-drawer { width: 80vw; max-width: 320px; }

  .home-grid {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 24px;
    min-height: auto;
    max-width: 720px;
    padding: 56px 16px 32px;
    margin: 0 auto;
  }

  .home-title {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.1;
    text-align: center;
    margin-bottom: 12px;
  }

  .home-text {
    width: 100%;
    max-width: 60ch;
    margin: 0 auto 18px;
    text-align: center;
    font-size: 15px;
  }

  .home-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .home-visual {
    width: 100%;
    min-height: auto;
    display: grid;
    place-items: center;
    margin-top: 6px;
  }

  .home-card-back { display: none; }

  .home-card {
    position: relative;
    right: auto;
    top: auto;
    width: min(88vw, 360px);
    height: auto;
    aspect-ratio: 3/4;
    border-radius: 18px;
  }

  .home-card img {
    width: 100%;
    height: 100%;
  }

  .home-badge {
    position: static;
    margin: 16px auto 0;
    display: inline-flex;
    transform: none;
  }

  .home-action-primary,
  .home-action-secondary {
    width: auto;
  }

  body.nav-open { overflow: hidden; }
}


/* LEISTUNGEN / SERVICES */
.services-wrap { background: var(--normalgray); padding: clamp(48px, 6vw, 72px) clamp(16px, 4vw, 24px); }
.services-inner { max-width:1100px; margin:0 auto; }
.services-head { text-align:center; margin-bottom:28px; }
.services-title { color:#0f172a; font-size: clamp(22px, 2.2vw + 1rem, 32px); font-weight:800; margin:0 0 10px; }
.services-sub { color:#64748b; font-size: clamp(14px, 1vw + .5rem, 16px); margin:0; }

.services-grid { display:grid; gap:18px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }

.service-card { background: var(--normalgraytwo, #ffffff); border:1px solid #e5e7eb; border-radius:16px; padding: clamp(16px, 2vw, 20px); transition: transform .2s, box-shadow .2s, border-color .2s;

}
.service-card:hover { transform: translateY(-2px); box-shadow: 0 0 0 2px rgba(220, 240, 220, 0.14), 0 12px 30px rgba(0,0,0,.08); border-color: var(--greenii); }

.service-icon { width:44px; height:44px; display:grid; place-items:center; border-radius:12px; background: linear-gradient(135deg,#4169E1,#0bf57c); color:#0b1222; font-size:22px; }
.service-title { color:#0f172a; font-size:18px; font-weight:700; margin:12px 0 6px; }
.service-text { color:#334155; font-size:14px; margin:0; line-height:1.55; }




/* PROJECTS */
.projects-wrap {
  background: white;
  padding: 72px 24px;
}

.projects-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.projects-head {
  text-align: center;
  margin-bottom: 28px;
}

.projects-title {
  color: #0f172a;
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 10px;
}

.projects-sub {
  color: #64748b;
  font-size: 16px;
  margin: 0;
}

.projects-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.project-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.project-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
  border-color: #c7d2fe;
}

.project-media {
  display: block;
  aspect-ratio: 4 / 3;
  background: #e5e7eb;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-body {
  padding: 16px;
}

.project-title {
  color: #0f172a;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
}

.project-meta {
  color: #334155;
  font-size: 14px;
  margin: 0;
}

@media (max-width: 900px) {
  .projects-wrap {
    padding: 48px 16px;
  }

  .projects-title {
    font-size: clamp(22px, 7vw, 28px);
  }

  .projects-sub {
    font-size: 14px;
  }
}



/* CONTACT */
.footer-section {
  background:#000;
  color:#fff;
  padding:80px 40px;
}

.footer-grid {
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:50px;
  max-width:1400px;
  margin:auto;
}

.footer-title {
  font-size:60px;
  line-height:0.95;
  margin:0;
  color:#39ff14;
}

.footer-description {
  margin-top:30px;
  color:#bdbdbd;
  max-width:400px;
}

.footer-grid h3 {
  color:#39ff14;
  margin-bottom:20px;
}

.footer-grid p {
  color:#bdbdbd;
}

.footer-contact-box {
  max-width:1400px;
  margin:80px auto 0;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.footer-contact-item {
  background:#111;
  border:1px solid #222;
  border-radius:20px;
  padding:25px;
  display:flex;
  align-items:center;
  gap:20px;
  text-decoration:none;
  color:#fff;
  transition:0.3s;
}

.footer-contact-item:hover {
  transform:translateY(-5px);
  border-color:#39ff14;
  box-shadow:0 0 30px rgba(57,255,20,0.2);
}

.footer-contact-item span {
  font-size:40px;
}

.footer-contact-item strong {
  display:block;
  color:#39ff14;
  margin-bottom:5px;
}

.footer-contact-item p {
  margin:0;
  color:#bdbdbd;
}

.footer-bottom {
  max-width:1400px;
  margin:50px auto 0;
  padding-top:30px;
  border-top:1px solid #222;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

.footer-bottom p {
  margin:0;
  color:#888;
}

.footer-links {
  display:flex;
  gap:25px;
}

.footer-links a {
  color:#39ff14;
  text-decoration:none;
}

.footer-links a:hover {
  opacity:0.7;
}

@media (max-width:900px) {
  .footer-section {
    padding:60px 20px;
  }

  .footer-grid {
    grid-template-columns:1fr;
    gap:30px;
    text-align:center;
  }

  .footer-title {
    font-size:40px;
  }

  .footer-description {
    max-width:100%;
    margin-left:auto;
    margin-right:auto;
  }

  .footer-contact-box {
    grid-template-columns:1fr;
  }

  .footer-bottom {
    flex-direction:column;
    text-align:center;
  }
}




/* SOCIAL ICONS */
.social{
  position:fixed;
  right:16px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index:999;
}
.social-link{
  display:inline-grid;
  place-items:center;
  width:40px;
  height:40px;
  border-radius:10px;
  background:#ffffff;
  border:1px solid #e5e7eb;
  color:#0f172a;
  font-weight:700;
  font-size:14px;
  line-height:1;
  transition:transform .2s, box-shadow .2s, color .2s, border-color .2s, background-color .2s;
}
.social-link:hover{
  transform:translateY(-1px);
  box-shadow:0 8px 20px rgba(0,0,0,.08);
  border-color:var(--greenii);
}
.social-link:focus-visible{
  outline:none;
  box-shadow:0 0 0 3px rgba(65,105,225,.35);
}

.social-link.instagram:hover{ color:#E4405F; }
.social-link.facebook:hover{ color:#1877F2; }
.social-link.linkedin:hover{ color:#0A66C2; }
.social-link.youtube:hover{ color:#FF0000; }
.social-link.whatsapp:hover{ color:#25D366; }

@media (max-width:900px){
  .social{ right:10px; gap:8px; }
  .social-link{ width:36px; height:36px; font-size:13px; }
}





/* Impressum */
.impressum-section {
  max-width:1000px;
  margin:0 auto;
  padding:120px 20px;
}

.impressum-section h1 {
  font-size:48px;
  margin-bottom:40px;
}

.impressum-section h2 {
  margin-top:40px;
  margin-bottom:15px;
  color:#39ff14;
}

.impressum-section p {
  line-height:1.8;
  color:#555;
}


/* Datenschutz */
.datenschutz-section {
  max-width:1000px;
  margin:0 auto;
  padding:120px 20px;
}

.datenschutz-section h1 {
  font-size:48px;
  margin-bottom:40px;
}

.datenschutz-section h2 {
  margin-top:40px;
  margin-bottom:15px;
  color:#39ff14;
}

.datenschutz-section p {
  line-height:1.8;
  color:#555;
}