/* RESET & BASICS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Courier New', Courier, monospace;
  background-color: #fff;
  color: #000;
  line-height: 1.5;
}

html {
  scroll-behavior: smooth;
}

/* NAVIGATION */
.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  top: 10px;
}

.logo img {
  width: 80px;
  height: auto;
}

/* Linkgruppen (Desktop) */
.nav-group {
  display: flex;
  gap: 150px;
  margin-top: 30px;
}

.navbar a {
  text-decoration: none;
  color: #000;
  font-size: 1.3rem;
  font-weight: 500;
  transition: color 0.3s;
  
}

.navbar a:hover {
  color: #1a73e8;
}

.navbar a.active {
  color: #1a73e8;
  font-weight: bold;
}

/* Burger-Menü Button */
.burger-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 25px;
  z-index: 1001;
}

.burger-toggle span {
  width: 25px;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-toggle.active span:nth-child(2) {
  opacity: 0;
}

.burger-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menü */
.nav-mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 1000;
  transition: right 0.4s ease;
  padding-top: 120px;
  gap: 30px;
}

.nav-mobile.show {
  right: 0;
  display: flex;
}

.nav-mobile a {
  font-size: 1.4rem;
  color: #000;
  text-decoration: none;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}

.overlay.show {
  opacity: 1;
  pointer-events: all;
}
/* SCROLL-REVEAL */
.fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}



.line-decorator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px 0 0;
  padding: 0 10px;
}

.line-decorator .line {
  height: 4px;
  background-color: #000;
  flex-grow: 1;
  margin: 0 10px;
  position: relative;
  top: 1px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #000;
  border-radius: 50%;
}
.line.with-steps {
  position: relative;
}

.step-dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #000;
  border-radius: 50%;
}
/* KONTAKT */
.contact-section {
  padding: 60px 40px 120px;
  background-color: #f1f5f9;
  text-align: center;
}

.contact-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-section h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.contact-intro {
  font-size: 1.2rem;
  margin-bottom: 60px;
  color: #333;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-bottom: 40px;
}

.contact-block {
  flex: 1 1 200px;
}

.contact-block h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #1a73e8;
}

.contact-block p,
.contact-block a {
  font-size: 1.05rem;
  color: #000;
  text-decoration: none;
}

.cta-button-small {
  padding: 12px 28px;
  font-size: 1.1rem;
}
.cta-button {
  display: inline-block;
  padding: 16px 36px;
  font-size: 1.3rem;
  font-weight: bold;
  background-color: #e4ecf9;
  color: #000;
  border-radius: 30px;
  border: 2px solid #a0b7d8;
  text-decoration: none;
  transition: all 0.3s ease;
}
cta-button:hover {
  background-color: #cbdcfb;
  transform: scale(1.05);
}
/* FOOTER */
.main-footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.main-footer a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
  font-size: 0.95rem;
}

.main-footer a:hover {
  color: #fff;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablets & kleinere Laptops */
@media (max-width: 1024px) {
  .navbar {
    padding: 30px 30px 0;
  }

  .nav-group {
    gap: 30px;
  }

.contact-info {
    flex-direction: column;
    align-items: center;
  }
.contact-block {
    max-width: 100%;
    text-align: center;
  }
}
/* Smartphones */
@media (max-width: 768px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    position: relative;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .burger-toggle {
    display: flex;
    position: static;
  }

  .logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: static;
    transform: none;
    margin-right: 10px;
  }

  .logo img {
    width: 70px;
   margin-top: 20px;
   margin-right: 10px;
  }

.contact-section h2 {
    font-size: 2rem;
  }
.cta-button,
  .cta-button-small {
    font-size: 1rem;
    padding: 12px 24px;
  }
.main-footer p,
  .main-footer a {
    font-size: 0.85rem;
  }
}
/* Kleine Smartphones */
@media (max-width: 600px) {
 
.contact-block h3 {
    font-size: 1.1rem;
 }

  .contact-block p,
  .contact-block a {
    font-size: 1rem;
  }

  .cta-button-small {
    font-size: 0.95rem;
    padding: 10px 20px;
  }

  .main-footer p,
  .main-footer a {
    font-size: 0.8rem;
  }
  .solution {
    padding-top: 40px;
    padding-bottom: 60px;
    min-height: auto;
  }

  .why-coneal {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 0;
  }
}

/* ========== Projekte ========== */
.projekt-section {
  padding: 100px 20px;
  background-color: #f9fbfd;
  text-align: center;
}

.projekt-heading {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 60px;
  color: #111;
}

/* Card Layout */
.projekt-card {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  align-items: center;
  flex-wrap: wrap;
}

.projekt-text {
  flex: 1;
  text-align: left;
}

.projekt-text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #000;
}

.projekt-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

/* Galerie rechts */
.projekt-gallery-container {
  position: relative;
  flex: 1;
  max-width: 500px;
}

.gallery-image-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
}

.gallery-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  transition: opacity 0.5s ease-in-out;
}

.gallery-image.fade-in {
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Pfeile */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #e4ecf9;
  border: 2px solid #a0b7d8;
  color: #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 2;
  transition: background-color 0.3s ease;
}

.gallery-nav:hover {
  background-color: #d4e4f8;
}

.gallery-nav.left {
  left: -20px;
}

.gallery-nav.right {
  right: -20px;
}

/* Responsive */
@media (max-width: 768px) {
  .projekt-card {
    flex-direction: column;
    padding: 30px 20px;
  }

  .projekt-text {
    text-align: center;
  }

  .projekt-gallery-container {
    max-width: 100%;
  }

  .gallery-nav.left {
    left: 10px;
  }

  .gallery-nav.right {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .cta-button.large {
      font-size: 1rem;
      padding: 12px 24px;
    }
  }

  .cta-contact {
    text-align: center;
    padding: 60px 20px 100px;
    background-color: #ffffff;
  }
  
  .cta-button.large {
    font-size: 1.2rem;
    padding: 16px 36px;
    background-color: #e4ecf9;
    color: #000;
    border: 2px solid #a0b7d8;
    border-radius: 30px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    text-decoration: none;
  }
  
  .cta-button.large:hover {
    background-color: #d4e4f8;
    transform: scale(1.05);
  }
  
.isometa{
  color: red;
}
.isometa:hover{
  
  font-size: 101%;
}