/* Allgemeine Reset-Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
}

/* Startseite: geteilte Ansicht */
.split-container {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

.side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  transition: filter 0.5s ease, flex 0.5s ease;
  position: relative;
  cursor: pointer;
  z-index: 1;
}

.side:hover {
  filter: blur(0);
  flex: 1.2;
  z-index: 2;
}

.side:not(:hover) {
  flex: 0.8;
}

.side h1 {
  position: absolute;
  color: white;
  font-size: 3rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  z-index: 3;
}

.left {
  background-image: url('nathy.jpg'); /* ersetzen mit tatsächlichem Bildpfad */
}

.right {
  background-image: url('babo.jpg'); /* ersetzen mit tatsächlichem Bildpfad */
}

/* Navigation */

nav {
  position: absolute;
  top: 20px;
  left: 49%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 15px;
}

nav a {
  background-color: rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

nav a:hover {
  background-color: rgba(255, 255, 255, 0.6);
  color: #333;
}


/* Projektübersicht allgemein */
.projektuebersicht {
  padding: 80px 20px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.projekt-link {
  display: block;
  background: rgba(255, 255, 255, 0.6);
  padding: 15px;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.projekt-link:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  background-color: rgba(255, 255, 255, 0.8);
}

.projektuebersicht h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: inherit;
}

.projektuebersicht ul {
  list-style: none;
}

.projektuebersicht li {
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.6);
  padding: 15px;
  border-radius: 8px;
  color: inherit;
}

/* Farbschemata je Seite */
body.nathy {
  background-color: #fbeff5; /* Pastellrosa */
  color: #3c2b36; /* dunkles Violettbraun */
}

body.babo {
  background-color: #e9f7f6; /* Pastellmint */
  color: #1f3333; /* tiefes Blaugrün */
}

/* Optional: Farbschema für Startseite */
body.startseite {
  background-color: #000; /* Fallback falls Bilder nicht laden */
}

