/* =========================================================
   RAUMIDEE COOKIE-CONSENT-BANNER
   Passend zum Farbschema Schwarz / Beige / Weiß
   ========================================================= */

#ri-cookie-banner{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: #1a1a1a;
  color: #ffffff;
  padding: 24px;
  display: none; /* wird per JS eingeblendet, falls noch keine Entscheidung vorliegt */
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}

#ri-cookie-banner.ri-visible{
  display: block;
}

.ri-cookie-inner{
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.ri-cookie-text{
  flex: 1 1 420px;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 300;
}

.ri-cookie-text a{
  color: #e7ddc9;
  text-decoration: underline;
}

.ri-cookie-buttons{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ri-cookie-buttons button{
  border-radius: 2px;
  padding: 12px 22px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  border: 1px solid #ffffff;
}

#ri-cookie-accept{
  background: #ffffff;
  color: #1a1a1a;
}
#ri-cookie-accept:hover{
  background: #e7ddc9;
  border-color: #e7ddc9;
}

#ri-cookie-decline{
  background: transparent;
  color: #ffffff;
}
#ri-cookie-decline:hover{
  background: rgba(255,255,255,0.1);
}

/* Kleiner "Cookie-Einstellungen"-Link, den man z.B. in den Footer packen kann,
   damit Besucher ihre Auswahl jederzeit wieder öffnen/ändern können. */
.ri-cookie-settings-link{
  cursor: pointer;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  font: inherit;
}
