/* HEADER */
.thread-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: left;
  padding: 1rem;
}

.dropbtnMenu {
  background-color: #3b3b5c;
  width: fit-content;
  cursor: default;
  background: transparent;
    border: none;
}

.menu-group a:hover {
  text-shadow: 0 0 6px #fff;
}

.menu-group > :not(a) {
  color: #9898b5;

}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: #3b3b5c;
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 0.5rem;
  cursor: default;
  transition: background-color 0.3s ease;
  cursor: default;
}

.dropbtn:hover {
  background-color: #5a5a8a;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #353555;
    width: 200px;
    box-shadow: 0px 0rem 5rem 20px rgb(199 88 207 / 31%);
    z-index: 1;
    padding: 10px;
    border-radius: 10px;
}

.dropdown-content a {
  color: #fff;
  padding: 0.15rem;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  margin: auto;
}

.dropdown:hover .dropdown-content {
  display: block;
  border-radius: 10px;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#note {
  text-align: center;
  color:red;
  margin-left: 50%
}

/* COOKIE */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 248, 220, 0.95);
  color: #333;
  text-align: center;
  padding: 1em;
  font-family: 'Quicksand', sans-serif;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner button {
  background: #c459da;
  border: none;
  color: white;
  padding: 0.5em 1.2em;
  margin: auto;
  font-size: 1em;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.cookie-banner button:hover {
  background: #a13ab7;
}

/* Carousel */
.carousel-container {
  position: relative;
  max-width: 900px;
  margin: 2rem auto;
}

.carousel-slide {
  display: none;
  transition: opacity 0.5s ease;
}

.carousel-slide.active {
  display: block;
}

.carousel-nav {
  text-align: center;
  margin-top: 1rem;
  display: flex;
  margin: auto;
  justify-content: center;
  margin-top: 1rem;
}

.carousel-nav button {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  border-radius: 100px;
  cursor: pointer;
}


/* FOOTER */
footer {
    background: linear-gradient(to top, #5e3a1f 0%, #7b5e3d 40%, #3c6e2d 70%, #4caf50 100%);
    margin: auto;
    padding: 1.25rem;
    height: 100%;
    font-size: 1rem;
    border-top: solid #000000;
}

#ko-fi {
    color: gold;
}

.footer-section a {
 color: rgb(0 0 0)
}

.footer-section a:hover {
    text-shadow: 0 0 8px rgba(0, 255, 255, 1), 
               0 0 15px rgba(0, 255, 255, 1), 
               0 0 25px rgba(0, 255, 255, 1);
  color: white;

}

.footer-link { 
  text-decoration: none;
}

/* Media */
@media print {
  @page {
    margin: 1in;
  }

  body::after {
    display: none;
  }
}

@font-face {
  font-family: 'YourFont';
  src: url('/fonts/your-font.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}