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

/* ─── Variables ──────────────────────────────────────────── */
:root {
  --orange:      #E07820;
  --orange-light:#F09040;
  --orange-dark: #C06010;
  --blue:        #2065A0;
  --navy:        #0a1928;
  --navy-2:      #112236;
  --navy-3:      #1a3050;
  --white:       #ffffff;
  --gray-light:  #f7f7f7;
  --gray-mid:    #888888;
  --text-dark:   #1a1a1a;
  --text-light:  #555555;
  --radius:      12px;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.18);
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Base ───────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; color: var(--text-dark); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ─── Layout ─────────────────────────────────────────────── */
.container  { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 52px 0; }

/* ─── Topbar ─────────────────────────────────────────────── */
.topbar { background: var(--navy); color: rgba(255,255,255,0.7); font-size: 13px; padding: 10px 0; border-bottom: 1px solid rgba(224,120,32,0.15); }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.topbar a:hover { color: var(--orange); }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { color: var(--orange); flex-shrink: 0; }
@media (max-width: 600px) { .topbar-left { display: none; } }

/* ─── Navbar ─────────────────────────────────────────────── */
.navbar { position: sticky; top: 0; z-index: 100; background: rgba(10,25,40,0.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(224,120,32,0.12); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 32px; }
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo img { height: 56px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 500; transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--orange); transition: width 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--orange-light); }
.nav-links a.active::after { width: 100%; }
.nav-phone { display: flex !important; align-items: center; gap: 8px; background: var(--orange) !important; color: var(--navy) !important; padding: 10px 20px; border-radius: 8px; font-weight: 700 !important; font-size: 15px; transition: var(--transition); }
.nav-phone:hover { background: var(--orange-light) !important; transform: translateY(-1px); }
.nav-phone::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); }
.mobile-menu { display: none; background: var(--navy-2); border-top: 1px solid rgba(224,120,32,0.12); padding: 20px 24px; }
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-menu ul li a { display: block; padding: 14px 0; color: rgba(255,255,255,0.8); font-size: 16px; font-weight: 500; }
.mobile-phone-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; margin-top: 16px; padding: 16px; background: var(--orange); color: var(--navy); border-radius: 10px; font-size: 17px; font-weight: 700; }
@media (max-width: 768px) { .nav-links { display: none; } .hamburger { display: flex; } }

/* ─── Buttons ────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer; border: none; transition: var(--transition); white-space: nowrap; font-family: inherit; }
.btn-orange, .btn-gold { background: var(--orange); color: var(--navy); }
.btn-orange:hover, .btn-gold:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,120,32,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange-light); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-3); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-white { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.15); }
.btn-outline-white:hover { border-color: var(--orange); color: var(--orange); }

/* ─── Section Labels & Headers ───────────────────────────── */
.section-label { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange-dark); margin-bottom: 14px; }
.section-label::before { content: ''; width: 28px; height: 2px; background: var(--orange); flex-shrink: 0; }
.section-header h2 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(26px, 4vw, 40px); font-weight: 700; color: var(--text-dark); line-height: 1.2; margin-bottom: 14px; }
.section-header h2 em { font-style: normal; color: var(--orange-dark); }
.section-header p { font-size: 16px; color: var(--text-light); line-height: 1.7; }
.section-header.center { text-align: center; margin: 0 auto; }

/* ─── Page Hero Label & Breadcrumb ───────────────────────── */
.page-hero-label { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.page-hero-label::before { content: ''; width: 28px; height: 2px; background: var(--orange); }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-top: 20px; font-size: 13px; color: rgba(255,255,255,0.35); }
.breadcrumb a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--orange); }

/* ─── Content Body (Impressum & Datenschutz) ─────────────── */
.page-content { padding: 80px 0 100px; }
.content-body h2 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(20px, 3vw, 26px); font-weight: 700; color: var(--text-dark); margin: 40px 0 12px; padding-bottom: 12px; border-bottom: 2px solid rgba(224,120,32,0.2); scroll-margin-top: 100px; }
.content-body h2:first-child { margin-top: 0; }
.content-body h3 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin: 24px 0 8px; }
.content-body p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.content-body a { color: var(--orange-dark); }
.content-body a:hover { color: var(--orange); }
.content-body ul, .content-body ol { padding-left: 20px; margin-bottom: 16px; }
.content-body ul li, .content-body ol li { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 6px; }
.content-body strong { color: var(--text-dark); }

/* ─── Footer ─────────────────────────────────────────────── */
footer { background: #040e1a; color: rgba(255,255,255,0.5); font-size: 13px; border-top: 1px solid rgba(224,120,32,0.1); }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-legal a:hover { color: var(--orange); }
