html{
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    /*margin: 0;*/

    min-height: 100%;

    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 8px auto 8px auto; /* Adjust top margin if navbar is fixed */
    padding: 4px;
    /*background-color: #DADADA; /*#f4f4f4*/
    color: #444444;
    display: flex;
    flex-direction: column;
    font-size: 1rem; 
    line-height: 1.2; /* Improves readability */
}

.container.green {
    background-color: #95AC66;
}

.header-img-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.header-img{
    width: 100%;
    height: 100%;
    /*display: block;*/
    
    object-fit: cover;
}

footer {
    text-align: center;
    padding: 3px;
    background-color: #95AC66;
    color: white;
    border-radius: 8px;

    margin-top: auto;
    margin-bottom: 8px;
}

.footerlink {
    color: #ffffff;

}

button {
    background-color: #E67E22;  /* #95AC66 */
    border: none;
    margin-left: 20px;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 8px;
    transition-duration: 0.4s;
}

button:hover {
    background-color: #6C1B9A; 
  }

img.responsive {
    max-width: 50%;
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 8px;
}

p.center {
    text-align: center;
}

.kontakt-container {
      max-width: 600px;
      margin: auto;
      background-color: #fff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    .kontakt-info {
      margin-bottom: 20px;
    }
    .kontakt-info strong {
      display: block;
      margin-bottom: 5px;
      font-size: 1.1em;
    }

    .social-links {
      margin-top: 30px;
      
    }
    .social-links a {
      margin: 0 10px;
      display: inline-block;
    }
    .social-links svg {
      width: 30px;
      height: 30px;
      fill: #0077b5; /* LinkedIn default */
      transition: fill 0.3s;
    }
    .social-links a.xing svg {
      fill: #026466;
    }
    .social-links a:hover svg {
      fill: #0056b3;
    }

.image-text-container {
  justify-content: center;
  display: flex;        
  align-items: center;  
  gap: 20px;            
}

.image-text-container img {
  width: 200px;         
  height: auto;
}

.image-text-container .text {
  max-width: 400px;     
}

.row {
    display: flex;
    align-items: flex-start; /* vertikal ausrichten */
    gap: 20px; /* Abstand zwischen Bild und Text */
}