* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #1a1a1a;
}

.header {
  background: #1a1a1a;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 2px solid #93632a;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 40px;
  object-fit: contain;
}


/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links li a {
  text-decoration: none;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  background: linear-gradient(90deg, #93632a 0%, #f3e998 50%, #93632a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: linear-gradient(90deg, #93632a 0%, #f3e998 50%, #93632a 100%);
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* Menü CTA Link (separat vom Standard-Navigationstext behandeln) */
.nav-links li.cta a {
  all: unset;
  display: inline-block;
  background: linear-gradient(90deg, #93632a 0%, #f3e998 50%, #93632a 100%);
  color: #1a1a1a;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.nav-links li.cta a::after {
  content: none !important;
}

.nav-links li.cta a:hover {
  background: linear-gradient(90deg, #93632a 0%, #f3e998 50%, #93632a 100%);
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(212, 175, 55, 0.5);
  text-decoration: none;
}

@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
  }
}


/* Hamburger Menü */
.hamburger {
  display: none;
  font-size: 28px;
  border: 2px solid #93632a;
  border-radius: 4px;
  padding: 6px 12px;
  color: #93632a;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hamburger.active::before {
  content: "✖";
  /* X Symbol bei aktivem Menü */
  color: #93632a;
}

.hamburger::before {
  content: "☰";
  color: #93632a;
}


@media (max-width: 768px) {
  .hamburger {
    display: block;
    font-size: 28px;
    background: none;
    border: 2px solid #93632a;
    border-radius: 4px;
    padding: 6px 12px;
    color: #93632a;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: #1a1a1a;
    flex-direction: column;
    width: 100%;
    display: none;
    padding: 20px;
    border-left: 2px solid #93632a;
    transition: all 0.4s ease;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

/* hero-section */
.hero {
  padding: 40px 5px 60px;
  background: #e3d6b4;
  color: #1a1a1a;
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero-grid {
  scroll-margin-top: 200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-text {
  text-align: left;
  max-width: 600px;
}

.hero-image {
  display: flex;
  justify-content: left;
}


.hero-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
}


.hero-content {
  position: relative;
  max-width: 1200px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.hero-checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.hero-checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.hero-checklist li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #93632a;
  font-weight: bold;
}

.highlight {
  color: #93632a;
}


.btn-gold {
  background: linear-gradient(90deg, #93632a 0%, #f3e998 50%, #93632a 100%);
  color: #1a1a1a;
  padding: 14px 36px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: inline-block;
}

.btn-gold:hover {
  background: linear-gradient(90deg, #93632a 0%, #f3e998 50%, #93632a 100%);
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(212, 175, 55, 0.5);
}

/* Hero Text Animation */
@keyframes slideInLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in-left {
  animation: slideInLeft 1s ease-out forwards;
}

@keyframes slideInTop {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.slide-in-top {
  animation: slideInTop 1s ease-out forwards;
}

@media (max-width: 768px) {
  .hero-grid {
    display: block;
    /* Grid auflösen */
  }

  .hero-image {
    order: -1;
    justify-content: center;
    margin-bottom: 30px;
  }

  .hero-content {
    padding: 0 20px;
    max-width: 100%;
  }

  .hero-content h1,
  .hero-content p,
  .hero-checklist {
    text-align: left;
  }
}


/* problem-section */
.probleme-section {
  background-image: linear-gradient(rgba(26, 26, 26, 0.7)), url('/images/problem_bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 80px 0;
}


.probleme-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  justify-items: center;
  align-items: start;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .probleme-grid {
    grid-template-columns: 1fr;
    justify-content: center;
  }
}


.problem-card {
  background: #e3d6b4;
  padding: 80px 30px 30px 30px;
  border-radius: 8px;
  width: 100%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.5);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.4);
}

.problem-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.problem-card p {
  color: #2a2a2a;
  font-size: 1.1rem;
  margin-top: 10px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.problem-card {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}


.problem-card:nth-child(1) {
  animation-delay: 0.2s;
}

.problem-card:nth-child(2) {
  animation-delay: 0.4s;
}

.problem-card:nth-child(3) {
  animation-delay: 0.6s;
}

.problem-card:nth-child(4) {
  animation-delay: 0.8s;
}

/* solution-section */
.loesung-section {
  background: #e3d6b4;
  padding: 80px 0;
}

.loesung-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.loesung-card {
  background: #1a1a1a;
  /* Helle Karten */
  border: 4px solid #93632a;
  /* Stärkerer goldener Rahmen */
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.loesung-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.loesung-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #93632a;
}

.loesung-grid .loesung-card p {
  color: #fff;
  font-size: 1.1rem;
}



/* projects-section */
.projekte-section {
  background: #1a1a1a;
  /* Dunkler Hintergrund */
  padding: 80px 0;

}


.projekte-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.projekt-card {
  background: #e3d6b4;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.projekt-card:hover {
  transform: translateY(-5px);
}

.projekt-inner {
  display: flex;
  flex-direction: column;
}

.projekt-info,
.projekt-image {
  padding: 30px;
}

.projekt-info {
  flex: 1;
}

.projekt-info h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.projekt-info p,
.projekt-info ul {
  color: #2a2a2a;
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.5;
}

.projekt-info a {
  color: #1a1a1a;
  text-decoration: underline;
}

.projekt-info a:hover {
  color: #d4af37;
}

.projekt-feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.projekt-feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #2a2a2a;
  font-size: 1rem;
  line-height: 1.5;
}

/* Goldener Haken als Bullet */
.projekt-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}


.projekt-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  max-height: 400px;
}


.projekt-image .mobile-image {
  width: 200px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}


/* Desktop: Text links, Bild rechts */
@media (min-width: 768px) {
  .projekt-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }

  .projekt-info {
    width: 40%;
    padding: 40px;
  }

  .projekt-image {
    width: 60%;
    padding: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .projekt-image img.small {
    width: 200px;
    height: auto;
    border-radius: 8px;
  }

  .projekt-image img.big {
    width: 400px;
    height: auto;
    border-radius: 8px;
  }
}

/* meet-section */
.ablauf-section {
  background: #e3d6b4;
  padding: 80px 0;
}


/* Wrapper & Linie */
.timeline-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  /* exakt mittig für Marker mit 40px Breite */
  width: 2px;
  background-color: #93632a;
  opacity: 0.6;
  z-index: 0;
}

/* Einzelschritt */
.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 60px;
}

/* Marker-Kreis */
.timeline-marker {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background-color: #93632a;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

/* Content-Box im dunklen Kartenstil */
.timeline-content {
  background: #1a1a1a;
  border: 4px solid #93632a;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.timeline-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #93632a;
}

.timeline-item .timeline-content p {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

/* about-section */
.about-section {
  background-color: #1a1a1a;
  padding: 80px 0;
  color: #fff;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 60px;
  color: #93632a;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  padding: 0 20px;
}


.about-content .about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 15px;
}

.about-image img {
  background-color: #e3d6b4;
  max-width: 80%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

/* Desktop: zweispaltig */
@media (min-width: 768px) {
  .about-content {
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
  }

  .about-text {
    width: 45%;
  }

  .about-image {
    width: 40%;
  }

  .about-image img {
    background-color: #e3d6b4;
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
  }
}

/* contact-section */
.contact-section {
  background-color: #e3d6b4;
  padding: 80px 0;
  color: #1a1a1a;
}

.contact-section .container {
  max-width: 800px;
}

.container p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #2a2a2a;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  background: #fff;
  color: #1a1a1a;
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 1rem;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #93632a;
  outline: none;
}

/* Responsive Layout */
@media (min-width: 768px) {
  .contact-grid {
    flex-direction: row;
    justify-content: space-between;
  }

}


/* onboarding-section */
.onboarding-section {
  background: #1a1a1a;
  padding: 80px 0;
}

.onboarding-section .container {
  max-width: 800px;
}

.onboarding-section .container h3 {
  font-size: 1.2rem;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #93632a;
}

.onboarding-section .container p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #fff;
}

.onboarding-form {
  display: none;
  flex-direction: column;
  color: #fff;
}

/* FORM-GRUPPEN FÜR ABSTAND */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

/* INPUTS, TEXTAREAS, SELECTS */
.onboarding-form input,
.onboarding-form textarea,
.onboarding-form select {
  width: 100%;
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 1rem;
  color: #1a1a1a;
  transition: border 0.2s ease;
  box-sizing: border-box;
  resize: vertical;
}

.onboarding-form input:focus,
.onboarding-form textarea:focus,
.onboarding-form select:focus {
  border-color: #93632a;
  outline: none;
}

/* INLINE-OPTIONEN (CHECKBOX/RADIO + TEXT) */
.option-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
}

/* CHECKBOXEN & RADIOBUTTONS */
.onboarding-form input[type="checkbox"],
.onboarding-form input[type="radio"] {
  accent-color: #93632a;
  width: 18px;
  height: 18px;
  margin: 0;
  flex-shrink: 0;
}

/* VERSTECKTE SONSTIGES-FELDER MIT ABSTAND */
.onboarding-form input[type="text"][style*="display:none"] {
  margin-top: 10px;
}


/* faq-section */
.faq-section {
  background-color: #e3d6b4;
  padding: 80px 0;
  color: #1a1a1a;
}


.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.faq-item {
  background-color: #fff;
  border: 3px solid #d4af37;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.faq-question {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #93632a;
}

.faq-answer {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #2a2a2a;
}

/* footer */

.site-footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 60px 0 30px;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-brand img.footer-logo {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 300px;
}

.footer-nav h4,
.footer-contact h4,
.footer-legal h4 {
  color: #93632a;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.footer-nav ul,
.footer-legal ul {
  list-style: none;
  padding: 0;
}

.footer-nav ul li,
.footer-legal ul li {
  margin-bottom: 8px;
}

.footer-nav ul li a,
.footer-legal ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav ul li a:hover,
.footer-legal ul li a:hover {
  color: #93632a;
}

.footer-contact p {
  margin-bottom: 8px;
  color: #ccc;
}

.footer-contact a {
  color: #93632a;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-socials a {
  margin-right: 12px;
  font-size: 1.2rem;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #d4af37;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #ccc;
}

/* Footer Button: Cookie-Einstellungen */
#open-cookies {
  background: #e3d6b4;       /* Gold-Akzent wie im Design */
  color: #1a1a1a;            /* dunkler Text */
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s ease, transform 0.15s ease;
}

#open-cookies:hover {
  background: #d6c59c;       /* etwas dunkler beim Hover */
  transform: translateY(-1px);
}

#open-cookies:focus-visible {
  outline: 3px solid #e3d6b4;
  outline-offset: 2px;
}


/* Responsive Layout */
@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .footer-brand,
  .footer-nav,
  .footer-contact,
  .footer-legal {
    width: 22%;
  }
}

/* Basis für Impressum & Datenschutz */
.legal-section {
  margin: 0 auto;
  padding: 20px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #1a1a1a;
  background: #e3d6b4;
}

/* Überschriften */
.legal-section h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  border-bottom: 3px solid #93632a; /* Gold-Akzent */
  padding-bottom: 0.3rem;
}

.legal-section h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: #1a1a1a;
}

.legal-section h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #333;
}

/* Absätze */
.legal-section p {
  margin-bottom: 1rem;
}

/* Listen */
.legal-section ul {
  margin-left: 20px;
  padding-left: 20px;
  list-style-type: disc;
}

.legal-section ul li {
  margin-bottom: 8px;
  color: #2a2a2a;
  line-height: 1.6;
}

/* Links */
.legal-section a {
  color: inherit;  
  text-decoration: none;
}
.legal-section a:hover {
  text-decoration: underline;
}
