/* =======================================================================
   GALLIUM ESTATE — PARENT THEME MAIN CSS v2.0
   Design System: Navy / Gold / Slate
   Fonts: Cormorant Garamond (Headlines) + DM Sans (Body)
   ======================================================================= */

/* ── CSS VARIABLES ───────────────────────────────────────────────── */
:root {
  /* Farben */
  --navy:        #0A1A2F;
  --navy-mid:    #0E2040;
  --navy-deep:   #04080f;
  --gold:        #C9A86A;
  --gold-d:      #9A7030;
  --gold-light:  #E8D090;
  --white:       #ffffff;
  --surface-1:   #f8f6f1;
  --surface-2:   #f0ece3;
  --border:      rgba(10,26,47,0.10);
  --border-gold: rgba(201,168,106,0.25);
  --slate-300:   #cbd5e1;
  --slate-400:   #94a3b8;
  --slate-600:   #475569;
  --slate-800:   #1e293b;

  /* Typografie */
  --font-head:  'Cormorant Garamond', Georgia, serif;
  --font-body:  'DM Sans', 'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-py: clamp(60px, 8vw, 120px);
  --container:  1200px;
  --radius:     8px;
  --radius-lg:  16px;
}

/* ── RESET & BASE ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--slate-800);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── CONTAINER ───────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

/* ── HEADER ──────────────────────────────────────────────────────── */
.ge-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,26,47,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,106,0.12);
  transition: box-shadow 0.3s;
}
.ge-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.ge-header-spacer { height: 72px; }

/* Logo */
.ge-header__logo { display: flex; align-items: center; }
.ge-header__logo-text {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
}
.ge-header__logo img { height: 40px; width: auto; }

/* Nav */
.ge-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.ge-nav__list li a {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.ge-nav__list li a:hover,
.ge-nav__list li.current-menu-item a {
  color: var(--gold);
  background: rgba(201,168,106,0.08);
}

/* Header actions */
.ge-header__actions { display: flex; align-items: center; gap: 12px; }
.ge-header__phone { display: flex; align-items: center; gap: 6px; }

/* Burger */
.ge-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.ge-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.ge-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.ge-btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.ge-btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,168,106,0.35);
}
.ge-btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: rgba(201,168,106,0.4);
}
.ge-btn--outline-gold:hover {
  background: rgba(201,168,106,0.08);
  border-color: var(--gold);
}
.ge-btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.ge-btn--outline-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}
.ge-btn--secondary {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.15);
}
.ge-btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.ge-btn--outline:hover { border-color: var(--gold); color: var(--gold-d); }
.ge-btn--sm { padding: 8px 16px; font-size: 12px; }
.ge-btn--lg { padding: 16px 32px; font-size: 15px; }

/* ── FOOTER ──────────────────────────────────────────────────────── */
.ge-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}
.ge-footer__inner { padding-block: 64px 32px; }
.ge-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 24px;
}
.ge-footer__logo {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}
.ge-footer__tagline { color: rgba(255,255,255,0.45); font-size: 13px; margin-bottom: 12px; }
.ge-footer__phone {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold); font-weight: 600; font-size: 15px;
  transition: color 0.2s;
}
.ge-footer__phone:hover { color: var(--gold-light); }
.ge-footer__nav-list { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.ge-footer__nav-list a { color: rgba(255,255,255,0.55); font-size: 13px; transition: color 0.2s; }
.ge-footer__nav-list a:hover { color: var(--gold); }
.ge-footer__bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.ge-footer__copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.ge-footer__legal { display: flex; gap: 16px; }
.ge-footer__legal a { font-size: 12px; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.ge-footer__legal a:hover { color: var(--gold); }

/* ── BREADCRUMB ──────────────────────────────────────────────────── */
.ge-breadcrumb { padding: 10px 0 20px; font-size: 12px; }
.ge-breadcrumb__list { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 2px; }
.ge-breadcrumb__item { display: flex; align-items: center; gap: 4px; }
.ge-breadcrumb__item a { color: var(--slate-400); transition: color 0.15s; }
.ge-breadcrumb__item a:hover { color: var(--gold-d); }
.ge-breadcrumb__item--current span { color: var(--slate-600); }
.ge-breadcrumb__sep { color: var(--slate-300); font-size: 11px; }

/* ── UTILITY ─────────────────────────────────────────────────────── */
.ge-fade { opacity: 0; transform: translateY(16px); transition: opacity 0.5s, transform 0.5s; }
.ge-fade--visible { opacity: 1; transform: none; }

/* ── MOBILE ──────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .ge-burger { display: flex; }
  .ge-nav {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(10,26,47,0.98);
    border-top: 1px solid rgba(201,168,106,0.12);
    padding: 16px 0;
  }
  .ge-nav.is-open { display: block; }
  .ge-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .ge-nav__list li a { padding: 14px 24px; border-radius: 0; }
  .ge-header__phone { display: none; }
  .ge-footer__top { grid-template-columns: 1fr; }
  .ge-footer__bottom { flex-direction: column; align-items: flex-start; }
}
