/* Grundlayout */
body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  background-color: #f5f1e9;
  color: #2D5C8A;
  font-size: 16px;
  line-height: 1.75;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 2rem;
  background: #f5f1e9;
  border-bottom: 1px solid #ccc;
  flex-wrap: wrap;
}

.logo-container {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.logo-container img {
  height: 85px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
  font-weight: 600;
}

.gold {
  color: #A0762B;
  font-size: 1.6rem;
  line-height: 1.2;
}

.blue {
  color: #2D5C8A;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

/* Navigation */
nav {
  position: relative;
  margin-top: 0.5rem;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #2D5C8A;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
  transition: color 0.3s ease;
}

nav ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: #A0762B;
  transition: width 0.3s ease;
}

nav ul li a:hover {
  color: #A0762B;
}

nav ul li a:hover::after {
  width: 100%;
}

/* Zitat oben */
blockquote.quote.top {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: #A0762B;
  font-size: 1.6rem;
  font-weight: 500;
  margin: 3rem auto 2rem;
  max-width: 720px;
  text-align: center;
  line-height: 1.4;
}

blockquote.quote.top cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.05rem;
  font-style: normal;
  color: #BBB;
  font-weight: 300;
  letter-spacing: 0.3px;
}

/* Weitere Zitate */
blockquote.quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: #A0762B;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 2rem 0;
  line-height: 1.5;
  text-align: left;
}

blockquote.quote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 1rem;
  font-style: normal;
  color: #BBB;
  font-weight: 300;
  letter-spacing: 0.3px;
}

/* Zwei-Spalten-Layout */
.columns {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.columns div {
  flex: 1 1 45%;
  min-width: 300px;
}

.en {
  color: #2D5C8A;
}

.de {
  color: #6A7683;
}

/* Footer */
footer {
  text-align: left;
  padding: 2rem;
  font-size: 0.9rem;
  color: #BBB;
}

.signature {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: #444;
}

.signature a {
  color: #444;
  text-decoration: none;
  border-bottom: 1px dotted #444;
}

.signature a:hover {
  color: #A0762B;
  border-bottom-color: #A0762B;
}

/* Stil für elegante Links im Fließtext */
.intext-link {
  color: #A0762B;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px dotted #A0762B;
  transition: all 0.3s ease;
}

.intext-link:hover {
  color: #2D5C8A;
  border-bottom-style: solid;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .columns {
    flex-direction: column;
  }

  .hamburger {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    background: #f5f1e9;
    position: absolute;
    right: 0;
    top: 60px;
    padding: 1rem;
    border: 1px solid #ccc;
    z-index: 999;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    margin: 10px 0;
  }
}