/* --- Local Fonts --- */
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap; src: url("fonts/Inter-Regular.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 500; font-display: swap; src: url("fonts/Inter-Medium.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap; src: url("fonts/Inter-SemiBold.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 700; font-display: swap; src: url("fonts/Inter-Bold.woff2") format("woff2"); }

/* ============================================
   Inter-Management WordPress Theme Styles
   ============================================ */

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

:root {
  --background: #faf8f5;
  --foreground: #1a1d2e;
  --card: #ffffff;
  --card-foreground: #1a1d2e;
  --primary: #2d8a4e;
  --primary-foreground: #fcfcfa;
  --secondary: #f0eee6;
  --secondary-foreground: #2a5a38;
  --muted: #f0eeea;
  --muted-foreground: #6b6e7a;
  --accent: #e07b2f;
  --accent-foreground: #fcfcfa;
  --border: #e8e5dd;
  --input: #e8e5dd;
  --ring: #2d8a4e;
  --navy: #2a2e42;
  --navy-foreground: #fcfcfa;
  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --radius: 0.625rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* --- Utilities --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: opacity 0.2s;
  cursor: pointer;
  border: none;
}
.btn:hover { opacity: 0.9; }
.btn--accent { background-color: var(--accent); color: var(--accent-foreground); }
.btn--outline {
  background: transparent;
  border: 1px solid rgba(252,252,250,0.3);
  color: var(--primary-foreground);
}
.btn--outline:hover { background: rgba(252,252,250,0.1); }

.badge {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}

@media (min-width: 768px) {
  .card--lg { padding: 3rem; }
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav__logo span {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--foreground);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.nav__links a:hover,
.nav__links a.active { color: var(--accent); }

.nav__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

.nav__mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
}

.nav__mobile-menu a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

.nav__mobile-menu a:hover { color: var(--accent); }

@media (max-width: 767px) {
  .nav__links { display: none; }
  .nav__mobile-toggle { display: block; }
  .nav__mobile-menu.open { display: block; }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 85vh;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,60,30,0.75), rgba(60,40,15,0.60));
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.hero__content .badge { color: var(--accent); margin-bottom: 1rem; }
.hero__content h1 { font-size: 3rem; color: var(--primary-foreground); }
.hero__content p { margin-top: 1.5rem; font-size: 1.125rem; color: rgba(252,252,250,0.8); max-width: 640px; margin-left: auto; margin-right: auto; }
.hero__buttons { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

@media (min-width: 768px) {
  .hero__content h1 { font-size: 4.5rem; }
}

/* --- Page Header (inner pages) --- */
.page-header {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.page-header--navy { background: var(--navy); }

.page-header__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,60,30,0.75), rgba(60,40,15,0.60));
}

.page-header__content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.page-header__content .badge { color: var(--accent); }
.page-header__content h1 {
  margin-top: 0.75rem;
  font-size: 2.5rem;
  color: var(--primary-foreground);
}

@media (min-width: 768px) {
  .page-header__content h1 { font-size: 3rem; }
}

/* --- About Section --- */
.about { padding: 6rem 0; }
.about .badge { display: block; text-align: center; }
.about h2 { text-align: center; margin-top: 0.75rem; font-size: 1.875rem; color: var(--foreground); }
.about__text { margin-top: 3rem; max-width: 900px; margin-left: auto; margin-right: auto; }
.about__text p { margin-bottom: 1.5rem; color: var(--muted-foreground); line-height: 1.8; }
.about__text strong { color: var(--foreground); }

@media (min-width: 768px) {
  .about h2 { font-size: 2.25rem; }
}

/* --- Pillars --- */
.pillars { padding: 6rem 0; background: var(--card); }
.pillars h2 { text-align: center; font-size: 1.875rem; color: var(--foreground); }
.pillars__grid { margin-top: 4rem; display: grid; gap: 2rem; }

@media (min-width: 768px) {
  .pillars h2 { font-size: 2.25rem; }
  .pillars__grid { grid-template-columns: repeat(3, 1fr); }
}

