/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
 
  html {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }


/* Fonts */

  @font-face {
    font-family: 'InterDisplay';
    src: url('Fonts/InterDisplay-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
  }

  @font-face {
    font-family: 'InterDisplay';
    src: url('Fonts/InterDisplay-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
  }

  @font-face {
    font-family: 'InterDisplay';
    src: url('Fonts/InterDisplay-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'InterDisplay';
    src: url('Fonts/InterDisplay-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
  }
  

/* Body */

  body {
    background-color: #050e2f;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'InterDisplay';
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.8rem;
  }

  @media screen and (max-width: 768px) {

  body {
    font-size: 0.9rem;
    line-height: 1.6rem;
    }
  }


/* Font Styling */

  h1 {
    font-family: 'InterDisplay', sans-serif;
    font-style: normal;
    font-size: clamp(1.2rem, 4vw, 2rem);
    line-height: clamp(1.6rem, 4vw, 2.3rem); 
  }

  h2 {
    font-family: 'InterDisplay', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: clamp(1.2rem, 4vw, 2rem);
    line-height: clamp(1.6rem, 4vw, 2.3rem); 
  }

  h3 {
    font-family: 'InterDisplay', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: clamp(1.2rem, 2.2vw, 1.8rem);
    line-height: clamp(1.4rem, 2.2vw, 2rem); 
  }

  h4 {
    font-family: 'InterDisplay', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    line-height: clamp(1.4rem, 2vw, 1.8rem);
    opacity: 1;
  }  

  h5 {
    font-family: 'InterDisplay', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.2rem;
    line-height: 1.6rem;
    opacity: 1;
  }

  p {
    margin-bottom: 2rem;
    letter-spacing: 0.02rem;
    opacity: 1;
  }

  ul {
    opacity: 1;
  }

  a {
    color: inherit; /* Erbt die Farbe vom Elternelement */
  }
  
  /* Besuchte Links: Keine spezielle Auszeichnung */
  a:visited {
    color: inherit; /* Farbe bleibt die gleiche wie bei nicht besuchten Links */
  }

  @media (max-width: 768px) {
    a {
      color: inherit;
      text-decoration: none;
    }
  
    a[href^="tel:"] {
      color: inherit;
      text-decoration: none;
    }
  }





/*******************************************************
*
    Section Navbar
*
*******************************************************/


/* Section für Navbar */
.navbar-section {
    padding: 2rem 2rem 6rem;
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
}

/* Wrapper innerhalb der Navbar */
.navbar-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar {
    position: relative;
    top: 0;
    left: 0;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 rem;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.0);
    color: rgb(250, 250, 250);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
.navbar .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar .logo img {
    width: 220px;
    height: auto;
}

.navbar .menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar .menu a {
    font-family: 'InterDisplay', sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: 0.4s;
    color: #ffffff;
    font-size: 0.8rem;
    text-decoration: none;
    text-transform: uppercase;
    padding: 1px 0px;
    margin: 0 0px;
    position: relative;
    font-weight: 100;
    letter-spacing: 0.1rem;
    white-space: nowrap;
  }
  
  .navbar .menu a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    background-color: #ffffff;
    bottom: 0;
    left: 0;
    transition: width 0.4s;
  }
  
  .navbar .menu a:hover::before {
    width: 100%;
  }
  


/* Navbar Responsive ******************************************/

@media screen and (max-width: 768px) {

  .navbar .logo img {
    max-width: 180px;
  }

  .navbar .menu a {
    font-size: 0.7rem;
  }
 
  .navbar .menu {
    gap: 1rem;
}

}



/*******************************************************
*
    Section Content
*
*******************************************************/


.content-section {
    padding: 2rem 2rem 8rem;
    width: 100%;
}

.content-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.content-column-1 {
    flex: 3;
    max-width: 33.33%;
}

.content-column-2 {
    flex: 2;
    max-width: 66.66%;
}

/* Responsive Design: Inhalt untereinander */
@media (max-width: 1100px) {

    .content-section {
        padding: 0rem 2rem 4rem;
        width: 100%;
    }
    .content-wrapper {
        flex-direction: column;
    }
    
    .content-column-1,
    .content-column-2 {
        max-width: 100%;
    }
}



/*******************************************************
*
    Section Footer
*
*******************************************************/



.footer-section {
  padding: 4rem 2rem 4rem;
  background-color: #f7f7f7;
}

.footer-wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-header {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
}

.footer-header h3 {
  margin-right: 3rem;
  flex: 3;
}

.footer-header h3 .color1 {
  color: #071757;
}

.footer-header h3 .color2 {
  color: #9a9a9a;
}

.footer-column-2,
.footer-column-3,
.footer-column-4 {
  flex: 2; /* Gleiche Breite */
  color: #888888;
}

.footer-column-2 address {
  font-family: 'InterDisplay', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  font-style: normal;
  line-height: 1.8rem;
  margin-right: 3rem;
}

.footer-column-3 contact {
  font-family: 'InterDisplay', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  font-style: normal;
  line-height: 1.8rem;
  margin-right: 3rem;
}

/* Für den Link innerhalb von #email */
#email a {
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  #email a:hover {
    color: #4b4b4b;
  }


/* Links */
.footer-column-4 a {
  font-family: 'InterDisplay', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8rem;
  display: block;
  color: #888888;
  text-decoration: none;
  margin: 0;
  transition: color 0.3s ease;
  margin-left: 4rem;
}

.footer-column-4 a:hover {
  color: #4b4b4b;
}

#email a {
  transition: color 0.3s ease;
  text-decoration: none;
  color: #888888;
}

#email a:hover {
  color: #4b4b4b;
}

/* Section Footer Responsive ******************************************/

@media (max-width: 1100px) {
  .footer-section {
    padding: 2rem 2rem 2rem;
  }
  .footer-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-column-4 a {
    margin-left: 0rem;
  }
}

/* Mobile Ansicht */
@media (max-width: 768px) {

  .footer-column-2 address,
  .footer-column-3 contact,
  .footer-column-4 a {
    font-weight: 400;
    font-size: 0.8rem;
    line-height: 1.4rem;
  }
  
  #email a {
    font-size: 0.8rem;
  }

}