/* =========================
   WRAP
   ========================= */

.dc-hero-wrap {
  position: relative;
}

/* =========================
   FESTES OVERLAY-MENÜ
   ========================= */

.dc-topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(8, 9, 12, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(181, 145, 103, 0.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.dc-topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.015) 0%,
    rgba(0,0,0,0.08) 100%
  );
}

.dc-topbar-inner {
  position: relative;
  z-index: 2;
  max-width: 1920px;
  margin: 0 auto;
  padding: 22px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

/* =========================
   BRAND
   ========================= */

.dc-brand {
  flex: 0 0 auto;
}

.dc-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
}

.dc-brand-logo {
  width: 66px;
  height: auto;
  display: block;
  object-fit: contain;
  opacity: 0.96;
  filter:
    drop-shadow(0 0 8px rgba(255,255,255,0.03))
    brightness(1.05);
}

.dc-brand-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  background: linear-gradient(
    to bottom,
    #f8f5f2 0%,
    #ded4cc 24%,
    #b6a99d 52%,
    #f0e8df 76%,
    #a59384 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.04),
    0 2px 8px rgba(0,0,0,0.30);
}

/* =========================
   NAVIGATION
   ========================= */

.dc-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.dc-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  color: rgba(244, 239, 234, 0.92);
  text-decoration: none;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.dc-nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(181,145,103,0),
    rgba(181,145,103,0.85),
    rgba(181,145,103,0)
  );
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}

.dc-nav-link:hover {
  color: #ffffff;
}

.dc-nav-link:hover::after {
  transform: scaleX(1);
}

/* =========================
   BUTTON
   ========================= */

.dc-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 52px;
  padding: 0 24px;
  margin-left: 10px;
  border: 1px solid rgba(174, 137, 91, 0.72);
  background: rgba(13, 11, 12, 0.18);
  color: #ba9468;
  text-decoration: none;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.28s ease;
}

.dc-nav-btn:hover {
  background: rgba(22, 18, 16, 0.30);
  color: #d8b083;
  border-color: rgba(198, 158, 111, 0.95);
  transform: translateY(-1px);
}

/* =========================
   HERO MUSS UNTEN DRUNTER STARTEN
   ========================= */

.dc-hero {
  position: relative;
}

.dc-hero .dc-hero-inner {
  padding-top: 170px;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1400px) {
  .dc-topbar-inner {
    padding: 18px 36px;
    gap: 24px;
  }

  .dc-brand-link {
    gap: 14px;
  }

  .dc-brand-logo {
    width: 56px;
  }

  .dc-brand-title {
    font-size: 24px;
    letter-spacing: 0.12em;
  }

  .dc-nav {
    gap: 10px;
  }

  .dc-nav-link {
    font-size: 13px;
    padding: 8px 10px;
    letter-spacing: 0.14em;
  }

  .dc-nav-btn {
    min-width: 190px;
    min-height: 48px;
    font-size: 13px;
    padding: 0 20px;
  }

  .dc-hero .dc-hero-inner {
    padding-top: 150px;
  }
}

@media (max-width: 1100px) {
  .dc-topbar-inner {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .dc-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 10px 8px;
  }

  .dc-nav-btn {
    margin-left: 0;
    min-width: 190px;
  }

  .dc-hero .dc-hero-inner {
    padding-top: 165px;
  }
}

@media (max-width: 640px) {
  .dc-topbar-inner {
    padding: 14px 16px;
  }

  .dc-brand-logo {
    width: 46px;
  }

  .dc-brand-title {
    font-size: 18px;
    letter-spacing: 0.10em;
  }

  .dc-nav-link {
    font-size: 12px;
    padding: 7px 8px;
    letter-spacing: 0.12em;
  }

  .dc-nav-btn {
    min-width: 100%;
    min-height: 44px;
    font-size: 12px;
  }

  .dc-hero .dc-hero-inner {
    padding-top: 170px;
  }
}