/* 🎨 Globales Design & Variablen (Für die gesamte Website) */
:root {
  --bg-color: #ffffff;
  --light-bg-color: #f8f9fa;
  --text-color: #5a6169;
  --heading-color: #212529;
  --primary-color: #6a00ff;
  --border-color: #e9ecef;
  --shadow-color: rgba(106, 0, 255, 0.07);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.7;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  background: var(--primary-color);
  color: white !important; /* !important beibehalten für Konsistenz */
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(106, 0, 255, 0.3);
}

/* =============================================== */
/* 🔝 Navigation & Footer (Für alle Seiten gleich) */
/* =============================================== */

.main-nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  padding: 15px 0;
  z-index: 1000;
}

.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--heading-color);
  text-decoration: none;
}

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

.nav-links a {
  margin-left: 30px;
  text-decoration: none;
  color: var(--text-color);
  font-weight: 700;
  font-size: 0.9rem;
}

.social-media-links {
  display: flex;
  align-items: center;
  margin-left: 40px; /* Abstand zu den Navigationslinks */
}

.social-media-links a {
  color: var(--primary-color); /* Lila Farbe aus Ihren Variablen */
  font-size: 2.6rem; /* Etwas größere Icons */
  margin-left: 20px; /* Abstand zwischen den Icons */
  transition: transform 0.2s;
}

.social-media-links a:hover {
  transform: translateY(-2px); /* Gleicher Hover-Effekt wie bei den Buttons */
}

.lang-switcher {
  margin-left: 40px;
  border-left: 1px solid var(--border-color);
  padding-left: 30px;
}

.lang-switcher a {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-color);
  text-decoration: none;
  padding: 5px 8px;
  border-radius: 5px;
}

.lang-switcher a.active {
  background-color: var(--primary-color);
  color: white;
}

.lang-switcher a:not(.active):hover {
  background-color: var(--light-bg-color);
}

footer {
  background: var(--heading-color);
  color: #a0aec0;
  padding: 40px 20px;
  text-align: center;
  margin-top: 60px;
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.footer-impressum {
  font-size: 0.8rem;
  margin-top: 30px;
  opacity: 0.7;
  line-height: 1.6;
}

/* =============================================== */
/* 🌟 Spezifische Styles für die Startseite (index) */
/* =============================================== */

/* Ladebildschirm, Cookie-Hinweis, Animationen etc. */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}
#loader-wrapper.hidden { opacity: 0; pointer-events: none; }
.loader-logo { font-size: 2rem; font-weight: 800; color: var(--heading-color); margin-bottom: 20px; }
#progress-bar-container { width: 250px; height: 6px; background-color: var(--border-color); border-radius: 3px; overflow: hidden; }
#progress-bar { width: 0%; height: 100%; background-color: var(--primary-color); border-radius: 3px; transition: width 0.3s ease; }
#privacy-notice { position: fixed; bottom: 0; left: 0; width: 100%; background-color: var(--heading-color); color: #e2e8f0; padding: 20px; z-index: 9998; display: none; justify-content: center; align-items: center; gap: 25px; box-shadow: 0 -5px 15px rgba(0,0,0,0.2); text-align: center; flex-wrap: wrap; }
#privacy-notice p { margin: 0; flex-grow: 1; }
#privacy-notice a { color: white; text-decoration: underline; font-weight: 700; }
#privacy-accept-btn { padding: 10px 25px; flex-shrink: 0; }
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

/* Hero, Ventures, Vision etc. */
.hero { padding: 100px 0; }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
.hero-content { text-align: left; }
.hero-content h1 { font-size: 3.5rem; color: var(--heading-color); font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.hero-content .highlight { background: linear-gradient(45deg, var(--primary-color), #007bff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-content p { font-size: 1.25rem; margin-bottom: 30px; max-width: 500px; }
.hero-image img { width: 100%; }
section { padding: 100px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title span { display: inline-block; background: #f3e6ff; color: var(--primary-color); padding: 5px 15px; border-radius: 20px; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; }
.section-title h2 { font-size: 2.8rem; color: var(--heading-color); margin-top: 15px; }
.ventures-section { background-color: var(--light-bg-color); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.ventures-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.venture-card { background: white; border-radius: 12px; border: 1px solid var(--border-color); padding: 35px; box-shadow: 0 5px 15px var(--shadow-color); transition: transform 0.3s, box-shadow 0.3s; }
.venture-card:hover { transform: translateY(-5px); box-shadow: 0 12px 25px rgba(106, 0, 255, 0.12); }
.venture-card .status { font-size: 0.8rem; font-weight: 700; color: var(--primary-color); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.venture-card h3 { color: var(--heading-color); margin: 0 0 10px 0; font-size: 1.4rem; }
.venture-card p { margin-bottom: 25px; }
.venture-card .placeholder { color: #aaa; font-style: italic; }
.vision-content { max-width: 800px; margin: 0 auto 80px; text-align: center; }
.vision-content strong { color: var(--heading-color); }
.founder-profile { display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center; max-width: 800px; margin: 0 auto; text-align: left; }
.founder-profile img { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; }
.founder-profile h3 { color: var(--heading-color); margin-bottom: 10px; }
.cta-box { background: var(--light-bg-color); border: 1px solid var(--border-color); padding: 40px; border-radius: 12px; margin-top: 60px; text-align: center; }
.cta-box h3 { font-size: 1.8rem; color: var(--heading-color); margin-bottom: 10px; }

/* ========================================================= */
/* 📖 Spezifische Styles für Datenschutz & Co. (Rechts-Seiten) */
/* ========================================================= */

.content-section .container {
  max-width: 800px;
}
.content-section {
  padding: 80px 0;
}
.content-section h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 30px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 15px;
}
.content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-top: 40px;
  margin-bottom: 15px;
}
.content-section p {
  margin-bottom: 20px;
}
.content-section a {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
}
.content-section a:hover {
  text-decoration: underline;
}
.content-section .back-link {
  margin-top: 40px;
  display: inline-block;
}

/* ========================================================= */
/* 📱 Responsive Design (Für die gesamte Website)           */
/* ========================================================= */

@media (max-width: 992px) { /* Tablet-Ansicht */
  .ventures-grid { grid-template-columns: 1fr 1fr; }
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { text-align: center; }
  .hero-image { order: -1; margin-bottom: 40px; }
  .hero-image img { max-width: 300px; margin: 0 auto; }
  .hero-content h1 { font-size: 3rem; }
  .section-title h2 { font-size: 2.5rem; }
}

@media (max-width: 768px) { /* Smartphone-Ansicht */
  .ventures-grid { grid-template-columns: 1fr; }
  
  /* --- KORREKTUR: Nur die Links ausblenden, nicht den ganzen Block --- */
  .nav-links { display: none; } 
  .social-media-links a {
      font-size: 1.3rem; /* Zurück zur normalen Größe auf Mobilgeräten */
  }  
  .hero-content h1 { font-size: 2.5rem; }
  .section-title h2 { font-size: 2.2rem; }
  .founder-profile { grid-template-columns: 1fr; text-align: center; }
  .hero-image img { max-width: 200px; }
}
