* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-bg: #1a1b1e;
  --primary-bg2: #0a0a0a;
  --secondary-bg: #25262b;
  --secondary-bg2: #111;
  --border-color: #222;
  --text-primary: #ffffff;
  --text-secondary: #ccc;
  --text-muted: #888;
  --accent-color: #00d4ff;
  --accent-blue: #0099cc;
  --hover-bg: #1a1a1a;
  --border-light: #333;
  --border-lighter: #555;
  --transition-speed: 0.3s;
  --bg-color: #0a0a0a;
  --surface-color: #1a1a1a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  background-color: var(--primary-bg);
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  padding: 1rem 2rem;
  border-bottom: 1px solid #1a1a1a;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 101;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.company-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

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

.status-badge {
  background: #1a1a1a;
  color: #888;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  border: 1px solid #2a2a2a;
  order: 2;
}

.language-switcher {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  font-size: 0.9rem;
  min-width: 40px;
  font-weight: 500;
}

.lang-btn:hover,
.lang-btn:focus {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: rgba(255, 215, 0, 0.1);
}

.lang-btn.active {
  background: var(--accent-color);
  color: var(--primary-bg);
  border-color: var(--accent-color);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

main {
  position: relative;
  background: linear-gradient(135deg, #0a0a0a, #111, #001f3f, #0099cc);
  background-size: 400% 400%;
  animation: neonShift 15s ease forwards;
  overflow: hidden;
  min-height: 100vh;
}

main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 20px 20px;
  opacity: 0.1;
  pointer-events: none;
}

@keyframes neonShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.main-content {
  margin-top: auto;
  padding: 1rem 1rem;
  margin-left: auto;
  margin-right: auto;
}

.content {
  margin-top: 80px;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

#content {
  scroll-margin-top: 70px;
}

#services-content {
  scroll-margin-top: 70px;
}

.hero-section {
  text-align: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0 2rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #888;
  margin-bottom: 2rem;
  font-weight: 400;
}

