/* ANCHOR - Fonts */

@font-face {
  font-family: "OpenSans";
  src: url(../fonts/OpenSans-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "OpenSans";
  src: url(../fonts/OpenSans-Italic.ttf) format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "OpenSans";
  src: url(../fonts/OpenSans-Medium.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "OpenSans";
  src: url(../fonts/OpenSans-MediumItalic.ttf) format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "OpenSans";
  src: url(../fonts/OpenSans-Light.ttf) format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "OpenSans";
  src: url(../fonts/OpenSans-LightItalic.ttf) format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "OpenSans";
  src: url(../fonts/OpenSans-SemiBold.ttf) format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "OpenSans";
  src: url(../fonts/OpenSans-SemiBoldItalic.ttf) format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "OpenSans";
  src: url(../fonts/OpenSans-Bold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "OpenSans";
  src: url(../fonts/OpenSans-BoldItalic.ttf) format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "OpenSans";
  src: url(../fonts/OpenSans-ExtraBold.ttf) format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "OpenSans";
  src: url(../fonts/OpenSans-ExtraBoldItalic.ttf) format("truetype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}


/* ANCHOR - Color Properties */

body {
  --color-black: #191919;
  --color-white: #ffffff;
  --color-beige: #f8f4eb;
  --color-grey: #676d67;
  --color-blue: #24348b;
  --color-offwhite: #fafbf6;
}


/* ANCHOR - General Styles */

/* Gemeinsame Flexbox- und Ausrichtungsstile */
.flex-center {
  display: flex;
  align-items: center;
}

.flex-column {
  flex-direction: column;
  align-items: center;
}


/* Stile die die gesamte Seite betreffen*/
body {
  font-family: "OpenSans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  margin: 0;
  padding: 0;
  background-color: var(--color-offwhite);
}


/* Variablen der Ges. Seite */
body{
  --padding-left: 300px;
}


/* Navigations Stile */

nav > ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}


/*ANCHOR - Text Colors */

.text-black {
  color: var(--color-black);
}

.text-white {
  color: var(--color-white);
}

.text-beige {
  color: var(--color-beige);
}

.text-grey {
  color: var(--color-grey);
}

.text-blue {
  color: var(--color-blue);
}


/*ANCHOR - Link Colors */

.link-black {
  color: var(--color-black);
  text-decoration: none;
}

.link-white {
  color: var(--color-white);
}

.link-beige {
  color: var(--color-beige);
}

.link-grey {
  color: var(--color-grey);
}

.link-blue {
  color: var(--color-blue);
}

/*ANCHOR - Header */

.headline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: var(--padding-left);
  padding-right: 64px;
  background: linear-gradient(to bottom, var(--color-grey), var(--color-white));
  background-position: left bottom;
  background-size: 100% 5px;
  background-repeat: no-repeat;
}
.contact-info {
  background-color: var(--color-beige);
  display: flex;
  padding-left: var(--padding-left);
  height: 150px;
  gap: 100px;
  font-size: 16px;
  text-align: center;
  align-items: center;
}
#logo{
  width: 300px;
}

.contact-details {
  display: flex;
}
.contact-details p,
.contact-details a {
  margin: 0px;
}
.contact-icons {
  height: 42px;
  width: 42px;
}

.socialMediaIcon {
  display: flex;
  align-items: center;
}
.socialMediaIcon a {
  text-decoration: none;
  display: inline-flex;
}
.socialMediaIcon a img {
  margin-right: 10px;
  width: 42px;
  height: 42px;
}
.navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-blue);
  padding-left: 300px;
}

/*ANCHOR - Main */

.mainTextBackground {
  background-image: url(../img/SteelConstruct.png);
  background-position: center;
  background-size: cover;
  margin-bottom: 150px;
  height: 650px;
}

.mainText {
  margin-left: 300px;
  width: 1300px;
  font-weight: 600; 
  color: var(--color-black);
  padding: 0px;
  position: relative;
  top: 100px; /* Hier passt du den Abstand an */
}

.circleList {
  list-style: disc;
  white-space: pre-wrap;
}
#contactUs{
  justify-content: center;
  display: flex;
  margin-bottom: 40px;
}
.contactCard{
  font-size: 15px;
  margin-top: 5px;
}
.contactCard img{
  height: 300px;
}
.contactOrientation{
  display: flex;
  gap: 170px;
  justify-content: center;
  margin-bottom: 250px;
  margin-top: 100px;
}
#ContactNames{
  font-weight: 700;
  margin-top: 5px;
  
}


/*ANCHOR - Footer */

footer {
  background-color: var(--color-grey);
  height: 250px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-white);
  width: 100%;
}

footer h3 {
  font-size: 19px;
  font-weight: 500;
  margin: 0;
  margin-top: 20px;
}
.footer-content {
  display: flex;
  margin-left: 300px;
  gap: 100px;
}
.footer-details li{
margin-top: 4px;
}
.footer-details h3{
margin-top: 20px;
}
/* Stil für die Footer-Social-Media-Links */
.footer-socialMedia {
  text-decoration: none;
  color: var(--color-white);
  font-size: 16px;
  margin-right: 20px;
}
.footer-bottom {
  margin-left: 300px;
}
