
/* angebote.css */

/* Allgemeine Karten-Optik */
.card {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.card-title,
.card-text {
  color: #39ff14;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  font-size: 1.1em;
  font-weight: bold;
}

.card-img-top {
  mix-blend-mode: screen;
  max-height: 200px;
  object-fit: contain;
}

/* Buttons */
.btn {
  font-weight: bold;
  border-radius: 4px;
}

.btn-secondary {
  background-color: #444;
  border: none;
}

.btn-primary {
  background-color: #007bff;
  border: none;
}

/* Collapse Animation */
.collapse {
  transition: height 0.6s ease;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.6s ease;
}

.collapse.show {
  display: block;
}


/* Footer */
.footer_section {
  background-color: rgba(0, 0, 0, 0.8);
  color: #ccc;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9rem;
}
