/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(11, 21, 37, 0.95);
  color: var(--secondary);
  font-size: 0.9rem;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 -3px 10px rgba(180, 157, 79, 0.3);
  z-index: 1000;
  font-family: 'Figtree', sans-serif;
}

.cookie-consent p {
  margin: 0;
  flex: 1 1 60%;
}

.cookie-consent a {
  color: #D1C48A;
  text-decoration: underline;
}

.cookie-consent .buttons {
  flex: 1 1 35%;
  text-align: right;
}

.cookie-consent .btn {
  background: none;
  border: 2px solid var(--secondary);
  color: var(--secondary);
  padding: 0.4rem 1rem;
  margin-left: 1rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cookie-consent .btn.accept:hover {
  background-color: var(--secondary);
  color: var(--primary);
}

.cookie-consent .btn.reject:hover {
  background-color: transparent;
  color: #8a7d3c;
  border-color: #8a7d3c;
}