@charset "UTF-8";
/* roboto-condensed-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url('../../fonts/roboto-condensed-v31-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ url('../../fonts/roboto-condensed-v31-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* roboto-condensed-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 500;
  src: url('../../fonts/roboto-condensed-v31-latin-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ url('../../fonts/roboto-condensed-v31-latin-500.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* roboto-condensed-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url('../../fonts/roboto-condensed-v31-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ url('../../fonts/roboto-condensed-v31-latin-700.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* Fonts */ :root {
  --default-font: "Roboto Condensed", sans-serif, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  --heading-font: "Roboto Condensed", sans-serif;
  --nav-font: "Roboto Condensed", sans-serif;
}
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #000000; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2b2320; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #013b80; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}
:root {
  --nav-color: #212529; /* The default color of the main navmenu links */
  --nav-hover-color: #013b80; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #013b80; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}
.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}
/* Smooth scroll */ :root {
  scroll-behavior: smooth;
}
/*--------------------------------------------------------------
# General Styling 
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: "Roboto Condensed", sans-serif;
}
a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
p {
  font-size: 22px;
}
img {
  object-position: center top;
}
@media (min-width: 1200px) {
  .text-columns {
    column-count: 2;
    column-gap: 60px;
    text-align: justify;
    text-align-last: none;
  }
}
button {
  color: #000;
  background-color: #013b80;
  padding: 20px;
}
button a {
  color: #fff;
  font-size: 22px;
}
.deskansicht {
  display: none;
}
.branding p {
  margin-bottom: 0;
}
@media (min-width: 988px) {
  .deskansicht {
    display: block;
  }
  .mobilansicht {
    display: none;
  }
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}
.header .topbar {
  background-color: var(--background-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}
.header .branding {
  min-height: 60px;
  padding: 10px 0;
}
.header .logo {
  line-height: 1;
}
.scrolled .header {
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
}
.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu a, .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 12px;
    font-size: 22px;
    font-family: var(--nav-font);
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i, .navmenu a:focus i {
    font-size: 20px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu li:last-child a {
    padding-right: 0;
  }
  .navmenu li:hover > a, .navmenu .active, .navmenu .active:focus {
    color: var(--nav-hover-color);
  }
}
/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu a, .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i, .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 0px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  .navmenu a i:hover, .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  .navmenu a:hover, .navmenu .active, .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active i, .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }
  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}
.topbar {
  display: none;
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
footer .rahmen {
  border-top: 1px solid #000;
  padding-top: 25px;
  margin-bottom: 50px;
  margin-top: 100px;
}
footer a {
  color: #000;
}
footer .bi-linkedin {
  font-size: 25px;
}
/*--------------------------------------------------------------
#  Sprache umschalten im Bild 
--------------------------------------------------------------*/
.hero-lang-switcher {
  top: 20px;
  right: 20px;
  font-size: 16px;
}
.hero-lang-switcher {
  position: absolute;
  top: 30px; /* Abstand von oben */
  right: 30px; /* Abstand von rechts */
  z-index: 10; /* Sicherstellen, dass es über dem Bild liegt */
  color: #fff;
  font-size: 18px;
  font-family: var(--nav-font);
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: #013b80;
  padding: 5px;
}
.hero-lang-switcher a {
  color: rgba(255, 255, 255, 0.7); /* Nicht aktive Sprache etwas blasser */
  transition: 0.3s;
}
.hero-lang-switcher a:hover {
  color: #fff;
}
.hero-lang-switcher .active {
  font-weight: 700;
  color: #fff;
}
@media (min-width: 768px) {
  .hero-lang-switcher {
    display: none;
	}}
  .topbar {
    display: block;
  }

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #013b80;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}
.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Linie Impressum und Datenschutz
--------------------------------------------------------------*/
.page-title {
  position: relative;
}
.page-title .innen {
  border-top: solid 1px #000;
  padding: 25px 0;
  color: #fff;
}
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section, .section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding-top: 120px;
  scroll-margin-top: 130px;
  overflow: clip;
}
@media (max-width: 1199px) {
  section, .section {
    scroll-margin-top: 80px;
  }
}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: left;
  padding-bottom: 60px;
  position: relative;
}
.section-title h2, .section-title h1 {
  font-size: 60px;
  font-weight: 700;
  position: relative;
}
.section-title h2:after, .section-title h1:after {
  content: "";
  width: 36px;
  height: 3px;
  background: #000;
  display: inline-block;
}
.section-title h2:after, .section-title h1:after {
  margin: 0 0 0 15px;
}
.section-title p {
  margin-bottom: 0;
}
@media (max-width: 988px) {
  .section-title h2, .section-title h1 {
    font-size: 50px;
  }
}
@media (max-width: 500px) {
  .section-title h2, .section-title h1 {
    font-size: 40px;
  }
}
/*--------------------------------------------------------------
# Projekte
--------------------------------------------------------------*/
#projekte ul li {
  font-size: 22px;
  list-style-type: square;
}
/*--------------------------------------------------------------
# Janrunau-Section
--------------------------------------------------------------*/
.janrunau {
  padding-top: 92px;
}
.janrunau .profile-section .profile-image-container {
  margin-bottom: 2rem;
}
.janrunau .profile-section img {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 0.5;
  object-fit: cover;
  border-radius: 0
}
@media (max-width: 576px) {
  .janrunau .profile-section img {
    aspect-ratio: 0.8;
  }
}
.janrunau .profile-section .profile-meta .status {
  margin-top: 15px;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.janrunau .profile-section .profile-meta .status .status-indicator {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  margin-right: 0.5rem;
  animation: pulse 2s infinite;
}
.janrunau h3 {
  margin-top: 80px;
}
.janrunau ul li {
  font-size: 22px;
  list-style: square;
}
/*--------------------------------------------------------------
# Rechtliches
--------------------------------------------------------------*/
.rechtliches {
  position: relative;
}
.rechtliches h2 {
  margin-top: 40px;
}
.rechtliches h3 {
  margin-top: 30px;
}
.rechtliches li {
  font-size: 1.2em;
}
/*--------------------------------------------------------------
# Stiftung
--------------------------------------------------------------*/
#links a {
  padding: 20px 10px;
  background-color: #013b80;
  display: inline-block;
  color: #fff;
  font-size: 22px;
  margin-right: 15px;
  margin-bottom: 5px;
}
/*--------------------------------------------------------------
# Hero 3 Section - Startseite | Profil
--------------------------------------------------------------*/
.hero-3 {
  width: 100%;
  min-height: 90vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10vh;
}
.hero-3 p {
  margin: 0;
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  background: rgba(5, 60, 126, 0.91);
  display: inline-block;
  padding: 5px 15px;
  line-height: 1.22;
}
.hero-3 img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-3:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 90%);
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero-3 .container {
  position: relative;
  z-index: 3;
}


