:root {
  --dark: #173b3b;
  --accent: #e9aa3c;
  --text: #1e2929;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.hero {
  min-height: 620px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 55, 55, 0.86), rgba(16, 55, 55, 0.45)),
    url("../images/container_boba_jovanovic.jpg") center / cover no-repeat;
}

.navigation,
.hero-content,
.section,
.footer {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 18px 0;
  background: #ffffff;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 220px;
  max-width: 52vw;
  height: auto;
}

/* englisches Logo auf Startseite anpassen (aktuell dt Logo für beide Startseiten) */
/* .brand img.logo-en { */
/* width: 175px; */
/* } */

.hero-content {
  padding: 120px 0;
}

.eyebrow {
  margin: 0;
  color: #f5c76e;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  line-height: 1.15;
}

h1 {
  max-width: 740px;
  margin: 18px 0;
  font-size: clamp(2.7rem, 7vw, 5.3rem);
}

h2 {
  margin-top: 0;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}

.intro {
  max-width: 850px;
  font-size: 1.2rem;
}

.button {
  display: inline-block;
  margin-top: 16px;
  padding: 13px 20px;
  color: var(--dark);
  background: var(--accent);
  border-radius: 5px;
  font-weight: 700;
  text-decoration: none;
}

.button-small {
  margin-top: 0;
  padding: 9px 15px;
}

.section {
  max-width: 850px;
  padding: 80px 0;
}

.text-link,
.footer a {
  color: var(--dark);
  font-weight: 700;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid #dfe4df;
  font-size: 0.9rem;
}

.footer a + a {
  margin-left: 14px;
}

.legal-page {
  width: min(850px, calc(100% - 40px));
  margin: 0 auto;
  padding: 60px 0 90px;
}

.legal-page h1 {
  color: var(--dark);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.legal-page h2 {
  margin-top: 44px;
  color: var(--dark);
  font-size: 1.45rem;
}

.legal-page a,
.back-link a {
  color: var(--dark);
  font-weight: 700;
}

.back-link {
  margin-bottom: 46px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.language-switch a {
  color: var(--dark);
  text-decoration: none;
}

.language-switch a:hover {
  text-decoration: underline;
}

.language-active {
  color: var(--accent);
}

.language-separator {
  color: #97a3a3;
}

.subpage-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1100px, calc(100% - 40px));
  min-height: 92px;
  margin: 0 auto;
  padding: 18px 0;
  border-bottom: 1px solid #dfe4df;
}

.subpage-navigation .brand img {
  display: block;
  width: 180px;
  max-width: 50vw;
  height: auto;
}

.subpage-navigation .brand img.logo-en {
  width: 130px;
}

.back-to-home {
  color: var(--dark);
  font-weight: 700;
  text-decoration: none;
}

.back-to-home:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .hero {
    min-height: 540px;
  }

  .hero-content {
    padding: 85px 0;
  }

  .footer {
    display: block;
  }

  .footer span + span {
    display: block;
    margin-top: 10px;
  }
}