@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


/* Allgemeine Farbgebung */
:root {
  /* Standardwerte für den Lightmode */
  --primary-color-light: #B35A1F;
  --secondary-color-light: #2B655C;
  --secondary-color-lightButton: #2B655C;
  --primary-hover-color: #D17342; /* Hellerer Rot-Braun für Hover */
  --secondary-hover-color: #3c907a; /* Helleres Grün für Hover */
  --background-color-light: #F5E8C7;
  --text-color-light: #4A2C2A;
  --overlay-bg: rgba(206, 190, 155, 0.8);
  --header-background-light: #B35A1F;
  --nav-link-bg: transparent;
  --nav-link-hover-bg: rgba(236, 240, 241, 0.1);
  --nav-link-hover-color: #ecf0f1;
  --nav-logo-bg: rgba(236, 240, 241, 0.1);
  --nav-logo-hover-bg: rgba(236, 240, 241, 0.2);

  /* Farben für den Arrow */
  --arrow-color-light: #4A2C2A; /* Standardfarbe im Lightmode */
  --arrow-hover-color-light: #B35A1F; /* Hover-Farbe im Lightmode */
}

/* Darkmode-Variablen */
.dark-mode {
  --primary-color-light: #701d1d;
  --secondary-color-light: #ffffff;
  --secondary-color-lightButton: #184A45;
  --primary-hover-color: #9b2d2d; /* Intensiveres Rot-Braun */
  --secondary-hover-color: #236d6d; /* Intensiveres Grün */
  --background-color-light: #1A1A1A;
  --text-color-light: #FAF3E0;
  --overlay-bg: rgba(0, 0, 0, 0.7);
  --secondary-color-dark: #FAF3E0;
  --background-color-dark: #1A1A1A;

  /* Farben für den Arrow */
  --arrow-color-light: #FAF3E0; /* Standardfarbe im Darkmode */
  --arrow-hover-color-light: #701d1d; /* Hover-Farbe im Darkmode */
}
/* Allgemeines Styling */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Cinzel', serif;
  background-color: var(--background-color-light);
  color: var(--text-color-light);
  box-sizing: border-box;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden; /* Entfernt horizontale Scrollbars */
}

::-webkit-scrollbar {
  width: 0; /* Entfernt die Scrollbar */
}

a {
  text-decoration: none;
  color: var(--text-color-light);
}

