body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

p {
  max-width: 42rem;
}

.subtitle {
  max-width: 40rem;
}

main {
  padding: 2rem 1.5rem;
}

#angebote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.angebot {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.4rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.angebot:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}


.angebot h3 {
  margin-top: 0;
}

.anbietende {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: #555;
}

/* Ressourcenmodus Button */
#ressourcen-toggle {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  background: #6b8e23;
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  z-index: 1000;
}

/* Panel */
#ressourcen-panel {
  position: fixed;
  right: 1rem;
  bottom: 4rem;
  background: #fff;
  padding: 1rem;
  width: 280px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  z-index: 1000;
}

#ressourcen-panel ul {
  list-style: none;
  padding: 0;
}

#ressourcen-panel li {
  margin-bottom: 0.8rem;
  cursor: pointer;
}

.hidden {
  display: none;
}


#ressourcen-toggle {
  background: var(--accent);
}
	
.hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  padding: 5rem 2rem;
  background: linear-gradient(
    160deg,
    #2f4f4f 0%,
    #3b6f6f 100%
  );
  color: #fff;
}


.hero-right {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  border-radius: 16px;
}


.quick {
  background: #ffffff;
  color: #222;
  padding: 1rem;
  border-radius: 14px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}


.angebote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  background: var(--accent);
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.newsletter {
  margin-top: 3rem;
  padding: 2rem;
  background: #ece6c8;
}



