:root {
  --accent: #ff7a18; /* Orange Akzent */
}

/* Basis Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #0f0f12;
  color: #f2f2f2;
  line-height: 1.5;
}

/* Header */
header {
  background-color: #0b0b0d;
  padding: 20px 40px;
}

header h1 {
  font-size: 2rem;
  color: #fff;
}

/* Navigation */
.nav {
  list-style: none;
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.nav li a {
  color: #f2f2f2;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid transparent;
}

.nav li a:hover {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

/* Sprachswitch */
.lang-switch a {
  color: var(--accent);
  font-weight: bold;
}

.lang-switch a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; /* ganz links ausrichten */
  gap: 24px;
  padding: 80px 40px; /* mehr Abstand */
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  max-width: 700px;
  font-size: 1.3rem;
  color: #cfcfcf;
}

.cta {
  display: inline-block;
  padding: 18px 36px;
  border: 2px solid var(--accent);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  margin-top: 20px;
}

.cta:hover {
  background: var(--accent);
  color: #000;
}


/* Features Section */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 80px;
  padding: 0 40px 60px 40px;
}

.feature {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
}

.feature h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.feature p {
  font-size: 1rem;
  color: #cfcfcf;
}

/* Footer */
footer {
  background-color: #0b0b0d;
  padding: 20px 40px;
  text-align: center;
  font-size: 0.9rem;
  color: #888;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 60px 40px;
  padding: 40px;
  background: #111;
  border: 1px solid #333;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  font-weight: bold;
  color: #fff;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  border: 2px solid #333;
  border-radius: 8px;
  background: #1a1a1a;
  color: #fff;
  font-size: 16px;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 8px rgba(255,122,24,0.5);
}

.contact-form .cta {
  padding: 14px 28px;
  background: var(--accent);
  color: #000;
  font-weight: bold;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.2s ease;
}

.contact-form .cta:hover {
  background: #ff9449;
  transform: translateY(-2px);
}

/* Optional: Formular responsive für kleine Bildschirme */
@media (max-width: 768px) {
  .contact-form {
    margin: 40px 20px;
    padding: 30px;
  }

  .cta {
    width: 100%;
    text-align: center;
  }
}

.contact-form.contact-hero {
  align-items: center; /* zentriert */
  text-align: center;
	justify-self: center;
}
