/* supplement.css — hook for Phase 4 visual fixes.
   bridgestone-mc.at is a 2006 FrontPage/ASP site styled entirely by inline
   attributes (bgcolor/background/font). Add targeted overrides here in Phase 4. */

/* Шаг 17: ссылки showSitewide() выводятся в тёмном (#111) футере. На страницах без
   FrontPage-стиля для <a> (напр. agb.php с <body bgcolor="#000000">) браузер даёт
   дефолтный синий #0000EE, который сливается с тёмным фоном (low-contrast на /agb/).
   Форсируем светлый цвет только для футерных sitewide-ссылок; showLinks()/.romlidata
   в светлой основной колонке не затрагиваем. */
footer .romlifooter a { color: #ffffff; text-decoration: underline; }

/* Unified centered header + legacy content alignment (Phase 4) */
.romli-site-header {
  max-width: 850px;
  margin: 0 auto;
}
.romli-content-wrap {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 15px;
}
body > table:not([background]) {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

/* CSS nav — replaces GIF buttons (missing news2/produkte2/newsletter2 caused hover disappear) */
.romli-nav {
  display: flex;
  align-items: flex-end;
  flex-wrap: nowrap;
  margin: 0 0 40px;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: bold;
  line-height: 18px;
}
.romli-nav-item {
  display: block;
  height: 18px;
  padding: 0 7px;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  background: linear-gradient(180deg, #a8a8a8 0%, #7a7a7a 45%, #5e5e5e 100%);
  border-top: 1px solid #d8d8d8;
  border-left: 1px solid #c8c8c8;
  border-right: 1px solid #3a3a3a;
  border-bottom: 1px solid #2a2a2a;
  box-sizing: border-box;
}
.romli-nav-item--home {
  background: #000000;
  border-color: #000000;
}
.romli-nav-item:hover,
.romli-nav-item:focus {
  color: #ff0000;
  background: linear-gradient(180deg, #c8c8c8 0%, #9a9a9a 45%, #7a7a7a 100%);
}
.romli-nav-item--home:hover,
.romli-nav-item--home:focus {
  color: #ff0000;
  background: #000000;
}
