﻿/* Real legacy Bridge shop (bridge.fc-web.de) renders on a flat light-gray page
   background (#f2f2f2, css/style.scss's $background-color) with no separate white
   content card - DefaultTemplate.scss's shared #content rule defaults to
   var(--surface) (white) instead, so both are overridden here to match. */
body {
  background-color: #f2f2f2;
}

#content {
  background-color: transparent;
}

/* Footer matches the real site's dark-gray band ($background-color-dark: #444)
   with light text ($primary-color: #e1e1e1 in the legacy scss - despite the name,
   it's used there only as the footer's text color, not a brand accent). */
.footer {
  background-color: #444;
  color: #e1e1e1;
}

.footer a, .footer-link {
  color: #e1e1e1;
}

.footer a:hover {
  color: #fff;
}

/* Real legacy nav-link color is plain black ($menu-link-color: #222) for BOTH the
   meta-nav (phone/Widerruf/account) and the category nav - DefaultTemplate.scss's
   shared `.nav-link { color: var(--accent) }` rule (accent = Bridge's own orange
   primary color) would otherwise paint every nav link orange, which the real site
   never does; orange is reserved for hover states and buttons only. */
#meta-nav .nav-link,
#categoryWrapper .nav-link {
  color: #222;
}

#meta-nav .nav-link:hover {
  color: #e68a00; /* $link-color-shade */
}

/* Real legacy #navbarSupportedContent: the category links sit inside a boxed white
   card (distinct from the page's #f2f2f2 background) with a subtle border/shadow,
   each link separated by a thin vertical rule - not a flat unstyled row like
   DefaultTemplate's shared default. Ported verbatim from the real site's own
   css/style.scss. */
#navbarSupportedContent {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  box-shadow: 0 3px 3px 0 #cccccc;
}

#navbarSupportedContent ul {
  width: 100%;
}

#navbarSupportedContent li {
  border-right: 1px solid #e6e6e6;
  margin: 0;
}

@media (min-width: 992px) {
  #navbarSupportedContent li {
    flex: 1 1 auto;
    text-align: center;
  }
}
#navbarSupportedContent li:hover {
  background-color: #FF9900; /* $link-color */
  transition: background-color 0.4s;
}

#navbarSupportedContent li:last-child {
  border-right: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

#navbarSupportedContent li:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
