/* Grundlayout */
.roboto-mono {
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

.roboto-condensed {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

* {
  font-family: 'Roboto Mono';
  color: #000;
  overflow: hidden;
}

body {
  margin: 1%; 
  background-color: #e0dfd5;
}

.layout {
  display: flex;
  border: 1px solid #000;
  background-color: #fff;
  height: 95vh;
}

.content {
  flex: 3;
  border-right: 1px solid #000;
  overflow-y: auto;
  height: 95vh;
}

.sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}

.logo {
  font-weight: bold;
  font-size: 2.5rem;
  text-align: center;
  margin: 2vh auto;
  font-family: Roboto Condensed;
}

.strong {
  font-family: Roboto Condensed;
}

.nav ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.nav li {
  margin: 1rem 0;
}

.nav a {
  text-decoration: none;
  color: black;
  position: relative;
}

.nav a.active::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 50%;
  width: 6px;
  height: 6px;
  background: orange;
  border-radius: 50%;
  transform: translateY(-50%);
}

.section {
  margin-bottom: 4rem;
}

.section h1 {
  font-family: Roboto Condensed;
  padding-left: 2rem;
  font-size: 2.5rem;
}

.h1 {
  padding: 2rem 0 0 0;
  font-size: 2.5rem;
  border-top: 1px solid black;
}

.study-list,
.client-list {
  padding: 2rem;
  list-style: none;
  font-size: 1.5rem;
}

.about {
  margin-top: 4rem;
  padding-left: 2rem;
  display: flex;
  flex-direction: row;
}

.image {
  aspect-ratio: 1 / 1;
  width: 30%;         /* oder z. B. 300px */
  overflow: hidden;
  margin-right: 6rem;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* beschneidet das Bild, hält aber das Quadrat ein */
}

.about .text {
  width: 50%;
}

.about h3 {
  margin-bottom: 0;
}

.about p {
  margin-top: 2rem;
}

.info {
  font-size: 0.85rem; 
  padding-left: 2rem;
}

.info a {
  color: black;
  text-decoration: underline;
  display: inline-block;
  margin-bottom: 4px;
}

.footer {
  margin-top: 1rem;
  font-size: 0.8rem;
}

.content a {
  text-decoration: none;
  color: black;
}

.content a:hover {
  background-color: #e0dfd5;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #fff;
  border: 1px solid black;
  padding: 1rem;
  font-size: 0.9rem;
  max-width: 250px;
}

/* ausgeblendete Elemente */

.fashion {
  display: none;
}

.blingbling {
  display: none;
}

.raumleben {
  display: none;
}

.content h5 {
  margin: 1rem 0;
}

.content h6 {
  font-style: italic;
  margin: 0.25rem 0;
}

.content p {
  font-size: 0.8rem;
  margin-bottom: 3rem;
}