/* Responsive Design */
@media (min-width: 800px) {
  footer {
    position: fixed;
    bottom: 0;
    left: 0;
  }
}

@media (max-width: 1700px) {
  .angebotskarte {
    margin: 1%;
    width: 31%; /* Mehr Platz für kleinere Bildschirme */
  }
}

@media (max-width: 1300px) {
	.card{
		margin-left:2%;
		margin-right:2%;
	}
  .angebotskarte {
    margin: 1%;
    width: 48%; /* Noch mehr Platz */
  }
  #back-button{
	  display:none;
  }
}

@media (max-width: 800px) {
  .angebotskarte {
    margin: 1%;
    width: 99%; /* Karten nehmen 100% der Breite ein */
  }

  .container {
    flex-direction: column; /* Spalten werden untereinander angezeigt */
  }

  .rightcolumn {
    display:none;
  }
}

@media (max-width: 470px) {
  .mobileNav {
    overflow: hidden;
    background-color: #2E8B57; /* Dunkles Waldgrün */
    position: relative;
    display: block;
    width: 100%;
  }

  .mobileNav #myLinks {
    display: none;
  }

  .mobileNav a {
    color: #f2f2f2;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    display: block;
  }

  .mobileNav a.icon {
    background: black;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
  }

  .mobileNav a:hover {
    background-color: #ddd;
    color: black;
  }

  .active {
    background-color: #04AA6D;
    color: white;
  }

  .topnav {
    display: none;
  }

  /* Platzhalter für die Navigation */
  .nav-placeholder {
    display: none;
    height: 0;
  }

  .fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #2E8B57; /* Hintergrundfarbe beibehalten, wenn die Navigation fixiert ist */
  }

  /* Der Inhalt unterhalb der fixierten Navigation */
  .card {
    transition: padding-top 0.3s ease-in-out;
  }
}
