* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  font-weight: 300;
}

html {
  scroll-behavior: smooth;
}

body,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
span,
div {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

h1 {
  font-family: "Lato", sans-serif;
  font-weight: 300; /* Light */
}

/* ===========================
     Navigation (Navbar)
  =========================== */

/* Navigation */
nav#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background-color: transparent;
  transition: all 0.4s ease;
  z-index: 1000;
}

nav#navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Container für Navigation */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
  transition: padding 0.4s ease;
}

nav#navbar.scrolled .nav-container {
  padding: 1rem 3rem;
}

/* Logo */
.logo img {
  height: 80px;
  filter: brightness(0) invert(1); /* Weiß machen */
  transition: height 0.4s ease, transform 0.4s ease;
}

/* Nach dem Scroll: Originalfarben */
nav#navbar.scrolled .logo img {
  filter: none;
}

nav#navbar.scrolled .logo img {
  height: 50px;
}

/* Navigation Links */
.nav-links {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

nav#navbar.scrolled .nav-links a {
  color: #222;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #ff4000;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #ff4000;
}
/* Menu toggle for mobile 
  .menu-toggle {
    display: none;
    cursor: pointer;
  }*/

.bar {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px 0;
  transition: 0.4s;
}

.menu-toggle.active .bar {
  background-color: #222; /* dunkelgrau/schwarz für Kontrast */
}

.close-menu {
  position: fixed;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  background: none;
  border: none;
  color: #222;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Sichtbar machen, wenn Menü aktiv */
.nav-links.active ~ .close-menu {
  opacity: 1;
  pointer-events: all;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  position: relative;
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  animation: fadeInUp 1s ease;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
}

.hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

/* Video Section */

.hero-video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

/* Button Styles */

.circle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: #transparent;
  border-radius: 50%;
  border: 2px dotted #fff;
  color: white;
  font-size: 2rem;
  text-decoration: none;
  cursor: pointer;
  animation: pulse 0.8s infinite ease-in-out;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  z-index: 10;
  margin-top: 40px;
}

.circle-btn:hover {
  background-color: #ff4000;
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(0);
  }
}

.circle-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.progress-circle {
  transform: rotate(-90deg); /* start at top */
}

.track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 4;
}

.indicator {
  fill: none;
  stroke: white;
  stroke-width: 1;
  stroke-dasharray: 282.74; /* 2πr = 2π*45 = ~282.74 */
  stroke-dashoffset: 282.74;
  animation: rotateStroke 4s linear infinite;
}

@keyframes rotateStroke {
  0% {
    stroke-dashoffset: 282.74;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

.arrow-down {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 20px solid white;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #ff4000;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 500;
  animation: fadeInUp 1s ease 0.4s;
  animation-fill-mode: both;
}

.btn:hover {
  background-color: #333;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Section Styles */
section {
  padding: 5rem 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #222;
  position: relative;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #ff4000;
}

/* Intro Section */
.intro {
  background-color: #f9f9f9;
}
.intro-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 0;
  font-size: 1.8rem;
  text-align: center;
}

/* Features Section */
.features {
  background-color: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-card {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: #ff4000;
  margin-bottom: 1rem;
}
.feature-icon svg {
  width: 48px;
  height: 48px;
  stroke: #ff4000;
  stroke-width: 1;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 1.5rem;
  }
}

/* About Section */

.about {
  background-color: #f9f9f9;
}

/* .about-container {
    display: flex;
    align-items: center;
    gap: 3rem;
  } */

.about-container {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-container.reverse {
  flex-direction: row-reverse;
}

/* Mobile: Bild immer oben, Text unten */
@media (max-width: 768px) {
  .about-container,
  .about-container.reverse {
    flex-direction: column;
    text-align: center;
  }
}

.about-container.mobile-reorder {
  flex-direction: column-reverse;
}

.about-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
  flex: 1;
}

.about-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #222;
}

/* Logo Grid */

.logo-container {
  position: relative;
  max-width: 1200px;
  margin-bottom: 0rem auto;
}
.logo-grid {
  background-color: #fff;
  padding: 6rem 0rem;
  text-align: center;
}

.logo-grid-title {
  font-size: 2.5rem;
  margin-bottom: 0rem;
  padding: 0rem;
  position: relative;
}

.logo-grid-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  background-color: #ff4000;
  margin: 1rem auto 0;
}

.logo-grid-row {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}