.pillar {
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  background: var(--background);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.pillar:hover { border-color: rgba(224,123,47,0.3); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }

.pillar__icon {
  width: 3.5rem; height: 3.5rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0.75rem;
  background: rgba(224,123,47,0.1);
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.pillar h3 { font-size: 1.25rem; color: var(--foreground); }
.pillar p { margin-top: 0.75rem; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; }

/* --- CTA Section --- */
.cta { padding: 6rem 0; background: var(--navy); text-align: center; }
.cta h2 { font-size: 1.875rem; color: var(--navy-foreground); }
.cta p { margin-top: 1rem; color: rgba(252,252,250,0.7); max-width: 600px; margin-left: auto; margin-right: auto; }
.cta .btn { margin-top: 2rem; }

@media (min-width: 768px) {
  .cta h2 { font-size: 2.25rem; }
}

/* --- Team Profile --- */
.profile { padding: 6rem 0; }
.profile__card { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }

@media (min-width: 768px) {
  .profile__card { flex-direction: row; align-items: flex-start; }
}

.profile__img {
  width: 160px; height: 160px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border: 4px solid rgba(224,123,47,0.2);
}

.profile__info h2 { font-size: 1.5rem; color: var(--foreground); }
.profile__info .role { margin-top: 0.25rem; font-size: 0.875rem; font-weight: 500; color: var(--accent); }
.profile__info .bio { margin-top: 1.5rem; }
.profile__info .bio p { margin-bottom: 1rem; color: var(--muted-foreground); line-height: 1.8; }
.profile__info .bio a { color: var(--accent); }
.profile__info .bio a:hover { text-decoration: underline; }

/* --- Company Info Section --- */
.company-info { margin-top: 3rem; }
.company-info h2 { font-size: 1.5rem; color: var(--foreground); }
.company-info__text { margin-top: 1.5rem; }
.company-info__text p { margin-bottom: 1rem; color: var(--muted-foreground); line-height: 1.8; }

/* --- Coaching Unit --- */
.coaching { padding: 6rem 0; }
.coaching__card { text-align: center; }
.coaching__icon {
  width: 4rem; height: 4rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 1rem;
  background: rgba(224,123,47,0.1);
  margin: 0 auto 1.5rem;
  color: var(--accent);
}
.coaching h2 { font-size: 1.875rem; color: var(--foreground); }
.coaching p { margin-top: 1rem; color: var(--muted-foreground); }
.coaching__price { margin-top: 1.5rem; font-size: 2.5rem; font-weight: 700; color: var(--accent); }
.coaching__price span { font-size: 1.125rem; font-weight: 400; color: var(--muted-foreground); }
.coaching__unit { font-size: 0.875rem; color: var(--muted-foreground); margin-top: 0.25rem; }
.coaching .btn { margin-top: 2rem; }

/* --- Impressum --- */
.impressum { padding: 6rem 0; }
.impressum__grid { display: grid; gap: 3rem; }

@media (min-width: 768px) {
  .impressum__grid { grid-template-columns: 1fr 1fr; }
}

.impressum h2 { font-size: 1.25rem; font-weight: 700; color: var(--foreground); }

.impressum__details { margin-top: 1.5rem; }
.impressum__details .detail-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.impressum__details .detail-row svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }

.impressum__lei {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.impressum__lei a { font-size: 0.875rem; color: var(--accent); }
.impressum__lei a:hover { text-decoration: underline; }

/* --- Contact Form --- */
.contact-form { margin-top: 1.5rem; }
.contact-form .form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }

@media (min-width: 480px) {
  .contact-form .form-row--2 { grid-template-columns: 1fr 1fr; }
}

.contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.625rem 1rem;
  border: 1px solid var(--input);
  border-radius: 0.5rem;
  background: var(--background);
  font-size: 0.875rem;
  color: var(--foreground);
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.contact-form textarea { resize: none; }

.contact-form .btn { width: 100%; justify-content: center; }

/* --- Footer --- */
.footer {
  border-top: 1px solid var(--border);
  background: var(--card);
  padding: 3rem 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer__inner { flex-direction: row; justify-content: space-between; }
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--accent); }

.footer__copy {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* --- Animation --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeInUp 0.6s ease-out both; }
