/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  background: #fff;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Navigation */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
  background: #000;
}
.navbar.scrolled {
  background: #000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.navbar .container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

nav a {
  margin-left: 1.5rem;
  color: #fa9e09;
  font-weight: 500;
  transition: color 0.3s;
}
nav a:hover {
  color: #F0F0F0;
}

/* Hero */
.hero {
  height: 100vh;
  background: url('../assets/images/programming-1873854_1920.png') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero .overlay {
  position: absolute;
  background: rgba(74, 74, 74, 0.6);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 3rem;
  color: #FFF;
}
.hero p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  color: #EAEAEA;
}

/* Angebot */
.angebot {
  padding: 4rem 2rem;
  background: #d1d1d1;
  text-align: center;
}
.angebot h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  border-bottom: 2px solid #fa9e09;
}

.angebot-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.angebot-horizontal {
  display: flex;
  background: #FFF;
  border-radius: 10px;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  align-items: center;
  transition: transform 0.3s ease;
}
.angebot-horizontal:hover {
  transform: translateY(-5px);
}
.icon-left {
  flex-shrink: 0;
  margin-right: 1.5rem;
}
.icon-left img {
  width: 60px;
  height: 60px;
}
.text-right {
  text-align: left;
}
.text-right h3 {
  margin-bottom: 0.5rem;
  color: #fa9e09;
}
.text-right p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Content-General */

.content-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  padding: 2rem;
  background: #F8F8F8;
}

.content {
  padding: 4rem 2rem;
  background: #F8F8F8;
  text-align: center;
}
.content h2 {
  font-size: 2rem;
  color: #222;
  margin-top: 3rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  border-bottom: 2px solid #fa9e09;
}

.content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #e23844;
}
.content h4 {
  margin-bottom: 0.5rem;
  font-size: 1.0rem;
  color: #333;
}



.content p {
  color: #000;
  font-size: 0.95rem;
  font-weight: normal;
  margin-bottom: 0.5rem;
}

.content a {
	color:#fa9e09;
	text-decoration:none;
}

.content a:hover {
	color:#e23844;
	text-decoration:underline;
}


/* Kontaktbereich neu strukturiert */
.kontakt .kontakt-box {
  display: flex;
  justify-content: center;
  gap: 8rem;
  background: #0d2f44;
  color: #fff;
  padding: 2rem 1rem;
  flex-wrap: wrap;
}

.kontakt .kommunikation,
.kontakt .anschrift {
  width: 300px;
  margin: 0;
}

.kontakt h4 {
  color: #fa9e09;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.kontakt p a {
  color: #fa9e09;
  text-decoration: none;
}

.kontakt p a:hover {
  text-decoration: underline;
}

/* Neuer Footer */
.footer {
  background: #212121;
  color: #eee;
  text-align: center;
  padding: 2rem 1rem;
}

.footer .social-icons {
  margin-bottom: 1rem;
}

.footer .social-icons a {
  font-size: 1.5rem;
  margin: 0 0.5rem;
  color: #fa9e09;
  transition: color 0.3s;
}

.footer .social-icons a:hover {
  color: #ffffff;
}

.footer .footer-left {
  margin-bottom: 1rem;
}

.footer .footer-left p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer .footer-left a {
  color: #fa9e09;
  margin: 0 0.25rem;
  text-decoration: none;
}
.footer .footer-left a:hover {
  color: #EAEAEA;
  text-decoration: underline;
}

.footer .footer-bottom {
  font-size: 0.8rem;
  color: #aaa;
}


/* Responsive */
@media (max-width: 768px) {
	
	.content h2 {
    font-size: 1.5rem; /* Kleinere Schriftgröße */
    margin-top: 2rem;  /* Kleinere Abstände */
    margin-bottom: 2rem;
  }
  .angebot-horizontal {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .icon-left {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .text-right {
    text-align: center;
  }
  .navbar .container {
    flex-direction: column;
    gap: 0.5rem;
  }

  .kontakt .kontakt-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .kontakt .kommunikation,
  .kontakt .anschrift {
    width: 100%;
  }
}
