/* Importierte Schriftart */
@font-face {
font-family: 'Orbitron';
src: url('fonts/orbitron-bold.woff2') format('woff2');
font-weight: 600;
font-style: normal;
font-display: swap;
}

/* Allgemeine Link-Styles */
a {
color: #D97A0E;
text-decoration: none;
}

a:hover {
color: #FFA533;
}

a:visited, a:active {
color: #D97A0E;
}

ul, ol {
text-align: left;
padding-left: 0;
margin-left: 0;
list-style-position: inside;
}

body {
font-family: 'Orbitron', sans-serif;
margin: 0;
background: #000 url('img/bg_sterne.png') repeat;
background-color: #111;
color: #ddd;
}

/* Header Styling */
header {
position: relative;
background-color: #111C2B;
background-color: rgba(17, 28, 43, 0.53);
padding: 1rem;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
max-width: 90%;
margin: 10px auto;
border-radius: 20px;
border: 1px solid #555;
overflow: hidden;
}

.header-bg-right {
position: absolute;
top: 0;
right: 0;
bottom: 0;
width: 300px;
background-image: url('img/hintergrund.png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
opacity: 0.5;
pointer-events: none;
z-index: 0;
}

header * {
position: relative;
z-index: 1;
}

header img {
height: 100px;
margin-right: 1rem;
flex-shrink: 0;
}

header h1 {
font-size: 1.2rem;
color: #D97A0E;
margin: 0;
text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
flex: 1;
}

header a {
display: inline-block;
line-height: 0;
vertical-align: middle;
}

/* Startseite - Logo Größenanpassung */
.start-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}

.start-container img {
width: 200px;
}

.subtitle {
margin-top: 1rem;
font-size: 1.2rem;
color: #D97A0E;
}

/* Enterprise-Skalierung */
.enterprise {
position: absolute;
top: 0;
left: 0;
width: 200px;
height: auto;
z-index: 10;
}

/* Haupt-Container */
.container {
max-width: 900px;
margin: 2rem auto;
padding: 0 1rem;
}

.intro-text {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
  text-align: center;
  font-size: 1rem;
  color: #aaa;
}

.neu-badge {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
}

.container img {
max-width: 100%;
height: auto;
border-radius: 0;
box-shadow: 0 0 15px rgba(255,255,255,0.1);
}

.backlink {
display: inline-block;
margin-top: 2rem;
color: #4f5688;
text-decoration: none;
}

.info {
margin-top: 1.5rem;
line-height: 1.6;
color: #555;
text-align: left;
}

/* Galerie-Styling */
.gallery-item {
margin-bottom: 3rem;
text-align: center;
}

.gallery-item img {
max-width: 100%;
height: auto;
border-radius: 10px;
box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.gallery-item h2 {
font-size: 1.4rem;
margin-top: 1rem;
color: #ccc;
}

.gallery-item p {
font-size: 1rem;
color: #aaa;
text-align: left;
}

.gallery-item a {
color: #D97A0E;
text-decoration: none;
display: inline-block;
margin-top: 0.5rem;
}

/* Navigation */
nav {
background-color: #0A1B2B;
background-color: rgba(10, 27, 43, 0.53);
padding: 0.5rem 1rem;
max-width: 90%;
margin: 10px auto;
border-radius: 20px;
border: 1px solid #555;

}

.nav-links {
display: flex;
justify-content: center;
flex-wrap: wrap;
border-radius: 20px;
}

.nav-links a {
color: #D97A0E;
text-decoration: none;
font-weight: bold;
display: inline-block;
margin: 0 0.75rem;
}

.burger {
display: none;
cursor: pointer;
font-size: 1.5rem;
color: #D97A0E;
background: none;
border: none;

}

/* Responsive Navigation */
@media (max-width: 600px) {
.start-container img {
width: 120px;
}

.subtitle {
font-size: 0.75rem;
}

.enterprise {
width: 100px;
}

.header-bg-right {
width: 80px !important;
height: auto !important;
max-width: 80px !important;
min-width: 0 !important;
padding-left: 50px;
}

header {
flex-direction: row;
flex-wrap: nowrap;
justify-content: flex-start;
}

header h1 {
font-size: 1rem;
margin: 0;
padding: 0;
}

.nav-links {
display: none;
flex-direction: column;
background-color: #0A1B2B;
background-color: rgba(10, 27, 43, 0.53);
padding: 1rem;
align-items: center;
}

.nav-links.active {
display: flex;
}

.nav-links a {
margin: 0.4rem 0;
}

.burger {
display: block;
text-align: right;
width: 100%;
}
}

/* Footer Styling */
footer {
background-color: #111C2B;
background-color: rgba(17, 28, 43, 0.53);
border-top: 1px solid #555;
text-align: center;
font-size: 0.75rem;
padding: 1rem 0;
margin-top: 4rem;
color: #888;
max-width: 90%;
margin: 10px auto;
border-radius: 20px;
border: 1px solid #555;
overflow: hidden;
}

footer a {
color: #D97A0E;
text-decoration: none;
}

.footer-note {
font-size: 0.5rem;
color: #666;
}