@media (max-width: 1200px) {
  .hero-3 p {
    font-size: 50px;
  }
 
}
@media (max-width: 768px) {
  .hero-3 p {
    font-size: 40px;
  }
 
}
@media (max-width: 1200px) {
.hero-3 p {
    font-size: 50px;
}
.hero-3 {
    padding-bottom: 10vh;
}
}

@media (max-width: 768px) {
.hero-3 p {
    font-size: 40px;
}
.hero-3 {
    padding-bottom: 10vh;
}
}

@media (min-width: 768px) and (max-height: 800px) {
.hero-3 p {
    font-size: 40px;
}
.hero-3 {
    padding-bottom: 0;
}
}

/*--------------------------------------------------------------
# Auszeichnungen Section
--------------------------------------------------------------*/

.awards .awards-innen {
  padding: 40px;
  background-color: #013b80;
}
.awards p {
  color: #fff;
}
.awards .about-img {
  min-height: 600px;
  position: relative;
}
@media (min-width: 992px) {
  .awards .about-img {
    position: absolute;
    top: -100px;
    right: 60px;
    min-height: 600px;
  }
}
.awards .about-img img {
  position: absolute;
  inset: 0;
  display: block;
  width: 90%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: 1;
}
.awards .award-year {
  font-size: 16px;
  margin-bottom: 0;
  color: #fff;
}
.awards .award-title {
  font-size: 32px;
  line-height: 1.2;
  margin-top: 5px;
  font-weight: 500;
}
.awards .awards-innen {
  padding: 60px 40px; /* Oben/Unten etwas mehr Platz */
  background-color: #013b80;
}
@media (max-width: 991px) {
  .awards .about-img {
    min-height: 300px; /* Mobil etwas niedriger  */
    position: relative;
    margin-bottom: 0; /* Abstand zur Textbox */
  }
  .awards .about-img img {
    position: relative; /* Hebt das "absolute" für mobil auf */
    height: auto;
    object-fit: contain; /* Zeigt das ganze Bild statt es zu beschneiden */
	width: 100%;
  }
  .awards .awards-innen {
    padding: 20px;
  }
}