/* =========================================================
   FABRIC-STOCK24 - BASE STYLES
   Grundsystem: Variablen, Reset, Typography, Buttons, Form basics
   ========================================================= */


/* --- base.css --- */
/* base.css */


/* --- layout.css --- */
/* ── TOPBAR ──────────────────────────────────────────── */
.topbar {
  background: var(--topbar-bg, #0f1923);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 0;
  font-size: .76rem;
}
.topbar-inner {
  max-width: var(--layout-max-width, 1280px);
  margin: 0 auto;
  padding: 6px var(--layout-padding, 24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: nowrap;
}
.topbar-notice {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: #e8c96a;
  font-size: .74rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 55%;
}
.topbar-dot {
  width: 6px; height: 6px;
  border-radius: 50%; background: #e8c96a;
  flex-shrink: 0;
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink{0%,100%{opacity:.3}50%{opacity:1}}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.topbar-link {
  font-family: 'Lato', sans-serif;
  font-size: .73rem;
  font-weight: 300;
  color: var(--topbar-text, #8fa8b8);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color .18s;
  white-space: nowrap;
}
.topbar-link:hover { color: #fff; }
.topbar-link i { font-size: .8rem; }
/* Sprach-Dropdown */
.lang-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 3px 9px 3px 7px;
  cursor: pointer;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .3px;
  transition: background .18s;
  white-space: nowrap;
}
.lang-toggle:hover { background: rgba(255,255,255,.12); }
.lang-toggle .flag { font-size: .9rem; line-height: 1; }
.lang-toggle .chevron {
  font-size: .55rem;
  opacity: .6;
  margin-left: 1px;
  transition: transform .18s;
}
.lang-dropdown.open .lang-toggle .chevron { transform: rotate(180deg); }
.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #162636;
  border: 1px solid rgba(255,255,255,.1);
  border-top: 2px solid #c9a84c;
  border-radius: 8px;
  min-width: 160px;
  box-shadow: 0 12px 32px rgba(0,0,0,.45);
  z-index: 9999;
  overflow: hidden;
}
.lang-dropdown.open .lang-menu { display: block; }
.lang-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  font-family: 'Lato', sans-serif;
  font-size: .82rem;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.lang-menu a:hover { background: rgba(201,168,76,.12); color: #c9a84c; }
.lang-menu a.active { background: rgba(201,168,76,.08); color: #c9a84c; font-weight: 700; }
.lang-menu a .flag { font-size: 1rem; }
.lang-menu a .lang-name { flex: 1; }
.lang-menu a .lang-short { font-size: .7rem; opacity: .5; font-weight: 700; letter-spacing: .5px; }
/* ── NAVBAR ──────────────────────────────────────────── */
.main-nav {
  background: var(--nav-bg, #1b3a4b);
  border-bottom: 3px solid var(--nav-border, #c9a84c);
  position: sticky; top: 0; z-index: 900;
  box-shadow: 0 4px 20px rgba(15,25,35,.35);
}
.nav-inner {
  max-width: var(--layout-max-width, 1280px);
  margin: 0 auto;
  padding: 0 var(--layout-padding, 24px);
  display: flex;
  align-items: center;
  height: var(--nav-height, 62px);
  gap: 0;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0; margin-right: 20px;
}
.nav-logo img {
  height: var(--logo-height, 40px);
  max-width: var(--logo-max-width, 220px);
  object-fit: contain; display: block;
}
.nav-logo-icon {
  width: 34px; height: 34px;
  background: var(--col-gold, #c9a84c);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: #0f1923; font-size: 1rem; flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Raleway', sans-serif;
  font-weight: 800; font-size: 1.05rem;
  color: #fff; letter-spacing: -.3px; white-space: nowrap;
}
/* Nav Links */
.nav-links {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: 2px;
  flex: 1; justify-content: center;
}
.nav-link-item {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: var(--nav-font-size, .75rem);
  color: var(--nav-link, rgba(255,255,255,.8)) !important;
  text-decoration: none !important;
  padding: 8px 11px;
  border-radius: 6px;
  display: flex; align-items: center; gap: 5px;
  letter-spacing: .7px; text-transform: uppercase;
  transition: all .18s; white-space: nowrap;
}
.nav-link-item:hover,
.has-dropdown.open > .nav-link-item {
  background: var(--nav-link-hover-bg, rgba(201,168,76,.18));
  color: var(--nav-link-hover, #c9a84c) !important;
}
.nav-arrow { font-size: .55rem; transition: transform .2s; }
.has-dropdown.open .nav-arrow { transform: rotate(180deg); }
.has-dropdown { position: relative; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: var(--nav-dropdown-bg, var(--nav-bg, #1b3a4b));
  border: 1px solid rgba(201,168,76,.2);
  border-top: 2px solid var(--nav-border, #c9a84c);
  border-radius: 10px;
  list-style: none; padding: 6px 0; margin: 0;
  min-width: 210px;
  box-shadow: 0 14px 40px rgba(0,0,0,.4);
  z-index: 1000;
}
.has-dropdown.open .nav-dropdown { display: block; }
.nav-dd-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  font-family: 'Lato', sans-serif;
  font-size: .85rem; font-weight: 400;
  color: var(--nav-dropdown-text, var(--nav-link, rgba(255,255,255,.88)));
  text-decoration: none;
  transition: all .15s;
}
.nav-dd-item:hover {
  background: rgba(201,168,76,.12);
  color: var(--nav-link-hover, #c9a84c);
}
.nav-dd-item i { font-size: .8rem; color: var(--nav-border, #c9a84c); width: 14px; flex-shrink: 0; }
/* Auth */
.nav-auth {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: 6px;
  flex-shrink: 0; margin-left: 16px;
}
.nav-auth-link {
  font-family: 'Lato', sans-serif;
  font-size: .8rem; font-weight: 400;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  display: flex; align-items: center; gap: 5px;
  padding: 6px 9px; border-radius: 6px;
  transition: all .18s;
}
.nav-auth-link:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav-auth-logout { color: #ef9595 !important; }
.nav-auth-logout:hover { background: rgba(185,28,28,.15) !important; color: #fca5a5 !important; }
.nav-btn-register {
  font-family: 'Raleway', sans-serif;
  font-weight: 800; font-size: .76rem; letter-spacing: .4px;
  background: var(--reg-btn-bg, #c9a84c);
  color: var(--reg-btn-text, #0f1923) !important;
  text-decoration: none;
  padding: 8px 16px; border-radius: 25px;
  transition: all .18s; white-space: nowrap;
}
.nav-btn-register:hover { filter: brightness(1.1); transform: translateY(-1px); }
/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px; margin-left: auto; flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px; transition: all .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }


:root{
  --col-navy:#1b3a4b;
  --col-night:#0f1923;
  --col-gold:#c9a84c;
  --col-muted:#64748b;
  --col-text:#374151;
  --col-border:#e2ddd6;
  --col-soft:#f5f2ec;
  --col-whatsapp:#25d366;
  --col-info:#2980b9;
  --col-success:#1e8449;
  --font-head:'Raleway',sans-serif;
  --font-body:'Lato',sans-serif;
}
body{font-family:var(--font-body);color:var(--col-text);}
h1,h2,h3,h4,h5,h6{font-family:var(--font-head);}
a{text-decoration:none;}
