/* ===========================================================
   Allgemeine Stile und Grundkonfiguration
   =========================================================== */
 
   body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #ffffff;
}

a {
    color: #ff9800;
    text-decoration: none;
}

a:hover {
    color: #e68a00;
}

img {
    pointer-events: none;
}
/* ===========================================================
   Header
   =========================================================== */

   .navbar {
    background: transparent;
    transition: background 0.5s, padding 0.5s;
    padding: 20px 0;
}

.navbar-brand img {
    height: 60px;
    transition: filter 0.3s;
}

.navbar-brand img:hover {
    filter: brightness(1.2);
}

.navbar-brand img {
    height: 60px;
    transition: height 0.5s, transform 0.5s;
}

.navbar.scrolled .navbar-brand img {
    height: 40px;
}


#logo {
    cursor: pointer;
}

/* Navigationselemente */
.nav-link {
    color: #ffffff !important;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: -100%;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #ff9800;
    transition: left 0.3s;
}

.nav-link:hover::before {
    left: 0;
}

/* Scroll-Indikator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 30px;
    background-color: #ffffff;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(10px);
    }
    60% {
        transform: translateY(5px);
    }
}

/* Anpassungen für mobile Geräte */
/* Mobile Menü Anpassungen */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        width: 75%;
        height: 100vh;
        background-color: #121212;
        padding-top: 60px;
        overflow-y: auto;
        transition: transform 0.3s ease-in-out;
        transform: translateX(100%);
    }
    .navbar-collapse.show {
        transform: translateX(0);
    }
    .navbar-toggler {
        z-index: 1051;
    }
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .navbar-nav .nav-link {
        color: #ffffff !important;
        padding: 15px 30px;
        width: 100%;
    }
    .navbar-nav .nav-item + .nav-item {
        border-top: 1px solid #333333;
    }
    body.offcanvas-active {
        overflow: hidden;
    }
}


/* ===========================================================
   Hero-Bereich mit Partikelhintergrund
   =========================================================== */

#hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #121212;
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
}

.hero-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 30px;
}

.hero-content .btn {
    border: 2px solid #ffffff;
    color: #ffffff;
    transition: background-color 0.3s, color 0.3s;
}

.hero-content .btn:hover {
    background-color: #ff9800;
    border-color: #ff9800;
    color: #ffffff;
}

/* Anpassung für kleinere Bildschirme */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 18px;
    }
}

/* ===========================================================
   Hero-Bereich
   =========================================================== */

.hero-section {
    position: relative;
    background: url('../images/hero.jpg') center/cover no-repeat;
    height: 80vh;
    color: #ffffff;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(18, 18, 18, 0.8);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 24px;
    margin-bottom: 30px;
}

/* ===========================================================
   Abschnittsüberschriften
   =========================================================== */

section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

section h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: #ff9800;
    display: block;
    margin: 20px auto 0;
}



.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator a {
    color: #ffffff;
    font-size: 32px;
    animation: bounce 2s infinite;
    text-decoration: none;
}

.scroll-indicator a:hover {
    color: #ff9800;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(10px) translateX(-50%);
    }
    60% {
        transform: translateY(5px) translateX(-50%);
    }
}

/* ===========================================================
   Über uns - Zusätzliche Stile
   =========================================================== */

   .about-content {
    display: flex;
    flex-direction: column;
}

.about-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 70px;
}

.about-icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 40px;
    color: #ff9800;
}

.about-item h3 {
    position: relative;
    cursor: pointer;
    transition: color 0.3s;
}

.about-item h3:hover {
    color: #ff9800;
}

.about-item:hover .about-icon {
    color: #e68a00;
    transform: scale(1.1);
    transition: transform 0.3s, color 0.3s;
}
.about-item h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 3px;
    background-color: #ff9800;
    transition: width 0.3s;
}

.about-item:hover h3::after {
    width: 100%;
}

.about-item p {
    font-size: 18px;
    line-height: 1.6;
    color: #cccccc;
}

@media (max-width: 768px) {
    .about-item {
        padding-left: 0;
        text-align: center;
    }
    .about-icon {
        position: static;
        margin-bottom: 10px;
    }
}

/* Carousel-Anpassungen */
.carousel {
    overflow: hidden;
}

.carousel-inner {
    width: 100%;
}

.carousel-item {
    width: 100%;
}

.carousel-item img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    background-size: 100%, 100%;
    border-radius: 50%;
}