a:hover {
  color: var(--secondary-color-light);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 10%;
  background-color: var(--primary-color-light);
  padding: 15px 20px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Dark/Light Mode Switch */
.header-switch {
  position: absolute;
  right: 20px;
}

.mode-toggle {
  border: none;
  background: none;
  cursor: pointer;
}

.mode-toggle img {
  width: 30px;
  height: 30px;
}

.navMenu {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.navMenu a {
  color: #f6f4e6;
  text-decoration: none;
  font-size: 1.2em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
  width: 80px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.navMenu a:hover {
  color: var(--secondary-color-light);
}

.navMenu .dot {
  width: 6px;
  height: 6px;
  background: var(--secondary-color-light);
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.navMenu a:nth-child(1):hover ~ .dot {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}

.navMenu a:nth-child(2):hover ~ .dot {
  -webkit-transform: translateX(110px);
  transform: translateX(110px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}

.navMenu a:nth-child(3):hover ~ .dot {
  -webkit-transform: translateX(200px);
  transform: translateX(200px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}

.navMenu a:nth-child(4):hover ~ .dot {
  -webkit-transform: translateX(285px);
  transform: translateX(285px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}
.navMenu a:nth-child(5):hover ~ .dot {
  -webkit-transform: translateX(358px);
  transform: translateX(358px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}

/* Hamburger-Menü */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  border: none;
  background: none;
  color: var(--text-color-light);
  cursor: pointer;
}


@media (max-width: 830px) {
  .menu-toggle {
    display: flex; /* Zeigt das Hamburger-Menü */
    right: -100px;
  }

  .nav-links {
    display: none; /* Versteckt die Links */
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: var(--primary-color-light);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    padding: 15px 0;
  }

  .nav-links.active {
    display: flex; /* Links einblenden */
  }

  .nav-links a {
    margin: 10px -100%;
  }
  .navMenu .dot {
    display: none; /* Versteckt den Punkt-Indikator im mobilen Menü */
  }
}
/* Dark/Light Mode Switch */
.header-switch {
  position: absolute;
  right: 20px; /* Switch weiter nach links */
  display: flex;
  align-items: center;
}

.mode-toggle {
  border: none;
  background: none;
  cursor: pointer;
}

.mode-toggle img {
  width: 25px;
  height: 25px;
}


/* Responsive Styles
@media (max-width: 768px) {
  .menu {
    display: none; /* Hide the menu
    flex-direction: column;
    align-items: flex-start; /* Align menu items to the left
    background-color: var(--primary-color-light);
    position: absolute;
    top: 50px; /* Below the header
    left: 0;
    width: 100%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    padding: 15px;
  }

  .mode-toggle {
    border: none;
    background: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: absolute;
    right: 100px; /* Positioned to the right
    top: 9px;
  }

  .menu.active {
    display: flex; /* Show menu
  }

  .menu-toggle {
    display: block; /* Show hamburger menu
  }
}*/

/* Larger Header for Hamburger Menu
@media (max-width: 768px) {
  .header {
    padding: 25px 30px; /* Increased size for smaller screens
  }
}/*


/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  margin-top: 60px; /* Platz für fixierten Header */
  overflow: hidden;
  display: flex; /* Zentriert die Inhalte */
  flex-direction: column;
  justify-content: center; /* Vertikale Zentrierung */
  align-items: center; /* Horizontale Zentrierung */
}

/* Hintergrundbild */
.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/minecraft-bg.png') no-repeat center center/cover;
  background-size: cover;
  z-index: 0;
  filter: blur(4px) brightness(85%); /* Standard Helligkeit */
  transition: filter 0.3s ease;
}

/* Schwarzer Overlay (Darkmode) */
.background.dark {
  filter: brightness(50%) contrast(1.2); /* Abdunklung für Darkmode */
  transition: filter 0.3s ease;
}

/* Overlay */
.overlay {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay-bg, rgba(255, 247, 230, 0.8)); /* Standard: Pergamentfarben */
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Logo-Wrapper */
.logo-wrapper {
  display: inline-block;
  position: relative;
}

/* Logo */
.logo {
  width: 500px;
  max-width: 90%; /* Responsiv */
  opacity: 1; /* Sichtbar */
  transform: scale(1); /* Standardgröße */
  filter: drop-shadow(0 6px 6px rgba(0, 0, 0, 0.7)); /* Standard-Schwarzer Schatten */
  transition: transform 0.3s ease, filter 0.3s ease; /* Sanfter Übergang */
}
/* Pop-Effekt */
@keyframes popEffect {
  0% {
    opacity: 0; /* Unsichtbar */
    transform: scale(0.8); /* Kleiner Startpunkt */
  }
  70% {
    opacity: 1; /* Sichtbar */
    transform: scale(1.1); /* Leichter Überschuss */
  }
  100% {
    opacity: 1; /* Sichtbar bleiben */
    transform: scale(1); /* Endgröße */
  }
}

/* Hover-Effekt */
.logo-wrapper:hover .logo {
  transform: scale(1.2); /* Vergrößerung beim Hover */
  filter: drop-shadow(0 8px 8px rgba(0, 0, 0, 0.9)); /* Intensiverer Schatten */
}

/* Dark Mode: Weißer Schatten */
.dark-mode .logo {
  filter: drop-shadow(0 6px 6px rgba(255, 255, 255, 0.7)); /* Weißer Schatten im Dark Mode */
}

.dark-mode .logo-wrapper:hover .logo {
  transform: scale(1.2); /* Vergrößerung im Dark Mode */
  filter: drop-shadow(0 8px 8px rgba(255, 255, 255, 1)); /* Intensiverer weißer Schatten bei Hover */
}



/* Slogan */
h1 {
  color: var(--primary-color-light);
  font-size: 3rem;
  margin-bottom: 30px;
  text-shadow: 0 0 10px rgba(179, 90, 31, 0.5);
  transition: color 0.3s ease;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 20px; /* Abstand zwischen Buttons */
}

.buttons .btn {
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 5px;
  color: var(--text-color-light);
  background-color: var(--primary-color-light);
  border: 2px solid var(--primary-color-light);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.buttons .btn.secondary {
  background-color: var(--secondary-color-lightButton);
  border: 2px solid var(--secondary-color-lightButton);
}

/* Hover-Effekte */
.buttons .btn:hover {
  background-color: var(--primary-hover-color); /* Hover-Farbe */
  border-color: var(--primary-hover-color); /* Passender Rand */
  transform: scale(1.05); /* Vergrößerung bei Hover */
}

.buttons .btn.secondary:hover {
  background-color: var(--secondary-hover-color); /* Hover-Farbe */
  border-color: var(--secondary-hover-color); /* Passender Rand */
  transform: scale(1.05); /* Vergrößerung bei Hover */
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem; /* Kleinere Schriftgröße für Mobilgeräte */
  }

  .logo {
    width: 200px; /* Kleinere Logos */
  }

  .buttons .btn {
    padding: 10px 20px; /* Kleinere Buttons */
    font-size: 1rem;
  }
}
/* Übergeordneter Bereich */
.about {
  padding: 50px 20px;
  background: linear-gradient(to bottom, var(--background-color-light) 70%, rgba(0, 0, 0, 0.03));
  text-align: center;
  color: var(--text-color-light);
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Trennlinie */
.about:after {
  content: "";
  display: block;
  height: 2px;
  background: var(--primary-color-light);
  width: 80%;
  margin: 40px auto;
  opacity: 0.7;
}

/* Vision */
.about-vision {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.about-vision .highlight {
  font-size: 2.2rem;
  color: var(--primary-color-light);
  margin-bottom: 15px;
}

.about-vision p {
  font-size: 1.2rem;
  line-height: 1.8;
}

.emphasis {
  color: var(--secondary-color-light);
  font-weight: bold;
}

/* Spalten */
.about-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-around;
  margin: 20px auto;
}

.about-column {
  flex: 1 1 45%;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-column:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

.about-column h3 {
  font-size: 1.5rem;
  color: var(--primary-color-light);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.about-column p {
  font-size: 1.1rem;
  color: var(--text-color-light);
  line-height: 1.8;
}

.about-column .emphasis {
  color: var(--secondary-color-light);
  font-weight: bold;
}

/* Footer */
.about-footer {
  margin-top: 30px;
}

.about-footer p {
  font-size: 1.2rem;
  color: var(--text-color-light);
}

.about-footer .emphasis {
  color: var(--primary-color-light);
  font-weight: bold;
}

/* Dark Mode Anpassungen */
.dark-mode .about {
  background: linear-gradient(to bottom, var(--background-color-dark) 70%, rgba(255, 255, 255, 0.05));
  color: var(--text-color-light);
}

.dark-mode .highlight {
  color: var(--primary-color-light);
}

.dark-mode .emphasis {
  color: var(--secondary-color-dark);
}

ul li {
  margin-bottom: 10px; /* Abstand zwischen den Listeneinträgen */
}

/* Feature Section */
.features {
  text-align: center;
  padding: 50px 20px;
  background-color: var(--background-color-light);
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  margin: 50px auto;
  width: 90%;
  max-width: 1200px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.feature-header {
  margin-bottom: 30px;
}

.feature-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color-light);
}

.feature-header p {
  font-size: 1.2rem;
  color: var(--text-color-light);
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-items: center;
  margin-top: 30px;
}

.feature {
  background-color: var(--primary-color-light);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: var(--text-color-dark);
}

.feature:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
  background-color: var(--secondary-color-lightButton);
}

.feature img {
  width: 80px;
  margin-bottom: 15px;
  transition: transform 0.3s ease-in-out;
}

.feature:hover img {
  transform: rotate(10deg) scale(1.1);
}

.feature h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--text-color-light);
}

.feature p {
  font-size: 1rem;
  color: var(--text-color-light);
}

/* Feature Sections */
.feature-section {
  padding: 80px 20px;
  background-color: var(--background-color-light);
  color: var(--text-color-light);
  text-align: center;
  margin: 50px auto;
  width: 90%;
  max-width: 1200px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.feature-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color-light);
}

.feature-section p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-color-light);
}

/* Roadmap */
.roadmap {
  padding: 50px 20px;
  background-color: var(--background-color-light);
  color: var(--text-color-light);
  text-align: center;
}

.roadmap .timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 25px; /* Platz für Linie */
  border-left: 3px solid var(--primary-color-light); /* Linie */
}

