/* Kampana Nachfolgekapital – globale Styles */

/* Farbdefinitionen und Font */
:root {
  --primary-color: #000345;      /* Dunkles Blau */
  --secondary-color: #BBA53D;    /* Warmes Gold */
  --background-color: #ffffff;   /* Weißer Hintergrund */
  --text-color: #000345;         /* Dunkelblauer Text */
  --link-color: #BBA53D;         /* Linkfarbe */
}

/* Allgemeine Grundeinstellungen */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  /* Body text in Aptos. Fallback to sans-serif if unavailable */
  font-family: 'Aptos', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

/* Headings retain the display font */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Krungthep', sans-serif;
}

header {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

header img.logo {
  height: 48px;
  width: auto;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

nav a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.2s ease;
}

nav a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Language switch style: smaller margin-left to push to the right */
nav li.lang-switch {
  margin-left: auto;
}

/* Hero Abschnitt */
.hero {
  padding: 5rem 2rem;
  text-align: center;
  /* Background with overlay: default image, can be overridden inline */
  /* Scenic Kampenwand image behind dark overlay */
  background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('../img/kampenwand1_new.jpg');
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0.5rem auto;
}

/* Generische Sektionen */
.section {
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.section h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.section ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}

.section li {
  margin-bottom: 0.4rem;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  text-align: center;
  padding: 1rem 2rem;
  font-size: 0.9rem;
}

/* Profile layout: used for Principal bio section */
.profile {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.5rem;
  margin-top: 2rem;
}

.profile-photo {
  flex: 0 0 200px;
  max-width: 200px;
  border-radius: 8px;
}

.profile-content {
  flex: 1 1 300px;
}

/* Decorative page images */
.page-image {
  width: 100%;
  height: auto;
  margin: 2rem 0;
  border-radius: 8px;
  display: block;
}

/* Utility: hide bullet list dots for custom lists where needed */
.list-unstyled {
  list-style: none;
  padding-left: 0;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .profile-photo {
    flex: 1 1 100%;
    max-width: 100%;
  }
}