.description {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.story {
  font-size: 1.4rem;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.cta-button {
  display: inline-block;
  background: var(--accent-blue);
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 170px;
}

.cta-button:hover {
  transform: translateY(-2px);
}

.contact-cta-button {
  display: inline-block;
  background: var(--accent-blue);
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.h1-services {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 3rem;
  text-align: center;
}

.h1-about-us {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 3rem;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.service-card {
  background: var(--secondary-bg);
  border: 1px solid #222;
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.3s ease;
}

.service-card:hover {
  border-color: #333;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: #1a1a1a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.button-wrapper {
  text-align: center;
  margin-bottom: 170px;
  margin-bottom: 0px;
}

.service-description {
  color: #888;
  font-size: 0.95rem;
}

.services-button {
  display: inline-block;
  margin: 0 auto 170px;
  background: var(--accent-blue);
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 170px;
}

.services-button:hover {
  transform: translateY(-2px);
}

.contact-section {
  background: var(--secondary-bg);
  border: 1px solid #222;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px;
  max-width: 700px;
  margin: 0 auto;
  gap: 30px;
}

.contact-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ccc;
}

.footer {
  border-top: 1px solid var(--border-color);
  padding: 2rem;
  text-align: center;
  color: #666;
  margin-top: 4rem;
}

.footer-links {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #888;
  text-decoration: none;
  margin: 0 0.5rem;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #ccc;
}

.footer-links span {
  color: #444;
}

.footer-socials {
  margin-bottom: 1rem;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-socials a {
  color: #888;
  margin: 0 0.5rem;
  font-size: 1.2rem;
  text-decoration: none;
}

.footer-socials a:hover {
  opacity: 0.8;
}

.footer-socials a.instagram {
  color: #e1306c;
  text-decoration: none;
}
.footer-socials a.facebook {
  color: #3b5998;
  text-decoration: none;
}
.footer-socials a.linkedin {
  color: #0077b5;
  text-decoration: none;
}
.footer-socials a.tiktok {
  color: #69c9d0;
  text-decoration: none;
}

.trustpilot-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  width: 100%;
}

.trustpilot-widget {
  width: 100%;
  max-width: 500px;
}

@media (max-width: 768px) {
  .header {
    padding: 0.5rem 1rem;
    height: 60px;
  }

  .logo-container {
    gap: 0.5rem;
  }

  .logo {
    width: 32px;
    height: 32px;
  }

  .company-name {
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
  }

  /* Mobile Menu Button anzeigen */
  .mobile-menu-btn {
    display: block;
    order: 3;
    font-size: 2rem;
    padding: 0.25rem;
  }

  /* Nav-right für mobile Ansicht */
  .nav-right {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 250px;
    height: auto;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    z-index: 101;
    border-radius: 0 0 0 12px;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.3);
    border-left: 1px solid #333;
    border-bottom: 1px solid #333;
  }

  .nav-right.active {
    right: 0;
  }

  /* Status Badge und Language Switcher im mobilen Menü anpassen */
  .status-badge {
    order: 1;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
  }

  .nav-menu {
    order: 1;
    display: block;
    align-items: center;
    text-align: center;
  }

  .nav-link {
    background-color: var(--border-light);
    /* background: transparent; */
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    font-size: 0.9rem;
    min-width: 40px;
    font-weight: 500;
  }

  .nav-menu li {
    margin-bottom: 2rem;
  }

  .language-switcher {
    order: 2;
    justify-content: center;
    padding: 0.3rem;
  }

  .lang-btn {
    padding: 0.4rem 0.8rem;
    font-size: 1rem;
  }

  /* Hauptinhalt anpassen */
  .main-content {
    margin-top: 60px;
    padding: 2rem 1rem;
  }

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

  .opening-times {
    font-size: 12px;
  }
}

/* Tablet adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
  .container {
    max-width: 90%;
  }
}

/* Print styles */
@media print {
  .header,
  .footer,
  .skip-link,
  .mobile-menu-btn,
  .language-switcher,
  .back-link {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .container {
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .content {
    background: white;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .info-section {
    break-inside: avoid;
    page-break-inside: avoid;
    background: white;
    border-left-color: #333;
  }

  h1,
  h2 {
    color: black;
  }

  p {
    color: #333;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .skip-link {
    transition: none;
  }
}

/* ===== ABOUT PAGE SECTIONS ===== */

.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Intro --- */
.about-intro {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 4rem;
  color: var(--text-secondary);
}

.about-intro strong {
  color: var(--accent-blue);
}

/* --- Founders --- */
.founders-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 5rem;
}

.founder-card {
  background: var(--secondary-bg);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  width: 260px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.founder-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 2px solid var(--accent-blue);
}

.founder-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-blue);
}

/* --- Mission --- */
.mission {
  text-align: center;
  margin-bottom: 5rem;
}

.mission h2 {
  color: var(--accent-blue);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.mission p {
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 2rem auto;
}

.mission-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.mission-item {
  background: var(--secondary-bg);
  padding: 0.1rem 2rem;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  transition: border-color 0.3s ease;
  text-align: center;
}


.mission-item p {
  padding-top: 30px;
}

.mission-item i {
  color: var(--accent-blue);
  font-size: 1.5rem;
}

.mission-item:hover {
  border-color: var(--accent-blue);
}

/* --- Services --- */
.services {
  margin-bottom: 5rem;
  text-align: center;
}

.services h2 {
  color: var(--accent-blue);
  font-size: 2rem;
  margin-bottom: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--secondary-bg);
  border: 1px solid var(--border-light);
  padding: 2rem;
  border-radius: 12px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-blue);
}

.service-card i {
  font-size: 2rem;
  color: var(--accent-blue);
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

/* --- Values --- */
.values {
  text-align: center;
  margin-bottom: 4rem;
}

.values h2 {
  color: var(--accent-blue);
  font-size: 2rem;
  margin-bottom: 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.value-card {
  background: var(--secondary-bg);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  transition: border-color 0.3s ease;
}

.value-card i {
  font-size: 1.8rem;
  color: var(--accent-blue);
}

.value-card:hover {
  border-color: var(--accent-blue);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .founder-card {
    width: 90%;
  }

  .mission-item {
    width: 100%;
  }
}

/* ===== SERVICES PAGE ===== */

.services-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.service-item {
  background: var(--secondary-bg);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 2rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
  position: relative;
}

.service-item:hover {
  border-color: var(--accent-blue);
  transform: translateY(-4px);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-header i {
  font-size: 1.8rem;
  color: var(--accent-blue);
}

.service-summary {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.toggle-btn {
  background: none;
  border: none;
  color: var(--accent-blue);
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s ease;
  margin-bottom: 0.5rem;
}

.toggle-btn:hover {
  color: var(--text);
}

.service-details {
  display: none;
  margin-top: 0.5rem;
  color: var(--text-secondary);
}

.service-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-details li {
  margin-bottom: 0.4rem;
  position: relative;
  padding-left: 1.2rem;
}

.service-details li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-blue);
}

/* Active state */
.service-item.active .service-details {
  display: block;
}


/* ===== CONTACT PAGE ===== */
.contact-info-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  gap: 30px;
}

#contact {
  scroll-margin-top: 290px;
}

.contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.contact-item a {
  color: var(--accent-color);
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.contact-person img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-blue);
}

.contact-person h3 {
  font-size: 1.5rem;
  margin: 0;
}

.contact-person p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 1rem;
}

.contact-note {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-top: 20px;
}
