/* components.css */

/* Logo */
.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}
.logo img {
  height: 40px;
}

/* Navigation Desktop */
.navbar-static {
  position: absolute;
  top: 30px;
  right: 30px;
  font-weight: 700;
  z-index: 10;
}
.navbar-static ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar-static a {
  color: #F0F0F0;
  text-decoration: none;
  font-size: 1.2rem;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}
.navbar-static a:hover {
  color: #A8A8A8;
}

/* Burger Button */
.burger {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 20;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.burger span {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #F0F0F0;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
}
.burger.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
  position: absolute;
  width: 35px;
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
  position: absolute;
  width: 35px;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #181818;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 15;
  margin-top: -5vh;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.mobile-nav li {
  margin: 2rem 0;
}
.mobile-nav a {
  color: #F0F0F0;
  font-size: 1.4rem;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  transition: color 0.3s ease;
}
.mobile-nav a:hover {
  color: #A8A8A8;
}

.footer {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  font-size: 0.7rem;
  font-family: 'Poppins', sans-serif;
  color: #B3B3B3;
  padding: 20px 30px;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  pointer-events: auto;
  z-index: 50;
}

.footer a {
  text-decoration: none;
  color: #B3B3B3;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #EAEAEA;
}

/* Responsive Anpassungen */

/* Tablet & Mobile */
@media (max-width: 1024px) {
  .logo img {
    height: 30px;
  }

  .navbar-static {
    display: none;
  }

  .burger {
    display: flex;
    top: 20px;
    right: 20px;
  }
	
  body.nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }
	
 .footer {
    justify-content: flex-end;
  font-size: 0.7rem;
  padding: 15px 20px;
  position: static;
  text-align: right;
  }
}

/* Desktop */
@media (min-width: 1025px) {
  .burger,
  .mobile-nav {
    display: none !important;
  }

  .navbar-static {
    display: block;
    position: fixed;
    top: 30px;
    right: 30px;
    font-weight: 700;
    z-index: 100;
    transition: none !important;
  }
	
.footer {
    justify-content: flex-end;
  }
}