.site-header{
  display: flex;
  flex-direction: column;
}

.header-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}


.top-row{
  width: 100%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.top-actions{
  margin-left: auto;
  display: flex;
  gap: 16px;
  align-items: center;     
  font-family: sans-serif; 
}

.top-btn{
    --green: #1e93f2;
    font-size: 15px;
    padding: 0.7em 2.0em;
    letter-spacing: 0.06em;
    position: relative;
    font-family: inherit;
    border-radius: 0.6em;
    overflow: hidden;
    transition: all 0.3s;
    line-height: 1.4em;
    border: 2px solid var(--green);
    background: linear-gradient(to right, rgba(27, 253, 156, 0.1) 1%, transparent 40%, transparent 60%, rgba(27, 253, 156, 0.1) 100%);
    color: var(--green);
    box-shadow: inset 0 0 10px rgba(27, 230, 253, 0.4), 0 0 9px 3px rgba(27, 253, 156, 0.1);

    text-decoration: none;  /* wichtig für Links */
    display: inline-block;  /* damit padding/hover sauber greifen */
}


nav ul{
  list-style: none;
  margin: none;
  padding: none;
  display: flex;
  gap: 35px;
  font-size: 100%;
  font-family: sans-serif
}

/* "Button"-Look für Links */
.nav-btn{
  --green: #1e93f2;
  font-size: 15px;
  padding: 0.7em 2.0em;
  letter-spacing: 0.06em;
  position: relative;
  font-family: inherit;
  border-radius: 0.6em;
  overflow: hidden;
  transition: all 0.3s;
  line-height: 1.4em;
  border: 2px solid var(--green);
  background: linear-gradient(to right, rgba(27, 253, 156, 0.1) 1%, transparent 40%, transparent 60%, rgba(27, 253, 156, 0.1) 100%);
  color: var(--green);
  box-shadow: inset 0 0 10px rgba(27, 230, 253, 0.4), 0 0 9px 3px rgba(27, 253, 156, 0.1);

  text-decoration: none;  /* wichtig für Links */
  display: inline-block;  /* damit padding/hover sauber greifen */
}

.nav-btn:hover{
  color: #82fffd;
  box-shadow: inset 0 0 10px rgba(27, 204, 253, 0.6), 0 0 9px 3px rgba(27, 253, 156, 0.2);
}

.nav-btn::before{
  content: "";
  position: absolute;
  left: -4em;
  width: 4em;
  height: 100%;
  top: 0;
  transition: transform .4s ease-in-out;
  background: linear-gradient(to right, transparent 1%, rgba(27, 253, 156, 0.1) 40%, rgba(27, 253, 156, 0.1) 60%, transparent 100%);
}

.nav-btn:hover::before{
  transform: translateX(15em);
}

body{
  background-color: #000;
  color: #fff;
}

.imgLogo img{
  height: 90px;
  width: auto;
}


.map-section{
  width: 10%;
  margin: 20px auto;
  padding-top: 100%;
  text-align: center;
  font-family: Arial, sans-serif;
}

.map-title{
  color: rgb(255, 214, 138);
  font-size: 26px;
  font-weight: bold;
  font-family: sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.map-wrap{
  width: min(900px, 92%);   
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(173, 216, 230, 0.35);
  border: 1px solid rgba(255,255,255,0.12);
}


.hero{
  min-height: 1000px;
  background-image: url("DigiGang.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;   
  justify-content: center;
  align-items: center;

  position: relative;
  gap: 18px;                
}

/*dunkles Overlay für bessere Lesbarkeit */
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.664);
  z-index: 0; 
}


.hero-content{
  position: relative;
  padding: 20px;
  font-size: 200%;
  text-align: center;
  font-family: sans-serif;
  transform: none;          
}

.hero-content,
.map-title,
.map-wrap{
  position: relative;
  z-index: 1;              
}



.services{
  background-color: #000;
  padding: 30px;
  border-radius: 15px;
  width: 80%;
  margin: 40px auto;
  box-shadow: 0 0 20px rgba(173, 216, 230, 0.5);
  font-family: Arial, sans-serif;
  text-align: center;
}

.services-title{
  color: orange;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.services-grid{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.service-card{
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  padding: 14px;
  background: linear-gradient(135deg, #001f3f, #003366);
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.service-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.35);
}

.experience{
  background-color: #000;
  padding: 40px;
  border-radius: 15px;
  width: 80%;
  margin: 40px auto;
  box-shadow: 0 0 25px rgba(173, 216, 230, 0.7);
  text-align: center;
  color: white;
  font-family: Arial, sans-serif;
}

.experience-title{
  color: orange;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.experience-text{
  font-size: 20px;
  line-height: 1.7;
  margin: 0 20px;
  padding: 15px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 10px rgba(173, 216, 230, 0.3);
}

.highlight{
  color: #0099ff;
}

.tagline{
  color: #0099ff;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1px;
}

.contacts{
  background-color: #000;
  padding: 40px;
  border-radius: 15px;
  width: 80%;
  margin: 40px auto;
  box-shadow: 0 0 25px rgba(173, 216, 230, 0.7);
  text-align: center;
  color: #fff;
  font-family: Arial, sans-serif;
}

.contacts-title{
  color: orange;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contacts-box{
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 10px;
  box-shadow: inset 0 0 10px rgba(173, 216, 230, 0.3);
  margin-bottom: 15px;
}

.region-title{
  color: #007acc;
  font-size: 24px;
  margin: 0 0 10px 0;
}

.contact-line{
  font-size: 20px;
  line-height: 1.7;
  margin: 0;
}

.small{
  font-size: 12pt;
}

.contacts a{
  color: #0099ff;
  text-decoration: none;
}

.contacts a:hover{
  text-decoration: underline;
}

.spacer{
  height: 14px;
}

.career{
  background-color: #000;
  padding: 40px;
  border-radius: 15px;
  width: 90%;
  margin: 40px auto;
  box-shadow: 0 0 25px rgba(173, 216, 230, 0.7);
  text-align: center;
  color: #fff;
  font-family: Arial, sans-serif;
}

.career-title{
  color: orange;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.career-subtitle{
  color: orange;
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.career-intro{
  font-size: 20px;
  line-height: 1.7;
  margin: 0 40px;
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 10px rgba(173, 216, 230, 0.3);
}

.career-box{
  font-size: 20px;
  line-height: 1.7;
  margin: 20px 40px 0;
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 10px rgba(173, 216, 230, 0.3);
}

.career-box-line{
  margin: 0;
}

.career-box-line + .career-box-line{
  margin-top: 10px;
}

.career-mail{
  color: #0099ff;
  text-decoration: none;
}

.career-mail:hover{
  text-decoration: underline;
}

.highlight{
  color: #0099ff;
}

.ai-solution{
  background-color: #000;
  padding: 40px;
  border-radius: 15px;
  width: 80%;
  margin: 40px auto;
  box-shadow: 0 0 25px rgba(173, 216, 230, 0.7);
  text-align: center;
  color: #fff;
  font-family: Arial, sans-serif;
}

.ai-title{
  color: orange;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ai-text{
  font-size: 20px;
  line-height: 1.7;
  margin: 0 20px;
  padding: 15px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 10px rgba(173, 216, 230, 0.3);
}

.virtual{
  background-color: #000;
  padding: 40px;
  border-radius: 15px;
  width: 80%;
  margin: 40px auto;
  box-shadow: 0 0 25px rgba(173, 216, 230, 0.7);
  text-align: center;
  color: #fff;
  font-family: Arial, sans-serif;
}

.virtual-title{
  color: orange;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.virtual-text{
  font-size: 20px;
  line-height: 1.7;
  margin: 0 20px;
  padding: 15px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 10px rgba(173, 216, 230, 0.3);
}

.virtual-tagline{
  color: #0099ff;
  font-weight: bold;
}

.cloud-storage{
  background-color: #000;
  padding: 40px;
  border-radius: 15px;
  width: 80%;
  margin: 40px auto;
  box-shadow: 0 0 25px rgba(173, 216, 230, 0.7);
  text-align: center;
  color: #fff;
  font-family: Arial, sans-serif;
}

.cloud-storage-title{
  color: orange;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cloud-storage-text{
  font-size: 20px;
  line-height: 1.7;
  margin: 0 40px;
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 10px rgba(173, 216, 230, 0.3);
}

.impressum{
  background-color: #000;
  padding: 40px;
  border-radius: 15px;
  width: 80%;
  margin: 40px auto;
  box-shadow: 0 0 25px rgba(173, 216, 230, 0.7);
  text-align: center;
  color: #fff;
  font-family: Arial, sans-serif;
}

.impressum-title{
  color: orange;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.impressum-line{
  font-size: 20px;
  line-height: 1.7;
  margin: 12px 20px; /* statt überall gleich margin 0 */
  padding: 15px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 10px rgba(173, 216, 230, 0.3);
}



