body{margin:0;font-family:Inter,sans-serif;background:#050b14;color:#fff}

a{color:#c9a24d;text-decoration:none}


html {
  scroll-behavior: smooth;
}



nav {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;

  padding: 18px 8%;
  background: rgba(5, 11, 20, 0.9);
  backdrop-filter: blur(8px);
}



.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}

.nav-brand:hover {
  opacity: 0.95; /* optional sehr dezentes Feedback */
}




.nav-brand img {
  height: 42px;
  width: auto;
  display: block;
}



.nav-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 28px;
  align-items: center;
}


.nav-menu a {
  color: #9ca3af;              /* elegantes Grau */
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.25s ease;
}

.nav-menu a:hover {
  color: #ffffff;              /* dezenter Hover */
}


.nav-menu a.active {
  color: #ffffff;
  position: relative;
}


.nav-menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #e6c36a, #c9a24d);
  border-radius: 2px;
}


.lang-switch {
  display: flex;
  gap: 8px;
  justify-self: end;
}


.lang-switch button {
  background: none;
  border: 1px solid rgba(156, 163, 175, 0.3);
  color: #9ca3af;
  padding: 4px 10px;
  font-size: 13px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-switch button:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.lang-switch button.active {
  color: #111;
  background: linear-gradient(135deg, #e6c36a, #c9a24d);
  border-color: transparent;
}

.company-name{font-weight:600}
.hero{min-height:38vh;background:linear-gradient(rgba(5,11,20,.78),rgba(5,11,20,.88)),url('background.jpg') center/cover no-repeat;padding:70px 8%;display:flex;align-items:center}
.hero-layout{display:grid;grid-template-columns:1.1fr .9fr;gap:80px;align-items:center}
.hero-logo img{max-width:680px;width:100%}

h1{font-size:64px;line-height:1.05}
h1 span{color:#e6c36a}
.btn-gold{display:inline-block;margin-top:24px;padding:14px 26px;background:linear-gradient(135deg,#e6c36a,#c9a24d);color:#111;border-radius:10px;font-weight:700}


section{padding:90px 8%}

.subheading {
  color: #e6c36a;              /* Gold */
  font-size: 18px;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 8px;
}

.placeholder {
  color: #9ca3af;              /* Grau */
  font-size: 15px;
  line-height: 1.6;
  max-width: 720px;
}

.about-content {
  max-width: 960px;
}

.about-image {
  float: right;

  width: 200px;              /* halb so groß */
  max-width: 30%;

  margin: 0 0 18px 32px;     /* Luft zum Text */
  border-radius: 10px;

  /* Dezenter Frame */
  border: 1px solid rgba(230, 195, 106, 0.35);
  padding: 4px;
  background: rgba(5, 11, 20, 0.95);

  /* Sehr ruhiger Schatten */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* saubere Textdarstellung */
.about-content .placeholder {
  margin-bottom: 18px;
}

/* Float-Cleanup */
.about-content::after {
  content: "";
  display: block;
  clear: both;
}


footer{text-align:center;padding:30px;color:#b0b8c5}
.legal{max-width:900px;margin:0 auto;padding:80px 8%;line-height:1.7;color:#b0b8c5}

.fade-in{opacity:0;animation:fadeInUp 1s ease forwards}
.delay-1{animation-delay:.3s}
.delay-2{animation-delay:.6s}
.delay-3{animation-delay:.9s}
@keyframes fadeInUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}

@media(max-width:900px){.hero-layout{grid-template-columns:1fr;text-align:center}.hero-logo img{max-width:360px;margin:30px auto 0}h1{font-size:42px}}


@media (max-width: 1200px) {
  .company-name {
    display: none;
  }
}


@media (max-width: 768px) {
  .about-image {
    float: none;
    display: block;
    margin: 0 auto 24px;
    width: 100%;
    max-width: 320px;
  }
}


