:root {
      --dark-gray: #2E2E2E;
      --sage: #A8BDB0;
      --beige: #F5F1E6;
      --black: #1C1C1C;
      --light-gray: #CCCCCC;

    }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}


h1,h2,h3,h4 {
    font-family: 'Poppins', sans-serif;
}
p, li, a, button {
    font-family: 'Montserrat', sans-serif
}
li {
    list-style: none;
}
/* ---------------------------------------------------------------------------------------------- */
.ueberuns-section {
    scroll-snap-align: start;
    padding: 4rem 2rem;
    height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

.ueberuns-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.text-block {
  flex: 1 1 400px;
  color: var(--black);
}

.text-block h2 {
  font-size: 2rem;
  color: var(--sage);
  margin-bottom: 1rem;
}

.text-block p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.image-block {
  flex: 1 1 500px;
  text-align: center;
}

.image-block img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  max-height: 600px;
  object-fit: cover;
}
#ueber-uns, #philosophie {
    background-color: var(--dark-gray);
}

#ueber-uns .text-block, #philosophie .text-block {
    color: white;
}

#ueber-uns h2, #philosophie h2 {
    color: var(--sage);
}
/* ---------------------------------------------------------------------------------------------- */
/* PUNKTE */
.scroll-dots {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background-color: var(--sage);
  transform: scale(1.3);
}

/* Optional: Hover-Effekt */
.dot:hover {
  background: #555;
}
/* ---------------------------------------------------------------------------------------------- */
/* FADE ANIMATION */
.fade-left,
.fade-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s ease-out;
}

.fade-right {
  transform: translateX(50px);
}
.fade-left {
  transform: translateX(-50px);
}

.fade-in {
  opacity: 1;
  transform: translateX(0);
}

/* ---------------------------------------------------------------------------------------------- */
/* RESPONSIV */
@media (max-width: 768px) {
 .dot {
  display: none;
 }
 body {
  height: 100vh;
  scroll-snap-type:none;
  }
  .text-block h2 {
  margin-top: 15px;
  font-size: 25px;
  color: var(--sage);
  text-align: center;
  }

.text-block p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: center;
  }
}





