/* ========================================= */
/* 🌍 Global Reset für Landingpage */
/* ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  background: linear-gradient(to bottom, #2a2a2a 0%, #101010 100%);
}

/* ========================================= */
/* 🎯 Header & Navigation */
/* ========================================= */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(to bottom, #2a2a2a 0%, #1a1a1a 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  gap: 30px;
}

.header-logo {
  flex-shrink: 0;
}

.header-logo .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: 0.3s;
  padding: 8px 12px;
  border-radius: 8px;
}

.header-logo .logo:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.logo-icon {
  font-family: "Michroma", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  width: 50px;
  height: 50px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(37, 117, 252, 0.3);
}

.logo-text {
  font-family: "Michroma", sans-serif;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 400;
}

/* Header Kontakt Block */
.header-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Open Sans", sans-serif;
  font-size: 0.9rem;
}

.contact-icon {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}

.contact-line a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-line a:hover {
  color: #fff;
  text-decoration: none;
}

.header-right {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-left: auto;
}

.header-right a {
  color: #ddd;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  position: relative;
}

.header-right a:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}

.header-right a.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(106, 17, 203, 0.3), rgba(37, 117, 252, 0.3));
  font-weight: 600;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  width: 28px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================= */
/* 🎯 Hero Section - Neues Layout */
/* ========================================= */
.hero-section {
  background: linear-gradient(135deg, #2a2a2a 0%, #101010 100%);
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 30px 60px 30px;
  text-align: center;
}

.hero-text {
  color: white;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-family: "Michroma", sans-serif;
  font-size: 3.5rem;
  margin: 0 0 25px 0;
  line-height: 1.2;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  font-family: "Open Sans", sans-serif;
  font-size: 1.4rem;
  margin: 0 0 35px 0;
  line-height: 1.6;
  color: #ddd;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-btn {
  font-family: "Michroma", sans-serif;
  padding: 16px 40px;
  font-size: 1rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 400;
  cursor: pointer;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 117, 252, 0.3);
}

.hero-btn-primary:hover {
  background: linear-gradient(135deg, #2575fc, #6a11cb);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 117, 252, 0.5);
  text-decoration: none;
}

.hero-btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

/* Hero Image - Volle Breite unterhalb des Textes */
.hero-image-full {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  animation: fadeIn 1s ease-out 0.6s both;
}

.hero-image-full img {
  width: 100%;
  height: auto;
  min-height: 400px;
  max-height: 600px;
  object-fit: cover;
  object-position: center;
  display: block;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.5);
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ========================================= */
/* 📄 Landing Page Sections */
/* ========================================= */
section {
  scroll-margin-top: 80px; /* Offset für sticky header */
}

.landing-section {
  background: rgba(20, 20, 20, 0.9);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 30px;
  color: white;
}

.landing-section h2 {
  font-family: "Michroma", sans-serif;
  font-size: 2.2rem;
  text-align: center;
  margin: 0 0 40px 0;
  color: #fff;
}

/* ========================================= */
/* 🎨 Services Grid */
/* ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.service-card {
  background: rgba(40, 40, 40, 0.6);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
  transform: translateY(-5px);
  background: rgba(50, 50, 50, 0.8);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
  border-color: rgba(37, 117, 252, 0.5);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: "Michroma", sans-serif;
  font-size: 1.4rem;
  margin: 0 0 15px 0;
  color: #fff;
}

.service-card p {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
  margin: 0;
}

/* ========================================= */
/* ✨ Features Section */
/* ========================================= */
.features-section {
  background: linear-gradient(135deg, rgba(106, 17, 203, 0.25), rgba(37, 117, 252, 0.25)), rgba(20, 20, 20, 0.9);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #2575fc;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
  border-left-color: #6a11cb;
}

.feature-item h3 {
  font-family: "Michroma", sans-serif;
  font-size: 1.2rem;
  margin: 0 0 10px 0;
  color: #fff;
}

.feature-item p {
  font-family: "Open Sans", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ddd;
  margin: 0;
}

/* ========================================= */
/* 📢 Call to Action Section */
/* ========================================= */
.cta-section {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  text-align: center;
}

.cta-text {
  font-family: "Open Sans", sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #fff;
  max-width: 700px;
  margin: 0 auto 30px auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  font-family: "Michroma", sans-serif;
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 400;
  cursor: pointer;
}

.cta-btn-primary {
  background: #fff;
  color: #6a11cb;
}

.cta-btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.cta-btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  text-decoration: none;
}

/* ========================================= */
/* 📄 Impressum & Datenschutz Seite */
/* ========================================= */
.impressum-page-section,
.datenschutz-page-section {
  text-align: left;
  max-width: 1000px;
}

.impressum-page-section h1,
.datenschutz-page-section h1 {
  font-family: "Michroma", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
  color: #fff;
}

.impressum-content h3,
.datenschutz-content h3 {
  font-family: "Michroma", sans-serif;
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #fff;
}

