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

html, body {
  height: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;

  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #050505;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.logo img {
  height: 40px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #00f0ff;
}

nav .btn {
  padding: 10px 20px;
  border: 2px solid #00f0ff;
  border-radius: 5px;
  color: #00f0ff;
  transition: background-color 0.3s, color 0.3s;
}

nav .btn:hover {
  background-color: #00f0ff;
  color: #000;
  text-decoration: none;
}

/* Main */
main {
  flex: 1 0 auto;
  padding: 0 40px 60px; /* Platz unten für Footer */
}

/* Hero */
.hero {
  padding: 100px 0;
  text-align: center;
  background: none;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #00f0ff;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #ccc;
}

.hero-btn {
  padding: 15px 40px;
  border: 2px solid #00f0ff;
  background-color: transparent;
  color: #00f0ff;
  font-weight: 700;
  border-radius: 8px;
  font-size: 20px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.hero-btn:hover {
  background-color: #00f0ff;
  color: #000;
}

/* Services */
.services {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 60px;
}

.service-left {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-box {
  display: flex;
  gap: 20px;
  align-items: center;
  background-color: #111;
  padding: 20px;
  border-radius: 8px;
  border: 2px solid #00f0ff;
  transition: background-color 0.3s;
}

.service-box:hover {
  background-color: #00f0ff;
  color: #000;
}

.service-box i {
  font-size: 36px;
  color: #00f0ff;
  flex-shrink: 0;
}

.service-box h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.service-box p {
  font-size: 16px;
  color: inherit;
}

/* Service right box */
.service-right {
  flex: 1;
  border: 2px solid #00f0ff;
  padding: 25px 20px;
  border-radius: 8px;
  background-color: #111;
}

.service-right h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #00f0ff;
}

.service-right ul {
  list-style: none;
  padding: 0;
}

.service-right li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #222;
  font-size: 16px;
  color: #eee;
}

.service-right li:last-child {
  border-bottom: none;
}

.service-right li span {
  font-weight: 700;
  color: #fff;
}

/* Footer */
.footer {
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  padding: 40px;
  border-top: 1px solid #00f0ff;
  background-color: #050505;
  color: #ccc;
  gap: 40px;
}

.footer-column {
  max-width: 300px;
}

.footer-column h4 {
  color: #00f0ff;
  margin-bottom: 15px;
  font-size: 20px;
}

.footer-column p {
  margin-bottom: 10px;
  line-height: 1.4;
}

.footer-column.social a {
  font-size: 28px;
  color: #00f0ff;
  margin-right: 20px;
  transition: color 0.3s;
}

.footer-column.social a:hover {
  color: #fff;
}

/* Preise-Kategorien */
.preis-kategorie {
  margin-bottom: 60px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.preis-kategorie h2 {
  font-size: 22px;
  color: #00f0ff;
  margin-bottom: 15px;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
}

.preis-kategorie ul {
  list-style: none;
  padding-left: 0;
}

.preis-kategorie li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #222;
  font-size: 16px;
  color: #eee;
}

.preis-kategorie li span {
  color: #fff;
  font-weight: bold;
}

/* Service-Seite */
.service-section {
  padding: 80px 40px;
  text-align: center;
}

.service-section h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.service-section p {
  font-size: 18px;
  color: #aaa;
  margin-bottom: 50px;
}

.service-kategorie {
  text-align: left;
  max-width: 800px;
  margin: 0 auto 60px;
}

.service-kategorie h2 {
  font-size: 22px;
  color: #00f0ff;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

.service-kategorie ul {
  list-style: none;
  padding: 0;
}

.service-kategorie li {
  font-size: 16px;
  color: #eee;
  padding: 8px 0;
  border-bottom: 1px solid #222;
}

.service-kategorie strong {
  color: #fff;
}

/* Karriere-Seite */
.karriere-section {
  padding: 80px 40px;
  text-align: center;
}

.karriere-section h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.karriere-section p {
  font-size: 18px;
  color: #aaa;
  margin-bottom: 40px;
}

.jobs-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.job-box {
  background-color: #111;
  padding: 30px;
  border: 2px solid #00f0ff;
  border-radius: 10px;
  text-align: left;
  transition: transform 0.3s ease;
}

.job-box:hover {
  transform: translateY(-5px);
}

.job-box h2 {
  font-size: 20px;
  color: #00f0ff;
  margin-bottom: 10px;
}

.job-box ul {
  padding-left: 20px;
  color: #ccc;
  margin-bottom: 15px;
}

.job-box ul li {
  list-style: disc;
  margin-bottom: 5px;
}

.apply-btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: #00f0ff;
  color: #000;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
  .services {
    flex-direction: column;
  }
  .service-right {
    margin-top: 40px;
    max-width: 100%;
  }
  .footer {
    flex-direction: column;
    gap: 20px;
  }
}
