/*home-page*/
html {
    font-size: 16px;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 60px;
}
*, *::before, *::after {
    box-sizing: border-box;
}

header {
    color: white;
    padding: .5rem 0;
    padding: 0;
}

.navbar {
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #388a9c;
    margin: 0 auto;
    z-index:2000;
}

.nav {
    display: flex;
    flex-grow: 1;
    justify-content: center;
}

.navbar .logo {
    width: 130px;
    height: auto;
}

.navbar nav a {
    color: white;
    text-decoration: none;
    padding: 0 15px;
    font-size: 18px;
    z-index: 200;
    white-space: nowrap;
}

.navbar .social-icons {
    display: flex;
    align-items: center;
}

.navbar .social-icons a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
}

.navbar .social-icons .insta-link{
  position: relative;
  width: 25px;
  height: 25px;
  display: inline-block;
  margin-left: 15px;
}

.navbar .social-icons .insta-link img{
  position: absolute;
  inset: 0;
  width: 25px;
  height: 25px;
  display: block;
  transition: opacity .15s ease;
  will-change: opacity;
  transform: translateZ(0);
}

.navbar .social-icons .insta-hover{
  opacity: 0;
}

.navbar .social-icons .insta-link:hover .insta-hover{
  opacity: 1;
}

.navbar .social-icons .insta-link:hover .insta-base{
  opacity: 0;
}


.hamburger-menu {
    display: none;
    cursor: pointer;
}

@media (max-width:576px) {
    .navbar .logo{
        z-index: 2;
    }
    .navbar .nav {
    visibility: hidden;
    }
    .navbar .hamburger-menu {
        display: block;
        z-index: 1000;
    }
    .navbar .nav {
        position: absolute;
        top: 0;
        right: -100%;
        bottom: 0;
        width: 100%;
        padding-top: 6rem;
        align-items: center;
        text-align: center;
        background-color: #388a9c;
        color: white;
        transition: all 0.3s ease-in-out;
        z-index:1000;
    }
    .nav.active {
        right: 0;
        visibility: visible;
        transform: translateX(0);
        display: flex;
        flex-direction: column;
        gap: 2rem;
        z-index:3;
        padding:200px;
        }

}

/*syling für Überschrift, wirksam in allen ausser Home*/

.überschrift_cont {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.text {
    color: #388a9c;
}

.line {
    flex-grow: 1;
    height: 1.5px;
    background-color: #388a9c;
    margin: 0 20px;

}

.hero_content {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    background:url('../img/const.jpg');
    flex-direction: column;
    padding: 20px;
    padding-top: 80px;
    z-index:1;
}


h1 {
    color:black;
}
.hero_content h1 {
    padding: 10px;
    margin: 100px;
    color:white;
    background-color: #388a9c90;
    /*font-style: italic;*/
    border-radius: 10px;
    -webkit-text-stroke-width: .5px;
    -webkit-text-stroke-color: black;
    font-size: 3.0rem;
}
@media (max-width:576px) {
    .hero_content h1 {
    margin: 0px 0px 60px 0px;
    }
    .hero_content {
    text-align: center;
    }
}
.hero_icons {
    display:flex;
    flex-direction: row;
    z-index: 1;
    width:100%;
    justify-content:space-evenly;
}
.img_wrap img{
    width: 100px;
    height: auto;
    padding: 20px;
    background-color:#388a9c;
    border-radius: 30px;
}
.img_wrap {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align: center;
}
.img_wrap p {
    background-color: #388a9c99;
    color: white;
    border-radius: 10px;
    padding: 5px;
    -webkit-text-stroke-width: .1px;
    -webkit-text-stroke-color: black;
    font-weight: bold;
}
/* hovers für die icons definieren: */
.consult_icon:hover{
    content: url('../const_icons/interview-icon_02.svg');
}
.plan_icon:hover{
    content: url('../const_icons/plan_02.svg');
}
.const-exe_icon:hover{
    content: url('../const_icons/const_02.svg');
}
/*block 2 - beratung*/

.beratung {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    display:flex;
    justify-content:space-evenly;
    align-items: center;
    padding: 0 20px;
}

.beratung_img_cont {
    width: 30%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: shadow for visualization */
    overflow:hidden;
}

.beratung_img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}
.beratung_text_cont {
    display: flex;
    width: 60%;
    height: auto;
    border: 1px solid #388a9c;
    border-radius: 20px;
    justify-content: center;
    flex-direction: column;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: shadow for visualization */
}
.beratung_text_cont h1{
    color: #388a9c;
}
.beratung_text_cont p{
    line-height: 1.6;
    font-size: 1.3rem;
    color: #388a9c;
}
@media (max-width:576px) {
    .beratung {
        flex-direction: column;
        gap: 20px;
        }
    .beratung_img_cont {
    width: 100%;
    order: 2;
    }
    .beratung_img {
    width: 100%;
    height: auto;
    }
    .beratung_text_cont {
    width: 100%;
    order: 1;
    padding: 10px 20px;
    }
}
/*block 3 - planung*/
.planung {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px;
    display:flex;
    justify-content:space-evenly;
    background-color: #388a9c95;
    align-items: center;
}
.planung_img_cont {
    width: 40%;
    height: 400px;
    overflow: hidden;
    position: relative;
    padding: 20px;
    border-radius: 20px 20px 20px 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: shadow for visualization */
}
.planung_img {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: auto;
}
.planung_text_cont {
    display: flex;
    width: 50%;
    border: 1px solid white;
    border-radius: 20px;
    justify-content: center;
    flex-direction: column;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: shadow for visualization */

}
.planung_text_cont h1{
    color: white;
}
.planung_text_cont p{
    line-height: 1.6;
    font-size: 1.3rem;
    color: white;
}
@media (max-width:576px) {
    .planung {
        flex-direction: column;
        gap: 20px;
        }
    .planung_img_cont {
        width: 100%;
        order: 2;
        }
    .planung_img {
        width: 100%;
        height: auto;
        }
    .planung_text_cont {
        width: 100%;
        order: 1;
        padding: 10px 20px;
        }
}
/*block 4 - ausführung*/
.ausführung {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    display:flex;
    justify-content:space-evenly;
    align-items: strech;
    padding: 20px;
}
.ausführung_img_cont {
    width: 40%;
    height: auto;
    overflow: hidden;
    position: relative;
    padding: 20px;
    border-radius: 20px 20px 20px 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: shadow for visualization */

    }
