@charset "UTF-8";
/* CSS Document */

body {
  background-color: #ffffff;
  color: #080809;
  font-family: Consolas, 'Merriweather', Georgia, serif;
  font-size: 1.2rem; /* Grundgröße für alle Elemente */
  line-height: 1.6;
	padding-top: 160px;
}

h1.site-title {
  font-weight: 500; /* etwas kräftiger, aber nicht fett */
  text-align: left;
  margin-bottom: 1rem;
}

h3, p {
  font-weight: 300;
  text-align: left;
  margin-bottom: 1rem;
}

.navbar {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.2rem;
  color: #080809;
}

.navbar-nav .nav-link {
  font-size: 1rem;
  color: #A2A6AB;
}
.navbar-nav .nav-link.active {
  color: #F28CA0 !important; /* Helles Pink */
  font-weight: 600; /* Optional: etwas stärker */
}

.navbar-nav .nav-link:hover {
  text-decoration: underline;
}
.nav-divider {
  color: #999; /* hellgrau */
  font-size: 1.2rem;
  padding: 0 0.5rem;
  line-height: 1;  /* sorgt für vertikale Ausrichtung */
  user-select: none;
}
.primary_header {
  background-color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
  color: #d3d3d3; /* hellgrau */
  transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: #d3d3d3; /* hellgrau */
}


.primary_header {
  background-color: #fff;
}

.site-title {
  font-family: Consolas, monospace;
  font-weight: 400;
  font-size: 3rem; /* ähnlich wie display-5 */
  margin-bottom: 1.5rem;
  text-align: center;
  color: #080809;
}


.lead {
  font-size: 1.2rem;
  font-weight: 300;
  color: #080809;
}
.mb-3 {
	text-align: center;
	color: #A2A6AB;
}

/* Hamburger Menü – Custom Look */
.navbar-toggler {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0.25rem 0.5rem;
  background: transparent;
}
/* Fokus- und Aktivzustand ebenfalls unterdrücken */
.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}
/* Grundstruktur der drei Linien */
.custom-toggler-icon {
  display: inline-block;
  position: relative;
  width: 30px;
  height: 22px;
}

.custom-toggler-icon div {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #d3d3d3; /* hellgrau */
  border-radius: 10px; /* macht es "weich", wie ein Faden */
  transition: all 0.4s ease-in-out;
}

.custom-toggler-icon div:nth-child(1) {
  top: 0;
}

.custom-toggler-icon div:nth-child(2) {
  top: 9px;
}

.custom-toggler-icon div:nth-child(3) {
  top: 18px;
}
.custom-toggler {
  border: none;
  background: none;
  padding: 0;
  outline: none;
  box-shadow: none;
}

.custom-wavy-icon {
  display: inline-block;
  transition: transform 0.3s ease-in-out;
}

.navbar-toggler:not(.collapsed) .custom-wavy-icon {
  transform: rotate(180deg);
}

/* Wenn geöffnet (nicht collapsed) */
.navbar-toggler:not(.collapsed) .custom-toggler-icon div:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.navbar-toggler:not(.collapsed) .custom-toggler-icon div:nth-child(2) {
  opacity: 0;
}

.navbar-toggler:not(.collapsed) .custom-toggler-icon div:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}

.navbar-toggler {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.btn-light {
  color: #080809;
  border: 2px solid #fff;
}

.btn-light:hover {
  background-color: #DD99DD; /* helles Pink wie deine Akzentfarbe */
  color: #fff;
  border-color: #DD99DD;
}
.btn-light {
  transition: all 0.3s ease;
}
.btn-light:focus,
.btn-light:active {
  background-color: #DD99DD;
  color: #fff;
  border-color: #DD99DD;
  box-shadow: none;
}
.hover-square {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1; /* quadratisch */
  overflow: hidden;
  border-radius: 0.5rem;
}

.hover-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.hover-square .overlay {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(173, 216, 230, 0.7); /* hellblau, transparent */
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center;
  transition: top 0.4s ease;
}

.hover-square:hover img {
  transform: scale(1.05);
}

.hover-square:hover .overlay {
  top: 0;
}
.pink {
  color: #D92F57;
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