/* Timeline */
.timeline {
    position: relative;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #ff9800;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
    padding-left: 20px;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item .timeline-icon {
    position: absolute;
    top: 0;
    left: -48px;
    background: #ff9800;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -20px;
}

.timeline-item .timeline-content {
    background: #1f1f1f;
    padding: 20px;
    border-radius: 5px;
    color: #cccccc;
}

.timeline-item h4 {
    margin-top: 0;
    color: #ff9800;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 60px;
        margin-bottom: 30px;
    }
    .timeline-item:nth-child(even) {
        left: 0;
    }
    .timeline-item .timeline-icon {
        left: 0;
    }
    .timeline-item:nth-child(even) .timeline-icon {
        left: 0;
    }
}

/* Animationen */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.6s;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}
/* ===========================================================
   Dienstleistungen - Zusätzliche Stile
   =========================================================== */

   .service-card {
    background-color: #1f1f1f;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.service-icon i {
    color: #ff9800;
}

.service-card h3 {
    color: #ffffff;
}

.service-card p {
    color: #cccccc;
}
/* ===========================================================
   Testimonials - Zusätzliche Stile
   =========================================================== */

   .testimonial-card {
    background-color: #1f1f1f;
    border-left: 5px solid #ff9800;
    border-radius: 5px;
    color: #cccccc;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-content p {
    font-size: 20px;
    font-style: italic;
    color: #ffffff;
}

.testimonial-content h4 {
    text-align: right;
    color: #ff9800;
    margin-top: 20px;
}

/* ===========================================================
   FAQ - Zusätzliche Stile
   =========================================================== */

   .accordion-button {
    background-color: #1f1f1f;
    color: #ffffff;
    border: none;
    padding: 15px;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-button:not(.collapsed) {
    background-color: #ff9800;
    color: #ffffff;
}

.accordion-body {
    background-color: #121212;
    color: #cccccc;
    border-top: 1px solid #333333;
}

.accordion-item {
    border: none;
    margin-bottom: 10px;
}
/* ===========================================================
   Kontakt - Zusätzliche Stile
   =========================================================== */

   .contact-section {
    background-size: cover;
    background-position: center;
    position: relative;
    color: #ffffff;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(18, 18, 18, 0.8);
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #333333;
    color: #ffffff !important;
}

.form-control::placeholder {
    color: #cccccc;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #ff9800;
    box-shadow: none;
}

.btn-primary {
    background-color: #ff9800;
    border-color: #ff9800;
}

.btn-primary:hover {
    background-color: #e68a00;
    border-color: #e68a00;
}

.alert {
    padding: 15px;
    margin-top: 20px;
    border-radius: 5px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}


/* ===========================================================
   Footer
   =========================================================== */

footer {
    background-color: #1f1f1f;
    color: #cccccc;
}

.social-media a {
    color: #ffffff;
    font-size: 20px;
    transition: color 0.3s;
}

.social-media a:hover {
    color: #ff9800;
}

/* ===========================================================
   Zurück nach oben Button
   =========================================================== */

#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #ff9800;
    color: #ffffff;
    font-size: 18px;
    border: none;
    padding: 15px;
    cursor: pointer;
    display: none;
    border-radius: 50%;
    z-index: 1000;
}

#back-to-top:hover {
    background-color: #e68a00;
}

/* ===========================================================
   Responsive Design
   =========================================================== */

@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 36px;
    }

    .hero-section p {
        font-size: 18px;
    }

    .about-section .col-md-6 {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 60vh;
    }

    .hero-section h1 {
        font-size: 28px;
    }

    .hero-section p {
        font-size: 16px;
    }
}


.timeline-year {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-align: center;
}
.about-highlight-box {
  background-color: #1f1f1f;
  color: #dddddd;
  border-left: 4px solid #ff9800;
  box-shadow: 0 0 0 transparent;
  transition: all 0.3s ease;
}

.about-highlight-box:hover {
  box-shadow: 0 0 25px rgba(255, 152, 0, 0.15);
  transform: translateY(-3px);
}

.text-orange {
  color: #ff9800;
}


.flashlight-text {
  --flash-color: #ff9800;
  position: relative;
  color: #cccccc;
}

.flashlight-text span {
  position: relative;
  z-index: 1;
   background: white;
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  pointer-events: none;
  transition: background-position 0.1s ease;
}
.flashlight-text::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.flashlight-text:hover::before {
  background: radial-gradient(
    circle at var(--x, var(--x-fallback, 50%)) var(--y, var(--y-fallback, 50%)),
    rgba(255, 152, 0, 0.9) 0%,
    transparent 40%
  );
  opacity: 1;
  mix-blend-mode: screen;
}