@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

:root {
  --bgcolor: #ffffff;
  --bodycopyclr: #797979;
  --white: #ffffff;
  --black: #000;
  --accent: #fcbb1c;
  --primary: #1020cf;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

p {
  color: rgb(85, 85, 85);
}

a {
  color: black;
  text-decoration: none;
  transition: all 300ms ease;
}

a:hover {
  color: grey;
  text-decoration: underline;
  text-underline-offset: 1rem;
  text-decoration-color: rgb(181, 181, 181);
}

.btn {
  font-weight: 600;
  transition: all 300ms ease;
  padding: 1rem;
  width: 8rem;
  border-radius: 2rem;
  border: rgb(53, 53, 53) 0.1rem solid;
  background: none;
  color: black;
  cursor: pointer;
}

.btn:hover {
  background: rgb(53, 53, 53);
  color: var(--white);
  border-color: rgb(255, 255, 255) 0.1rem solid;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1002;
  box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

.left-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo1 {
  font-size: 1.4em;
  font-weight: bold;
  color: black;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  font-weight: bold;
  font-size: 1.2em;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 1003;
}

.hamburger div {
  height: 4px;
  background: black;
  border-radius: 2px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-popup {
  background: white;
  width: 300px;
  max-width: 90%;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  gap: 25px;
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.overlay.active .menu-popup {
  transform: scale(1);
  opacity: 1;
}

.menu-popup a {
  font-size: 1.4em;
  text-align: center;
  font-weight: bold;
  color: black;
}

#profile {
  display: flex;
  justify-content: center;
  gap: 1rem;
  height: 10vh;
  margin: 0 10rem;
  padding-top: 4vh;
}

.section__pic-container {
  height: 400px;
  width: 400px;
  margin: auto 0;
  display: flex;
}

.section__text {
  align-self: center;
  text-align: center;
}

.section__text__p1 {
  text-align: center;
  font-weight: 600;
}

.section__text__p2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.title {
  font-size: 3rem;
  text-align: center;
}

#Über-uns {
  position: relative;
  margin: 0 10rem;
  padding-top: 4vh;
}

.Über-uns-details-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.Über-uns-containers {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.location-card {
  border: 2px solid #ddd;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  width: 300px;
  margin: 40px auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  position: relative;
  cursor: pointer;
}

.icon-wrapper {
  position: relative;
  display: inline-block;
}

.location-icon {
  width: 70px;
  height: auto;
  margin-bottom: 10px;
  cursor: pointer;
}

.icon-hover-overlay {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  color: white;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  margin-top: -50px;
}

.icon-wrapper:hover .icon-hover-overlay {
  opacity: 1;
}

.location-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}

.location-address {
  font-size: 16px;
  color: #666;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.popup-content {
  background: white;
  border-radius: 12px;
  width: 95%;
  max-width: 1000px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.map-frame {
  width: 100%;
  height: 70vh;
  border: none;
  border-radius: 10px;
  margin-bottom: 20px;
}

.popup-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.popup-buttons button,
.popup-buttons a {
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  background: #333;
  color: white;
  cursor: pointer;
  text-decoration: none;
  flex: 1;
}

.popup-buttons button:hover,
.popup-buttons a:hover {
  background: #555;
}

.text-container {
  text-align: center;
}

.footer {
  background-color: #f2f2f2;
  color: #333;
  padding: 30px 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 60px;
}

.footer-columns {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  text-align: left;
}

.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-column a {
  color: #333;
  text-decoration: underline;
}

.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 20px;
  color: #777;
}


/*Pfoten spuren-------------------------------------------------*/
.paw-track-container {
  position: absolute;
  top: 300px;        /* vertikale Position frei anpassbar */
  left: 0;          /* Bild klebt am linken Rand */
  width: 30vw;      /* 30% der Viewport-Breite */
  height: auto;     /* Höhe ergibt sich automatisch aus dem Bildverhältnis */
  pointer-events: none;
  z-index: -1;
  user-select: none;
  overflow: hidden;
}

.paw-track {
  width: 100%;      /* Füllt den Container */
  height: auto;
  display: block;
  object-fit: contain;
}

.paw-track-container2 {
  position: absolute;
  top: 700px;        /* vertikale Position frei anpassbar */
  right: 0;          /* Bild klebt am linken Rand */
  width: 30vw;      /* 30% der Viewport-Breite */
  height: auto;     /* Höhe ergibt sich automatisch aus dem Bildverhältnis */
  pointer-events: none;
  z-index: -1;
  user-select: none;
  overflow: hidden;
}





