@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600;700;800&family=Inter:wght@300;400;600&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0f1216;
  color: #e6e6e6;
  line-height: 1.6;
}

/* Navigation */
nav {
  background: rgba(15,18,22,0.95);
  border-bottom: 1px solid #1e242c;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

nav a {
  color: #e6e6e6;
  margin: 0 20px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
}

nav a:hover {
  color: #2f81f7;
}

/* Hero */
.hero {
  height: 85vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(15,18,22,0.85),
    rgba(15,18,22,0.6)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
  padding-top: 20vh;
  text-align: left;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-content h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.3rem;
  color: #9aa4ad;
}
.hero-content p1 {
  font-size: 1.1rem;
  color: #9aa4ad;
}
.hero-content span {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 20px;
  border-left: 4px solid #f5c400;
  background: #161b22;
  font-weight: 600;
}
.hero-content Logo {
  margin-top: 30px;
  padding: 0px 0px;
}
/* Logo im Hero */
.hero-logo {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin-left: 20px;
  margin-bottom: 25px;
  display: block;
}




/* Content Sections */
.content {
  max-width: 1100px;
  margin: auto;
  padding: 90px 40px;
}

.content h1,
.content h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.content h3 {
  font-size: 2.4rem;
  margin-bottom: 25px;
  font-weight: 700;
}

.content p {
  color: #9aa4ad; 
  font-size: 1.1rem;
}

.logo-headline {
padding: 0px 0px;  
font-family: 'Orbitron', sans-serif;
  font-size: 6.0rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.logo-sub {
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color:#f5c400;
}

/* Color */
.brand-yellow {color: #f5c400; /* Industrie-Gelb */
}

/* Lists */
ul {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

ul li {
  padding-left: 30px;
  margin-bottom: 20px;
  position: relative;
}

ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #2f81f7;
  font-weight: bold;
}

/* Image Section */
.image-section {
  background: #161b22;
  padding: 60px 0;
}

.image-section img {
  max-width: 1100px;
  width: 100%;
  display: block;
  margin: auto;
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* Footer */
footer {
  background: #0f1216;
  border-top: 1px solid #1e242c;
  text-align: center;
  padding: 40px;
  color: #9aa4ad;
  font-size: 0.9rem;
}


/* Download-btn */
.download-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 26px;
  background: #161b22;
  color: #e6e6e6;
  text-decoration: none;
  font-weight: 600;
  border-left: 4px solid #f5c400;
  transition: 0.3s;
}

.download-btn:hover {
  background: #1e242c;
  color: #2f81f7;
}

/* IMPRESSUM – Dark Industrial */
.impressum {
  max-width: 900px;          /* enger als normale Seiten */
  margin: auto;
  padding: 90px 40px;
}

.impressum h1 {
  margin-bottom: 50px;
}

.impressum h2 {
  margin-top: 45px;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
  color: #f5c400;            /* Industrie-Gelb */
  border-left: 4px solid #f5c400;
  padding-left: 15px;
}

.impressum p {
  color: #9aa4ad;
  font-size: 1rem;
  line-height: 1.7;
  margin-left: 19px;         /* optisch eingerückt unter h2 */

}



/* Gemeinsamer Seitenhintergrund */
.page-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Dunkles Overlay – überall gleich */
.page-bg::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(
    rgba(15,18,22,0.85),
    rgba(15,18,22,0.6)
  );
  z-index: 0;
}

/* Inhalt über Overlay */
.page-bg > * {
  position: relative;
  z-index: 1;
}


/* Impressum */
.bg-impressum {
  background-image: url('../images/automation3.jpg');
}
/* AGB */
.bg-agb {
  background-image: url('../images/automation3.jpg');
}

/* kontakt */
.bg-kontakt {
  background-image: url('../images/fan1.jpg');
}