/* PPMC - Peter Papouschek Management Consulting */

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

:root {
  --blue:    #1a3a5c;
  --blue2:   #2a5a8c;
  --accent:  #c8a84b;
  --light:   #f5f7fa;
  --text:    #333;
  --muted:   #666;
  --border:  #dde3ea;
  --white:   #fff;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

a { color: var(--blue2); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--accent); }

/* ── HEADER ── */
header {
  background: var(--blue);
  color: var(--white);
  padding: 0 20px;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.logo img { height: 60px; display: block; }
.logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

/* language switcher */
.lang-switch {
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
}
.lang-switch a {
  color: rgba(255,255,255,0.75);
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 3px;
  transition: all 0.2s;
}
.lang-switch a:hover, .lang-switch a.active {
  color: var(--white);
  border-color: var(--accent);
  background: rgba(200,168,75,0.2);
  text-decoration: none;
}

/* ── NAV ── */
nav {
  background: var(--blue2);
  position: relative;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
nav a {
  display: block;
  color: rgba(255,255,255,0.9);
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: background 0.2s;
  white-space: nowrap;
}
nav a:hover, nav a.active {
  background: rgba(0,0,0,0.25);
  color: var(--white);
  text-decoration: none;
}

/* hamburger button — hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 14px 16px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
/* animated X when open */
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; flex-direction: column; justify-content: center; }
  .nav-inner {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .nav-inner a {
    display: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 13px 20px;
  }
  .nav-inner.open a { display: block; }
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue2) 100%);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}
.hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.hero img.circle-graphic {
  max-width: 100%;
  height: auto;
  margin-bottom: 24px;
}
.hero-circle-placeholder {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 4px solid rgba(255,255,255,0.3);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.5);
}
.hero blockquote {
  font-size: 1.1rem;
  font-style: italic;
  opacity: 0.9;
  max-width: 640px;
  margin: 0 auto 8px;
  border: none;
  padding: 0;
}
.hero cite {
  font-size: 0.85rem;
  opacity: 0.7;
}
.hero .tagline {
  margin-top: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.hero .pillars {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.pillar {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

/* ── MAIN CONTENT ── */
main {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.page-title {
  color: var(--blue);
  font-size: 1.8rem;
  margin-bottom: 28px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--accent);
  display: inline-block;
}

section.content-section {
  margin-bottom: 40px;
}
section.content-section h2 {
  color: var(--blue);
  font-size: 1.3rem;
  margin-bottom: 12px;
}
section.content-section h3 {
  color: var(--blue2);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
section.content-section p {
  margin-bottom: 12px;
  color: var(--text);
}
section.content-section ul, section.content-section ol {
  padding-left: 24px;
  margin-bottom: 12px;
}
section.content-section li {
  margin-bottom: 6px;
}

/* ── MODULE CARDS ── */
.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.module-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  border-top: 4px solid var(--blue2);
}
.module-card h3 {
  color: var(--blue);
  font-size: 1rem;
  margin-bottom: 10px;
}
.module-card .module-meta {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 8px;
}

/* ── REGION GRID ── */
.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.region-card {
  text-align: center;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 16px;
}
.region-card img {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
  border: 3px solid var(--blue2);
}
.region-card .region-placeholder {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: var(--blue2);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
}
.region-card h3 {
  color: var(--blue);
  font-size: 1rem;
  margin-bottom: 10px;
}
.region-card ul {
  list-style: none;
  padding: 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.region-card li { padding: 2px 0; }

/* ── REFERENCES ── */
.ref-intro { margin-bottom: 24px; }
.client-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.client-columns h3 { color: var(--blue); margin-bottom: 10px; font-size: 1rem; }
.client-columns ul {
  list-style: none;
  padding: 0;
}
.client-columns li {
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

/* ── PARTNER LIST ── */
.partner-list {
  list-style: none;
  padding: 0;
}
.partner-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.partner-list .partner-name {
  font-weight: 600;
  color: var(--blue);
}
.partner-list .partner-location {
  font-size: 0.88rem;
  color: var(--muted);
}
.partner-list .partner-url a {
  font-size: 0.88rem;
  color: var(--blue2);
}

/* ── CONTACT BOX ── */
.contact-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  max-width: 500px;
}
.contact-box h2 { color: var(--blue); margin-bottom: 20px; }
.contact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.contact-icon { font-size: 1.2rem; color: var(--blue2); flex-shrink: 0; margin-top: 2px; }
.contact-label { font-size: 0.82rem; color: var(--muted); display: block; }
.contact-value { font-weight: 500; }

/* ── STAFF ── */
.staff-grid { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 20px; }
.staff-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
  flex: 1; min-width: 200px;
}
.staff-card .staff-name { font-weight: 700; color: var(--blue); font-size: 1rem; }
.staff-card .staff-role { font-size: 0.88rem; color: var(--muted); margin-top: 4px; }

/* ── LEGAL / IMPRESSUM ── */
.legal-section { margin-bottom: 28px; }
.legal-section h2 { color: var(--blue); font-size: 1.1rem; margin-bottom: 10px; }
.legal-section p, .legal-section li { font-size: 0.92rem; }

/* ── FOOTER ── */
footer {
  background: var(--blue);
  color: rgba(255,255,255,0.8);
  padding: 32px 20px;
  margin-top: 60px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-section h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.footer-section p, .footer-section a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  display: block;
  margin-bottom: 4px;
}
.footer-section a:hover { color: var(--accent); text-decoration: none; }
.footer-bottom {
  max-width: 1100px;
  margin: 20px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--accent); text-decoration: none; }

/* ── COOKIE CONSENT ── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(26, 58, 92, 0.97);
  color: var(--white);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 9999;
  font-size: 0.9rem;
  box-shadow: 0 -3px 12px rgba(0,0,0,0.3);
}
#cookie-banner p { margin: 0; }
#cookie-banner .cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
#cookie-accept {
  background: var(--accent);
  color: var(--blue);
  border: none;
  padding: 8px 22px;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}
#cookie-accept:hover { opacity: 0.85; }
#cookie-more {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  white-space: nowrap;
}
#cookie-more:hover { color: var(--accent); text-decoration: none; }
.cookie-hidden { display: none !important; }

/* ── TRAVEL MANAGEMENT ── */
.travel-img { max-width: 400px; width: 100%; border-radius: 8px; margin-bottom: 20px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .header-inner { flex-direction: column; gap: 12px; text-align: center; }
  .hero { padding: 40px 16px; }
  .client-columns { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .module-grid { grid-template-columns: 1fr; }
  .region-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .region-grid { grid-template-columns: 1fr; }
  #cookie-banner { flex-direction: column; text-align: center; }
}