.impressum-content h4,
.datenschutz-content h4 {
  font-family: "Open Sans", sans-serif;
  font-size: 1.2rem;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #ddd;
  font-weight: 600;
}

.impressum-content p,
.datenschutz-content p {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #ddd;
}

.info-block {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 3px solid #2575fc;
  margin: 15px 0;
}

.info-block strong {
  color: #fff;
  display: block;
  margin-bottom: 8px;
}

.impressum-content ul,
.datenschutz-content ul {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #ddd;
  margin: 15px 0;
  padding-left: 30px;
}

.impressum-content ul li,
.datenschutz-content ul li {
  margin-bottom: 8px;
}

.impressum-content a,
.datenschutz-content a {
  color: #2575fc;
  text-decoration: none;
  transition: color 0.3s;
}

.impressum-content a:hover,
.datenschutz-content a:hover {
  color: #6a11cb;
  text-decoration: underline;
}

.back-to-home {
  margin-top: 40px;
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================= */
/* 🔻 Footer */
/* ========================================= */
.footer {
  background: linear-gradient(to bottom, #2a2a2a 0%, #101010 100%);
  border-radius: 30px 30px 0 0;
  margin-top: 60px;
  padding: 40px 30px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.5);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Footer Logo Section */
.footer-logo-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-icon {
  font-family: "Michroma", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  width: 45px;
  height: 45px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(37, 117, 252, 0.3);
}

.footer-logo-text {
  font-family: "Michroma", sans-serif;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 400;
}

/* Footer Center - Kontakt & Copyright */
.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Open Sans", sans-serif;
  font-size: 0.95rem;
}

.footer-contact-icon {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}

.footer-contact-line a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-line a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-copyright {
  margin-top: 10px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
  font-family: "Open Sans", sans-serif;
  font-size: 0.85rem;
  color: #999;
  margin: 0;
}

/* Footer Legal Links */
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.footer-legal a {
  font-family: "Open Sans", sans-serif;
  font-size: 0.95rem;
  color: #ddd;
  text-decoration: none;
  transition: all 0.3s;
  padding: 8px 12px;
  border-radius: 6px;
}

.footer-legal a:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

/* ========================================= */
/* 📱 Responsive Design - Tablet */
/* ========================================= */
@media screen and (max-width: 768px) {
  .header {
    padding: 12px 20px;
    flex-wrap: wrap;
    gap: 15px;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .logo-icon {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
  }

  .header-contact {
    order: 3;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .contact-line {
    font-size: 0.85rem;
  }

  .menu-toggle {
    display: flex;
    order: 2;
  }

  .header-right {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    flex-direction: column;
    background: linear-gradient(to bottom, #3d3d3d 0%, #1c1c1c 100%);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    padding: 20px 0;
    gap: 0;
    margin-left: 0;
    order: 4;
  }

  .header-right.active {
    display: flex;
  }

  .header-right a {
    padding: 15px 30px;
    border-radius: 0;
    width: 100%;
  }

  .hero-content {
    padding: 60px 20px 50px 20px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-image-full img {
    min-height: 300px;
    max-height: 450px;
  }

  .hero-buttons {
    gap: 15px;
  }

  .landing-section {
    padding: 30px 20px;
    margin: 30px 15px;
  }

  .landing-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-logo-section {
    align-items: center;
  }

  .footer-legal {
    align-items: center;
  }
}

/* ========================================= */
/* 📱 Responsive Design - Mobile */
/* ========================================= */
@media screen and (max-width: 400px) {
  .header {
    padding: 10px 15px;
  }

  .logo-text {
    font-size: 0.95rem;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }

  .header-contact {
    flex-direction: column;
    gap: 8px;
    align-items: center;
    padding-top: 8px;
  }

  .contact-line {
    font-size: 0.8rem;
    justify-content: center;
  }

  .hamburger-line {
    width: 25px;
  }

  .header-right a {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .hero-content {
    padding: 40px 15px 35px 15px;
  }

  .hero-title {
    font-size: 1.9rem;
    margin-bottom: 18px;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .hero-image-full img {
    min-height: 250px;
    max-height: 350px;
  }

  .landing-section {
    padding: 25px 15px;
    margin: 20px 10px;
    border-radius: 15px;
  }

  .landing-section h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .service-card {
    padding: 20px;
  }

  .service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 0.95rem;
  }

  .feature-item {
    padding: 20px;
  }

  .feature-item h3 {
    font-size: 1.1rem;
  }

  .feature-item p {
    font-size: 0.9rem;
  }

  .cta-text {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .cta-btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .footer {
    margin-top: 40px;
    padding: 30px 20px;
    border-radius: 20px 20px 0 0;
  }

  .footer-content {
    gap: 25px;
  }

  .footer-logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }

  .footer-logo-text {
    font-size: 1.1rem;
  }

  .footer-contact-line {
    font-size: 0.85rem;
  }

  .footer-copyright p {
    font-size: 0.8rem;
  }

  .footer-legal a {
    font-size: 0.9rem;
  }
}