.logo-grid-row img {
  max-height: 200px;
  max-width: 200px;
  padding: 2rem 0;
  object-fit: contain;
  opacity: 0.9;
  filter: brightness(0) saturate(0) opacity(0.8);

  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-grid-row img:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* Services Section */
.portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-title {
  font-weight: 300;
  margin-bottom: 2rem;
  color: #333;
  text-align: center;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  background-color: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 300px; /* Feste Höhe für alle Karten */
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.portfolio-title {
  font-weight: 300;
  margin-bottom: 1rem;
  color: #333;
  cursor: pointer;
}

.portfolio-title:hover {
  color: #ff4000;
}

.portfolio-text {
  color: #666;
  line-height: 1.6;
}

/* Overlay Styles  - Services Section*/
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.overlay-content {
  background-color: white;
  width: 90%;
  max-width: 1000px;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  max-height: 90vh;
  overflow-y: auto;
}

@media (min-width: 768px) {
  .overlay-content {
    grid-template-columns: 1fr 1fr;
  }
}

.overlay-left {
  padding: 2rem;
}

.overlay-right {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.overlay-title {
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: #333;
}

.overlay-text {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.overlay-list {
  list-style-position: inside;
  margin-bottom: 1.5rem;
  color: #666;
}

.overlay-list li {
  margin-bottom: 0.5rem;
}

.overlay-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.overlay-image-container {
  flex: 1;
  min-height: 200px;
  background-color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-button-container {
  padding: 1.5rem;
}

.overlay-button {
  background-color: #ff4000;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 700;
  transition: background-color 0.3s ease;
}

.overlay-button:hover {
  background-color: #e63900;
}

.overlay-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Outro Section */
.outro {
  background-color: #fff;
}
.outro-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 0;
  font-size: 1.8rem;
  text-align: center;
}

.outro h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

.outro p {
  margin-top: 1rem;
  padding-top: 4rem;
  font-size: 1.2rem;
  font-weight: 300;
}

/* Contact Section */
.contact {
  background-color: #f9f9f9;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-radius: 10px;
  border: none;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: none;
}

.contact-icon {
  font-size: 1.5rem;
  color: #5d5fef;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border: none;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border: none;
}

.form-group label {
  font-weight: 500;
  color: #555;
  border: none;
}

.form-control {
  padding: 0.8rem;
  border-radius: 4px;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
}

.form-control:focus {
  outline: none;
  border-color: #ffa17f;
  box-shadow: 0 0 0 2px rgba(93, 95, 239, 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
  border: none;
}

/* Blog Section */

.hero-blog {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-blog:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.hero-content-blog .hero-title-blog {
  font-size: 2.2rem;
  line-height: 1.3;
  font-weight: 300;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-content-blog {
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-content-blog h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  animation: fadeInUp 1s ease;
}

.hero-content-blog p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 1000px;
  margin: 0 auto;
  gap: 2rem;
  padding: 1rem 0;
}

.blog-tile {
  background: #fff;
  color: #111;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.blog-tile:hover {
  transform: translateY(-5px);
}

.blog-link {
  color: inherit;
  text-decoration: none;
  display: block;
  height: 100%;
}

.blog-thumb {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.blog-info {
  padding: 1.2rem;
  color: #111;
}

.blog-info .blog-date {
  font-size: 0.85rem;
  color: #888;
}

.blog-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0.6rem 0;
  color: #222;
}

.blog-excerpt {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.blog-read-more {
  font-size: 0.9rem;
  font-weight: 500;
  color: #ff4000;
}

.meta-blog {
  font-size: 1rem;
  color: white;
}

.category-blog {
  background-color: #f8f8f8;
  padding: 5px 10px;
  border-radius: 20px;
  color: #333;
  display: inline-block;
  margin-top: 10px;
}
.category-blog:hover {
  background-color: #ffa17f;
  color: white;
}
.container-blog {
  max-width: 800px;
  padding: 50px 20px;
  margin: 0 auto;
  padding: 2rem;
  line-height: 1.7;
}

.parallax-wrapper {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin: 60px 0;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(0);
  will-change: transform;
  transition: transform 0.1s ease-out;
}

.image-container-blog {
  width: 100%;
  margin: 40px 0;
  overflow: hidden;
}

.image-container-blog img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 6px;
}

.quote-blog {
  font-size: 1.5rem;
  font-style: italic;
  text-align: center;
  padding: 30px;
  background-color: #f8f8f8;
  margin: 40px 0;
  border-left: 4px solid #ccc;
}

@media (max-width: 768px) {
  .hero-content-blog h1 {
    font-size: 2rem;
  }

  .hero-blog {
    background-attachment: scroll;
  }

  .image-container-blog {
    background-attachment: scroll;
    height: 200px;
  }
}

/* Footer */
footer {
  background-color: #333;
  padding: 40px 0;
  font-size: 12px;
  color: var(--light-text);
  color: #ffffff;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid #d2d2d7;
  margin-bottom: 20px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
  padding-left: 1rem;
}

.footer-column h4 {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-color);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 8px;
}

.footer-legal {
  font-size: 12px;
  color: #fff;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
  }

  .about-image,
  .about-content {
    flex: none;
    width: 100%;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* @media (max-width: 768px) {
    .nav-links {
      position: fixed;
      top: 70px;
      left: 0;
      background-color: #f0f0f0;
      width: 100%;
      flex-direction: column;
      align-items: center;
      padding: 2rem 0;
      clip-path: circle(0px at 100% 0);
      transition: all 0.5s ease-out;
      pointer-events: none;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      z-index: 9999;
    }
  
    .nav-links.active {
      clip-path: circle(1000px at 90% -10%);
      pointer-events: all;
      height: 100vh;
      overflow-y: auto;
    }
  
    .nav-links li {
      margin: 1rem 0;
      color: #333;
    }
  
    .menu-toggle {
      display: block;
      color: #ff4000;
    }
  
    .menu-toggle.active .bar:nth-child(1) {
      transform: rotate(-45deg) translate(-5px, 6px);
    }
  
    .menu-toggle.active .bar:nth-child(2) {
      opacity: 0;
    }
  
    .menu-toggle.active .bar:nth-child(3) {
      transform: rotate(45deg) translate(-5px, -6px);
    }
  */

/* Mobile Navigation */

/* Mobile Menu Specific Styles */

@media (min-width: 769px) {
  .menu-toggle {
    display: none !important;
  }

  .nav-links {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    position: static !important;
    height: auto !important;
    flex-direction: row !important;
    background-color: transparent !important;
  }

  .nav-links li {
    opacity: 1 !important;
    transform: none !important;
    margin: 0 !important;
  }
}

/* Burger Menu - Default state (white) */
@media (max-width: 768px) {
  /* Styling for the hamburger menu bars */
  .menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: white; /* White burger menu initially */
    margin: 5px 0;
    transition: 0.4s;
  }

  /* When navbar is scrolled, bars should be dark for contrast */
  nav#navbar.scrolled .menu-toggle .bar {
    background-color: #222;
  }

  /* Mobile Navigation Menu */
  .nav-links {
    position: fixed;
    top: 0; /* Start from the top of the viewport */
    left: 0;
    background-color: white;
    width: 100%;
    height: 100vh; /* Full height of viewport */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center links vertically */
    align-items: center;
    padding: 2rem 0;

    /* Starting state - hidden */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    /* Animation properties */
    transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    transform: translateY(-20px);
    z-index: 9999;
  }

  /* Active state - shown */
  .nav-links.active {
    opacity: 1;
    display: flex;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
  }

  /* Navigation links styling */
  .nav-links li {
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    transition-delay: 0.1s;
  }

  /* Staggering animation for links when menu is open */
  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

  /* Stagger the delays for each link */
  .nav-links.active li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-links.active li:nth-child(2) {
    transition-delay: 0.2s;
  }
  .nav-links.active li:nth-child(3) {
    transition-delay: 0.3s;
  }
  .nav-links.active li:nth-child(4) {
    transition-delay: 0.4s;
  }
  .nav-links.active li:nth-child(5) {
    transition-delay: 0.5s;
  }
  .nav-links.active li:nth-child(6) {
    transition-delay: 0.6s;
  }
  .nav-links.active li:nth-child(7) {
    transition-delay: 0.7s;
  }

  /* Link styling */
  .nav-links a {
    text-decoration: none;
    color: #333; /* Dark gray text */
    font-weight: 400;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
  }

  /* Hover and active state for links */
  .nav-links a:hover,
  .nav-links a:active {
    color: #ff4000; /* Orange color as requested */
  }

  /* Active state for the toggle button */
  .menu-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    background-color: #222; /* Dark when active */
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    background-color: #222; /* Dark when active */
  }

  /* Logo adjustment when menu is open */
  .nav-links.active + .logo img {
    filter: none; /* Restore original colors */
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

/* Mark down styles */
.container-blog h2,
.container-blog h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  color: #222;
}

.container-blog p {
  margin: 1.2rem 0;
  line-height: 1.7;
}

.container-blog img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.container-blog blockquote {
  font-style: italic;
  padding-left: 1rem;
  border-left: 3px solid #ff4000;
  color: #555;
  margin: 1.5rem 0;
}

.container-blog ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
  list-style: disc;
}

.hero-content-blog {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.hero-blog::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* optional: dunkles Overlay */
  z-index: 1;
}

.hero-content-blog h1 {
  font-size: 3rem;
  font-weight: 300;
  color: white;
  margin-bottom: 1rem;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.meta-blog {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  text-align: center;
  margin-bottom: 1rem;
}

.container-blog blockquote {
  font-style: italic;
  border-left: 4px solid #ccc;
  padding-left: 1rem;
  margin: 1.5rem 0;
}

.container-blog code {
  background-color: #f4f4f4;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

/* Hero Index Linsbündig mobile Optimierung */
@media (max-width: 768px) {
  .hero.hero-index {
    background-position: left center;
  }
}
/* Check Box Styling */

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.3rem; /* optional: für bessere vertikale Ausrichtung */
}

/* Social Share Styles */
.social-share {
  text-align: center;
  margin-top: 3rem;
}

.social-share p {
  margin-bottom: 1rem;
  font-weight: 500;
  color: #333;
}

.social-share a {
  margin: 0 10px;
  font-size: 1.5rem;
  color: #555;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-share a:hover {
  color: #ff4000;
  transform: scale(1.2);
}