.ausführung_img {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.ausführung_text_cont {
    display: flex;
    width: 50%;
    border: 1px solid #388a9c;
    border-radius: 20px;
    justify-content: center;
    flex-direction: column;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: shadow for visualization */
}
.ausführung_text_cont h1{
    color: #388a9c;
}
.ausführung_text_cont p{
    line-height: 1.6;
    font-size: 1.3rem;
    color: #388a9c;
}
@media (max-width:576px) {
    .ausführung {
        flex-direction: column;
        gap: 20px;
    }
    .ausführung_img_cont {
        width: 100%;
        height: 500px;
        order: 2;
    }
    .ausführung_img {
        width: 100%;
        z-index: 2;
        height: auto;
    }
    .ausführung_text_cont {
        z-index: 1;
        width: 100%;
        order: 1;
        padding: 10px 20px;
    }
}
/*warum wir?*/

.warum_wir_cont {
    background-color: #388a9c95;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.warum_wir_cont h1 {
    color: white;
    margin-top: 30px;
    margin-bottom: 20px;
    padding-left: 20px;
}

    /*einstellung für hacken bei listelemente*/

.hacken_liste {
    list-style-type: none; /* Entfernt die Standard-Bullets */
    padding: 0; /* Entfernt die Standard-Padding der Liste */
    font-size: 1.3rem;
    padding-left: 100px;
}
@media (max-width:576px) {
    .hacken_liste {
        padding-left: 20px;
    }
}

/* Stile für die einzelnen Listenelemente */
.hacken_liste li {
    position: relative; /* Ermöglicht das Positionieren der benutzerdefinierten Häkchen */
    padding-left: 30px; /* Platz für das benutzerdefinierte Häkchen */
    margin-bottom: 10px; /* Abstand zwischen den Listenelementen */
    color: white;
}

/* Stile für das benutzerdefinierte Häkchen */
.hacken_liste li::before {
    content: '\2714'; /* Unicode für das Häkchen-Symbol */
    font-size: 20px; /* Größe des Häkchens */
    color: #388a9c; /* Farbe des Häkchens */
    position: absolute; /* Positionierung des Häkchens */
    left: 0; /* Position des Häkchens links */
    top: 50%; /* Vertikale Zentrierung des Häkchens */
    transform: translateY(-50%); /* Korrektur der vertikalen Zentrierung */
}

.highlight {
    font-weight: bold;
}

/*kontaktformular*/
form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #388a9c;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form_cont {
    margin-bottom: 20px;
}

.form_cont input{
    margin-top: 5px;
}

.form_cont label,
.form_cont input,
.form_cont textarea,
.form_cont input::placeholder,
.form_cont textarea::placeholder{
    color: #388a9c;
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
}

button {
    background-color: #388a9c;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #2b6a78;
}

.form_cont h1,
.form_cont p {
    color: #388a9c;
    padding-left: 20px;
    padding-right: 10px;
}

.form_cont p {
    line-height: 1.6;
    font-size: 1.3rem;

}

/*google-maps box*/

.standort_überschrift {
    color: #388a9c;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-left: 20px;
}

.map-container {
    position: relative;
    width: 100%;
    height: 400px; /* Feste  Höhe des Containers */
    overflow: hidden;
    background: #eee;
    margin: 0 auto; /* Zentriert den Container */
    margin-bottom: 20px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Höhe anpassen */
    border: 0;
}


