/* ==========================
   LOKALE GOOGLE FONT: POPPINS
   ========================== */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/poppins-v24-latin-300.woff2') format('woff2'),
       url('../fonts/poppins-v24-latin-300.woff') format('woff');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/poppins-v24-latin-400.woff2') format('woff2'),
       url('../fonts/poppins-v24-latin-400.woff') format('woff');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins-v24-latin-600.woff2') format('woff2'),
       url('../fonts/poppins-v24-latin-600.woff') format('woff');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/poppins-v24-latin-700.woff2') format('woff2'),
       url('../fonts/poppins-v24-latin-700.woff') format('woff');
}

/* ==========================
   BASIS-EINSTELLUNGEN
   ========================== */

/* cookie-banner.css */
.cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(300px, 90%, 800px);
  background: #ffffff;
  color: #1a1a1a;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  z-index: 9999;
  font-family: "Inter", system-ui, sans-serif;
  animation: fadeInUp 0.5s ease;
}

.cookie-content {
  flex: 1 1 60%;
  min-width: 250px;
}

.cookie-banner h4 {
  margin: 0 0 0.4rem 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #111;
}

.cookie-banner p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

.cookie-banner a {
  color: #ff6a00;
  font-weight: 600;
  text-decoration: none;
}

.cookie-banner a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.cookie-banner .btn {
  padding: 0.7rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.cookie-banner .btn.accept {
  background: #ff6a00;
  color: #fff;
  border: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* dezent und matt */
}

.cookie-banner .btn.accept:hover {
  background: #e65d00;
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}


.cookie-banner .btn.decline {
  background: #f2f2f2;
  color: #333;
}

.cookie-banner .btn.decline:hover {
  background: #e6e6e6;
}

.cookie-banner.hide {
  display: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