.roadmap .milestone {
  position: relative;
  margin: 40px 0;
}

.roadmap .circle {
  position: absolute;
  left: -26px; /* Setze den Kreis auf die Linie */
  top: 50%; /* Vertikal zentrieren */
  transform: translate(-50%, -50%); /* Exakte Zentrierung */
  width: 20px;
  height: 20px;
  background-color: var(--primary-color-light);
  border-radius: 50%;
  border: 3px solid var(--background-color-light); /* Umrandung passend zur Hintergrundfarbe */
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.roadmap .content {
  margin-left: 60px; /* Abstand der Inhalte zur Linie */
  text-align: left;
}

.roadmap .content .date {
  display: block;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--secondary-color-light);
}

.roadmap .content h3 {
  font-size: 1.5rem;
  margin: 5px 0;
}

.roadmap .content p {
  font-size: 1rem;
  line-height: 1.5;
}
.roadmap h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
  color: var(--primary-color-light);
}


.future {
  text-align: center;
  margin-top: 0; /* Näher an die Timeline rücken */
  margin-bottom: 35px; /* Abstand unterhalb hinzufügen */
}

.future .dot {
  display: inline-block;
  margin: 3px; /* Kleinere Abstände zwischen den Punkten */
  border-radius: 50%;
  background-color: var(--primary-color-light);
}

