/* Header */

.mobile-header {
	position: fixed;
	top: 0;
    left: 0;
    right: 0;
    height: 60px;
	z-index: 10000;
	backdrop-filter: blur(12px);
	background: rgba(244, 247, 250, 0.78);
	border-bottom: 4px solid rgba(232, 93, 4, 1.00);
	box-shadow: 0 2px 10px rgba(0, 0, 0,0.5);
	display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Logo */

.mobile-logo {
    color: #000000;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

/* Hamburger-Menü */

.hamburger {
    width: 40px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 4px;
    background: #000000;
    margin: 6px 0;
    border-radius: 3px;
    transition: 0.3s;
}

/* Menü */

.mobile-menu {
    position: fixed;
    top: 70px;
    right: -300px;
    width: 280px;
    height: calc(100vh - 70px);
    background: #1a1a1a;
    transition: right 0.3s ease;
    z-index: 9999;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
	border-top: 1px solid #E85D04;
	border-left: 1px solid #E85D04;
}

.mobile-menu.active {
    right: 0;
}

/* Links */

.mobile-menu a {
    display: block;
    padding: 15px 20px;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid #333;
    font-size: 16px;
    transition: background 0.3s;
}

.mobile-menu a:hover {
    background: #E85D04;
}

/* Seiteninhalt unter dem festen Header */

body {
    padding-top: 60px;
}
Logo {
	color: #000000;
	font-size: 16px;
	
	
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #D5DEE6
 
    linear-gradient(120deg, rgba(16, 24, 32, 0.88) 0%, rgba(16, 24, 32, 0.55) 90%, rgba(16, 24, 32, 0.25) 100%),
    radial-gradient(circle at 70% 40%, rgba(232, 93, 4, 0.45), transparent 90%),
    linear-gradient(35deg, #D5DEE6, #D5DEE6 40%, #0f1720);
  transform: scale(1.02);
  animation: heroDrift 14s ease-in-out infinite alternate;

}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -18deg,
      transparent 0,
      transparent 90px,
      rgba(255, 255, 255, 0.03) 18px,
      rgba(255, 255, 255, 0.03) 19px
    );
  opacity: 0.7;
}
.footer-menu {
    background: #111;
    color: #ccc;
    padding: 30px 20px;
    border-top: 1px solid #222;
    text-align: center;
    margin-top: 70px;
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.25s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    background: #E85D04;
    color: #fff;
}

.home-link {
    background: transparent;
}

.logout-link {
    background: #b00020;
    color: #fff !important;
}

.logout-link:hover {
    background: #d6002f;
}

.footer-copy {
    font-size: 0.8rem;
    color: #777;
}

/* Responsive */

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-links a {
        width: 100%;
        max-width: 280px;
    }
}