* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body,
html {
  height: 100%;
  font-family: "Montserrat", sans-serif;
}

:root {
  --bg: #000000;
  --text: #ffffff;
  --subtext: #cccccc;
  --accent: #ffffff;
}

.site-header {
  background: #000000;
  border-bottom: 1px solid #eee;
  font-family: "Montserrat", sans-serif;
  padding: 50px 10px;
  position: sticky;
  top: 0;
  z-index: 999;
}
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
}
.main-nav ul {
  display: flex;
  gap: 2rem;
}
.main-nav a {
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.25s ease;
}
.main-nav a:hover {
  opacity: 0.6;
}
.nav-toggle {
  display: none; /* wird mobil sichtbar */
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  display: block;
  transition: 0.3s;
}
@media (max-width: 768px) {

  /* Hamburger sichtbar */
  .nav-toggle {
    display: flex;
  }

  /* Menü versteckt */
  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: #000000;
    width: 100%;
    border-top: 1px solid #eee;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
  }

  /* Menü geöffnet */
  .main-nav.open {
    height: 220px; /* genug Platz für die Links */
  }

  .main-nav ul {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
  }

  .main-nav a {
    font-size: 1rem;
    letter-spacing: 0.7px;
  }

  /* Hamburger Animation */
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}


.site-footer {
  background-color: #000;
  color: #aaa;
  padding: 60px 20px 40px;
  font-size: 0.9em;
  border-top: 1px solid #222;
  margin-top: 100px;
}
.footer-content {
  max-width: 1000px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.footer-quote blockquote {
  font-style: italic;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
  color: var(--subtext);
}
.footer-quote cite {
  display: block;
  margin-top: 10px;
  font-size: 0.9em;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  text-align: center;
}
.link-group h4 {
  text-transform: uppercase;
  color: var(--text);
  font-size: 1em;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.link-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.link-group li {
  margin-bottom: 8px;
}
.link-group a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s;
  text-transform: uppercase;
  font-size: 0.85em;
}
.link-group a:hover {
  color: var(--subtext);
}
.footer-bottom {
  text-align: center;
  padding-top: 25px;
  color: #666;
}
.footer-brand {
  font-size: 1.2em;
  font-weight: bold;
  letter-spacing: 1px;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 10px;
}


.kontakt-section {
  background-color: #0b0b0b;
  padding: 100px 20px;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-in-out;
  margin-top: 100px;
}

.kontakt-section h2 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 1.6em;
  text-transform: uppercase;
}

.kontakt-section p {
  text-align: center;
  color: var(--subtext);
  margin-bottom: 40px;
}

.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-size: 0.9em;
  text-transform: uppercase;
  color: #999;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  background-color: #111;
  border: 1px solid #333;
  padding: 12px 15px;
  color: var(--text);
  font-size: 0.95em;
  border-radius: 3px;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85em;
  color: #999;
}

.cta-button {
  background-color: var(--accent);
  color: #000;
  border: none;
  padding: 15px 20px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 1px;
  font-size: 0.9em;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #fff;
}

.coming-soon-section {
  background-color: #000;
  color: #fff;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  flex-direction: column;
  padding: 40px 20px;
}

.coming-soon-title {
  font-size: 2.5em;
  letter-spacing: 2px;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid #fff;
  width: 0;
  animation: typing 3s steps(20, end) forwards, blink 0.75s step-end infinite;
}

.coming-soon-subtitle {
  font-size: 1.2em;
  margin-top: 20px;
  opacity: 0;
  animation: fadeIn 4s ease forwards;
  animation-delay: 3.2s;
}

/* Animationen */
@keyframes typing {
  from { width: 0; }
  to { width: 14ch; }
}

@keyframes blink {
  0%, 100% { border-color: transparent; }
  50% { border-color: #fff; }
}

@keyframes fadeIn {
  to { opacity: 1; }
}
