html,
body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #080808;
  color: #ffffff;
}

* {
  box-sizing: border-box;
}

#dj-page {
  width: 100%;
  overflow-x: hidden;
  background: #080808;
  color: #ffffff;
}

.dj-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}

/* HEADER */

.dj-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(10, 10, 14, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 14px 38px rgba(0,0,0,0.32);
}

.dj-nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* LOGO */

.dj-logo {
  display: block;
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 27px;
  font-weight: 950;
  letter-spacing: 1.2px;
  line-height: 1;
  white-space: nowrap;
}

.dj-logo span {
  display: block;
  margin-top: 7px;
  color: #d6b45a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

/* NAVIGATION */

.dj-menu {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.dj-menu ul {
  list-style: none !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 !important;
  padding: 0 !important;
}

.dj-menu li {
  margin: 0 !important;
  padding: 0 !important;
}

.dj-menu a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.86) !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.35px;
  padding: 11px 14px !important;
  border-radius: 999px;
  background: transparent;
  transition: all 0.22s ease;
}

.dj-menu a:hover,
.dj-menu .current > a,
.dj-menu .cc-nav-current > a,
.dj-menu .j-nav-current > a {
  color: #111111 !important;
  background: linear-gradient(135deg, #f4d46b, #b88922);
  box-shadow: 0 8px 24px rgba(212,175,55,0.28);
}

/* CALL BUTTON */

.dj-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #111111 !important;
  text-decoration: none !important;
  font-weight: 950;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(255,255,255,0.12);
  white-space: nowrap;
  transition: all 0.22s ease;
}

.dj-call:hover {
  background: linear-gradient(135deg, #f4d46b, #b88922);
  color: #111111 !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(212,175,55,0.35);
}

/* HERO AUS AUF UNTERSEITEN */

.dj-hero {
  display: none;
}

/* HERO NUR STARTSEITE */

.dj-is-home .dj-hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.78) 48%, rgba(0,0,0,0.38) 100%),
    url("https://images.unsplash.com/photo-1519741497674-611481863552?q=80&w=1800&auto=format&fit=crop") center center / cover no-repeat;
}

.dj-hero-inner {
  position: relative;
  max-width: 790px;
  padding-top: 90px;
  padding-bottom: 90px;
}

.dj-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.55);
  color: #f5d76e;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 22px;
}

.dj-hero h1 {
  color: #ffffff;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.96;
  margin: 0 0 24px;
  font-weight: 950;
  letter-spacing: -2px;
}

.dj-hero p {
  color: #ffffff;
  font-size: 21px;
  line-height: 1.55;
  max-width: 720px;
  margin: 0 0 26px;
}

.dj-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 34px;
}

.dj-trust span {
  display: inline-block;
  color: #ffffff;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.dj-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.dj-btn {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none !important;
  font-size: 16px;
  font-weight: 900;
  transition: all 0.22s ease;
}

.dj-btn:hover {
  transform: translateY(-2px);
}

.dj-btn-gold {
  background: linear-gradient(135deg, #d4af37, #f5d76e);
  color: #111111 !important;
}

.dj-btn-outline {
  border: 1px solid rgba(255,255,255,0.42);
  color: #ffffff !important;
  background: rgba(255,255,255,0.05);
}

/* MAIN */

.dj-main {
  background: #ffffff;
  color: #111111;
  padding: 72px 0;
}

.dj-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 38px;
  align-items: start;
}

.dj-content {
  background: #ffffff;
  color: #111111;
  min-width: 0;
}

.dj-sidebar {
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 24px;
  padding: 24px;
  color: #111111;
}

/* CONTENT */

.dj-content h1,
.dj-content h2,
.dj-content h3,
.dj-sidebar h1,
.dj-sidebar h2,
.dj-sidebar h3 {
  color: #111111;
  font-weight: 900;
}

.dj-content h1 {
  font-size: 46px;
  line-height: 1.1;
}

.dj-content h2 {
  font-size: 38px;
  line-height: 1.15;
}

.dj-content h3 {
  font-size: 26px;
}

.dj-content p,
.dj-content li,
.dj-sidebar p,
.dj-sidebar li {
  color: #333333;
  font-size: 18px;
  line-height: 1.65;
}

.dj-content a,
.dj-sidebar a {
  color: #b88a00;
  font-weight: 900;
}

/* FOOTER */

.dj-footer {
  background: #080808;
  color: #aaaaaa;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  padding: 36px 0;
  text-align: center;
}

.dj-footer p {
  margin: 0 0 12px;
  font-size: 14px;
}

/* MOBILE */

@media (max-width: 900px) {

  .dj-container {
    padding: 0 18px;
  }

  .dj-nav {
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .dj-logo {
    text-align: center;
    font-size: 25px;
  }

  .dj-logo span {
    font-size: 11px;
  }

  .dj-menu {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .dj-menu ul {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 7px;
    white-space: nowrap;
  }

  .dj-menu a {
    font-size: 12px;
    padding: 10px 13px !important;
  }

  .dj-call {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .dj-is-home .dj-hero {
    min-height: 640px;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.82) 62%, rgba(0,0,0,0.64) 100%),
      url("https://images.unsplash.com/photo-1519741497674-611481863552?q=80&w=1200&auto=format&fit=crop") center center / cover no-repeat;
  }

  .dj-hero-inner {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .dj-hero h1 {
    font-size: 43px;
    letter-spacing: -1px;
  }

  .dj-hero p {
    font-size: 18px;
  }

  .dj-btn {
    width: 100%;
    text-align: center;
  }

  .dj-main {
    padding: 42px 0;
  }

  .dj-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .dj-sidebar {
    padding: 20px;
  }

  .dj-content h1 {
    font-size: 34px;
  }

  .dj-content h2 {
    font-size: 30px;
  }

  .dj-content p,
  .dj-content li,
  .dj-sidebar p,
  .dj-sidebar li {
    font-size: 17px;
  }
}