* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Header immer oben */
}

.header-title {
    display: flex;
    flex-direction: column;
}

.header-quote {
    color: #007bff;
    font-weight: bold;
    text-decoration: underline;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #007bff;
    margin-top: 5px;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.nav a:hover {
    color: #007bff;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: none;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 130px; /* Beginnt direkt unter dem Header (angepasst an deine Header-HÃ¶he) */
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 900; /* Unterhalb des Headers */
}

.mobile-menu a {
    padding: 15px;
    text-align: center;
    text-decoration: none;
    color: #333;
    display: block;
}

.mobile-menu a:hover {
    background: #007bff;
    color: white;
}

.hero {
    background-image: url('Banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    padding: 80px 20px;
    max-width: 80%;
    width: 100%;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 60vh;
    border-radius: 10px;
    margin-top: 80px; /* Beispielwert */
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    z-index: 0;
}

.hero h2,
.hero p,
.hero a {
    position: relative;
    z-index: 1;
}

.cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    text-align: center;
    padding: 15px 30px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    text-align: center;
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.cta:hover {
    background: #0056b3;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-menu.active {
        display: flex;
    }
    
    /* Anpassung der SchriftgrÃ¶ÃŸen im Hero-Bereich */
    .hero h2 {
        font-size: 2rem !important;
    }
    .hero p {
        font-size: 1rem !important;
    }
}
.footer {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background: rgba(51,51,51, 0.95);
color: white;
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
z-index: 1000;

}   
.footer-links {
display: flex;
gap: 20px;
}

.footer-links a {
color: white;
text-decoration: none;
}

.footer-links a:hover {
text-decoration: underline;
}

.footer-copyright {
text-align: right;
}
/* Animations */
@keyframes fadeInUp {
from {
    opacity: 0;
    transform: translateY(30px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

@keyframes slideInLeft {
from {
    opacity: 0;
    transform: translateX(-50px);
}
to {
    opacity: 1;
    transform: translateX(0);
}
}

@keyframes slideInRight {
from {
    opacity: 0;
    transform: translateX(50px);
}
to {
    opacity: 1;
    transform: translateX(0);
}
}

.hero {
animation: fadeInUp 1s ease-in-out;
}

.service-box {
opacity: 0;
animation: fadeInUp 1s ease-in-out forwards;
}

.service-box:nth-child(1) {
animation-delay: 0.3s;
}

.service-box:nth-child(2) {
animation-delay: 0.6s;
}

.service-box:nth-child(3) {
animation-delay: 0.9s;
}

.cta-section {
opacity: 0;
animation: slideInLeft 1s ease-in-out forwards;
animation-delay: 1s;
}

.footer {
opacity: 0;
animation: slideInRight 1s ease-in-out forwards;
animation-delay: 1.5s;
}
/* Smooth Scrolling */
html {
scroll-behavior: smooth;
}

/* Hover-Effekte fÃ¼r Service-Boxen */
.service-box:hover {
transform: scale(1.05);
transition: transform 0.3s ease-in-out;
}

/* Einblenden beim Scrollen */
.hidden {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.show {
opacity: 1;
transform: translateY(0);
}

.contact-container {
    max-width: 600px;
    margin: 100px auto 150px auto; /* Abstand, damit das Formular nicht am Footer klebt */
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .contact-container h1 {
    text-align: center;
    margin-bottom: 20px;
  }
  .contact-container form {
    display: flex;
    flex-direction: column;
  }
  .contact-container label {
    margin-bottom: 5px;
    font-weight: bold;
  }
  .contact-container input,
  .contact-container textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
  }
  .contact-container textarea {
    resize: vertical;
  }
  .contact-container button {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
  }
  .contact-container button:hover {
    background-color: #0056b3;
  }
.ceo-intro {
  display: flex;
  justify-content: center;
  padding: 50px;
  text-align: center;
  margin-bottom: 100px;
}

.ceo-box {
  max-width: 700px;  /* maximale Breite, überschreitet aber nie 100% */
  width: 100%;
  padding: 20px;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 10px;
}

/* Responsive Anpassung */
@media (max-width: 600px) {
  .ceo-intro {
    padding: 20px;
    margin-bottom: 50px;
  }
  .ceo-box {
    padding: 15px;
  }
}