.future p {
  margin-top: 10px; /* Abstand zum Text */
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-color-light);
}

.future .dot.large {
  width: 20px;
  height: 20px;
}

.future .dot.medium {
  width: 15px;
  height: 15px;
}

.future .dot.small {
  width: 10px;
  height: 10px;
}

/* Roadmap Startkreis */
.start-circle {
  position: absolute;
  left: -9px; /* Zentriert auf der Linie */
  top: 0; /* Am Anfang der Timeline */
  width: 15px;
  height: 15px;
  background-color: var(--primary-color-light);
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* Nach unten zeigender Pfeil */
.end-arrow {
  position: relative;
  margin: 20px auto 0; /* Zentriert unter der Timeline */
  left: -412px;
  top: 5px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 20px solid var(--primary-color-light); /* Farbe der Timeline */
}


/* Footer */
footer {
  background-color: var(--primary-color-light);
  color: var(--text-color-light);
  padding: 20px;
  text-align: center;
  position: relative;
  bottom: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-links a {
  color: var(--secondary-color-light);
  margin: 0 10px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--secondary-color-dark);
}

/* Arrow Styles */
/* Arrow Styles */
.arrow {
  position: relative; /* Relativ zur aktuellen Position */
  margin-right: 20px; /* Abstand zwischen Pfeil und dem Button */
  font-size: 2rem; /* Größe des Pfeils */
  color: var(--arrow-color-light); /* Dynamische Farbe basierend auf Modus */
  cursor: pointer;
  z-index: 10; /* Sicherstellen, dass der Pfeil über den Buttons liegt */
  transition: color 0.3s ease, transform 0.3s ease; /* Sanfter Übergang */
}

/* Hover-Effekt */
.arrow:hover {
  transform: scale(1.2); /* Vergrößerung beim Hover */
  color: var(--arrow-hover-color-light); /* Dynamische Hover-Farbe */
}

