@import url("fonts.css");

:root {
  --bg-light: #1e1e1e;
  --bg-dark: #1e1e1e;
  --text-dark: #fff;
  --text-light: #fff;
  --accent: #14393e;
  --font: 'Poppins', sans-serif;
}
html {
  overflow-y: scroll;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  min-width: 1000px;
  height: 5rem;
  background: #122229;
  backdrop-filter: blur(10px);
  border-radius: 50px;
  z-index: 10;
  display: flex;
  align-items: center;
}


/* Container innerhalb der Navbar */
.nav-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}

/* Logo */
.logo {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0 1rem;
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  font-weight: 600;
}

/* Einzelne Links */
.nav-links a {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: var(--text-light);
  transition: color 0.3s;
  padding: 0.75rem 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.nav-links a:hover {
  color: var(--accent);
}

/* Button rechts (Kontakt) */
.btn-contact {
  padding: 0.6rem 1.2rem;
  background: #ca0013;
  color: var(--text-light);
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.btn-contact:hover {
  transform: translateY(-2px);
}
/* Grundlayout */
body {
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font);
  margin: 0;
  padding: 0;
}

/* Hero-Abstand */
main.coming-soon {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 85vh;
  text-align: center;
  padding: 2rem;
  margin-top: 8rem;
}

/* Textbereich */
.coming-soon .content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.coming-soon .content p {
  font-size: 1.2rem;
  color: #dcdcdc;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* Zurück-Button */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 0.8rem 1.6rem;
  border-radius: 40px;
  transition: 0.3s ease;
}

.back-btn:hover {
  background: #a80010;
  transform: translateY(-2px);
}

/* FOOTER */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 4rem 1rem 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  justify-items: center;
  text-align: center;
  margin-bottom: 2rem;
}

.footer h4 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  font-size: 0.85rem;
  color: #aaa;
}

.section-divider {
  width: 100%;
  max-width: 1400px;
  height: 1px;
  background-color: var(--accent);
  opacity: 0.2;
  margin: 3rem auto 2rem;
}

.footer-branding {
  text-align: center;
}

.footer-logo {
  width: 160px !important;
  height: auto !important;
  display: inline-block !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
  background: none !important;
}


/* === RESPONSIVE === */
@media (max-width: 900px) {
  .about-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-text-left,
  .about-text-right {
    align-items: center;
  }

  .team-image {
    width: 85%;
    max-width: 420px;
  }
}

@media (max-width: 600px) {
  .about-text-left h2 {
    font-size: 1.6rem;
  }

  .team-image {
    width: 95%;
    max-width: 340px;
  }
}

/* === NAVBAR MOBILE === */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .navbar {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    width: 95%;
    min-width: unset;
    height: auto;
  }

  .nav-container {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .logo {
    font-size: 0.95rem;
    text-align: center;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.5rem;
    overflow-x: auto;
  }

  .nav-links a {
    font-size: 0.8rem;
    padding: 0.35rem 0.45rem;
  }

  .btn-contact {
    all: unset;
    font-size: 0.8rem;
    color: white;
    cursor: pointer;
    padding: 0.35rem 0.45rem;
  }
}

/* Burger Button */
.burger {
  display: none;
}

@media (max-width: 768px) {
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    z-index: 11;
  }

  .burger span {
    display: block;
    height: 3px;
    width: 25px;
    background: white;
    border-radius: 2px;
    margin: 4px 0;
    transition: all 0.3s ease;
  }

  .burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.open span:nth-child(2) {
    opacity: 0;
  }

  .burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 10;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }

  .nav-links.show {
    max-height: 300px;
  }

  .nav-links li {
    padding: 1rem 0;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
}

