/* css/style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #1a1a1a;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

/* Navigation */
.navbar {
  max-width: 1200px;
  margin: 1rem auto;
    margin-top: 0px !important;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ff4500;
  border-radius: 0 0 0 30px;
  box-shadow: 0 0 35px 10px rgba(255, 69, 0, 0.5);
  position: relative;
}
.logo {
  color: #FFF;
  font-size: 1.75rem;
  font-weight: bold;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links li {
  position: relative;
}
.nav-links a {
  color: #fff;
  padding: 0.5rem;
  display: block;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #555;
  list-style: none;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu li a {
  padding: 0.5rem 1rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
}

/* Hero */
.hero {
  text-align: center;
  padding: 3rem 1rem 3rem;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
}
.hero h1 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.25rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}
.btn {
  background: #ff4500;
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 0 0 0 20px;
}

/* Divider */
.divider {
  width: 70%;
  height: 2px;
  background-color: #ff4500;
  margin: 2rem auto;
  border-radius: 50px;
  box-shadow: 0 0 25px 5px rgba(255, 69, 0, 0.25);
}

/* Section Headings */
h2 {
  font-size: 2rem;
  margin: 0rem 0 1rem;
  text-align: center;
  color: #ff4500;
}

/* Services-Overview (wenn noch genutzt) */
.services-overview {
  margin-bottom: 20px !important;
  padding: 2rem 1rem;
}
.services-overview article {
  background: #2a2a2a;
  padding: 1.5rem;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}
.services-overview article:hover {
  transform: translateY(-5px);
}
.services-overview h2 {
  margin-bottom: 0.5rem;
}
.link-btn {
  display: inline-block;
  margin-top: 1rem;
  color: #ff4500;
  font-weight: bold;
}

/* Footer */
footer {position: fixed; bottom: 0; margin-top: 150px !important; box-shadow: 0px 0px 35px 10px rgba(255, 69, 0, 0.5);  left: 60px; right: 60px; border-radius: 0px 30px 0px 0px;  bottom: 0px; text-align: center; padding: 0.5rem;font-size: 10px; background: #ff4500; color: #fff; }
footer a { color: #fff; }


/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    margin-top: 15px;
    display: none;
    flex-direction: column;
    background: #444;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
  }
  .nav-links.active {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}
