@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");
* {
  margin: 0px;
  box-sizing: border-box;
}

.body {
  font-family: "Montserrat", sans-serif;
  background-color: #23272A;
  color: white;
}

.footerNav ul, .joinHelpSv hr, body p{
  margin: 0px;
}

.title{
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
}

body::-webkit-scrollbar {
  width: 10px;
  background-color: rgba(255, 255, 255, 0);
}

body::-webkit-scrollbar-thumb {
  background-color: #723B9E;
  border-radius: 5px;
}

header {
  background-color: #1C1E20;
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

header .nav-link, header .dropdown-item {
  color: white;
  --bs-nav-link-hover-color: #723B9E;
}

header .nav-link:hover {
  color: #723B9E;
}

header .navbar-nav .nav-link.active, header .navbar-nav .nav-link.show {
  color: #723B9E;
  font-weight: bold;
}

header .dropdown-menu {
  background-color: #1C1E20;
}

header .btnInviteSvHeader {
  background-color: #404EED;
  color: white;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 7px;
  font-size: 1.25rem;
}

.presence {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
}

.presence img {
  border-radius: 50%;
  width: 60px;
}

.presence h1, .presence h2{
  margin-left: 3px;
  font-size: 1.56rem;
  margin-bottom: 0px;
  font-weight: bold;
}

.presence p {
  background-color: #404EED;
  font-weight: bold;
  padding: 1px 7px;
  border-radius: 7px;
  margin-left: 10px;
  margin-bottom: 0px;
}

.espaceSection {
  background-image: url("../img/bgEspaceSection.png");
  margin-bottom: 20px;
}

.wave {
  max-width: 100%;
}

.espaceSection div {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 200px;
  flex-wrap: wrap;
}
.espaceSection h2 {
  max-width: 500px;
  font-size: 3rem;
  font-weight: bold;
}
.espaceSection .bitroRocket {
  width: 300px;
}
.espaceSection .bitroRocket:hover {
  animation: neon-animation 2s ease-in-out infinite;
}

@keyframes neon-animation {
  0% {
    filter: drop-shadow(0 0 0px #723B9E);
  }
  25% {
    filter: drop-shadow(0 0 20px #723B9E);
  }
  50% {
    filter: drop-shadow(0 0 0px #723B9E);
  }
  75% {
    filter: drop-shadow(0 0 20px #723B9E);
  }
  100% {
    filter: drop-shadow(0 0 0px #723B9E);
  }
}
.newFunctions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.newFunctions article {
  display: flex;
  align-items: center;
  max-width: 900px;
  gap: 50px;
  flex-wrap: wrap;
}
.newFunctions h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.newFunctions p {
  color: #838383;
  max-width: 500px;
  margin-bottom: 25px;
}
.newFunctions img {
  max-width: 300px;
  filter: drop-shadow(0 0px 10px rgb(0, 0, 0));
}
.newFunctions .inviteSv, .newFunctions .moreInfo {
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 7px;
  box-shadow: 0px 0px 5px black;
}
.newFunctions .inviteSv {
  background-color: #723B9E;
}
.newFunctions .moreInfo {
  background-color: #313639;
  margin-left: 20px;
}

.bestFunction {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 120px;
  margin-top: 100px;
}
.bestFunction .bfTitle {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}
.bestFunction article {
  max-width: 400px;
  height: 250px;
  background-color: #1C1E20;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0px 0px 10px #A1A1A1;
  margin-bottom: 50px;
  transition: box-shadow 300ms ease-in-out;
}
.bestFunction article:hover {
  box-shadow: 0px 0px 10px #723B9E;
}
.bestFunction h3 {
  margin-bottom: 0px;
}
.bestFunction i {
  font-size: 2rem;
}
.bestFunction p {
  color: #838383;
}

.joinHelpSv {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-height: 550px;
}
.joinHelpSv img {
  width: 100%;
}
.joinHelpSv div {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}
.joinHelpSv hr {
  color: #723B9E;
  width: 100%;
  border: 5px #723B9E solid;
  opacity: 100%;
  position: absolute;
  top: 12px;
  z-index: -1;
}
.joinHelpSv h3 {
  padding: 10px 100px;
  font-size: 2rem;
  font-weight: bold;
  background-color: #723B9E;
  border-radius: 10px;
  display: inline;
}
.joinHelpSv p {
  color: #838383;
  max-width: 600px;
  text-align: justify;
  margin-bottom: 30px;
}
.joinHelpSv a {
  background-color: #723B9E;
  color: white;
  text-decoration: none;
  padding: 10px 50px;
  border-radius: 10px;
}
.joinHelpSv .planetBitro {
  position: absolute;
  z-index: -1;
  left: 0px;
  width: 300px;
  top: 80px;
}

.button {
  transition: box-shadow 0.3s ease;
}

.button:hover {
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}

.prefooter {
  background-color: #723B9E;
  text-align: center;
  padding: 20px 0px;
}

.prefooterTitle {
  font-weight: bold;
  margin-bottom: 25px;
  font-size: 1.6rem;
}

.prefooter a {
  text-decoration: none;
  color: white;
  background-color: #551F81;
  padding: 5px 50px;
  border-radius: 20px;
  border: 2px solid white;
  font-size: 1.5rem;
}

footer {
  background-color: #1C1E20;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px 30px;
  align-items: center;
  justify-content: space-between;
}

footer a{
  text-decoration: none;
  color: white;
}

footer a:hover{
  text-decoration: underline;
}

.footerNav{
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footerNav div{
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.footerNav ul{
  padding-left: 17px;
  color: #838383;
  margin-bottom: 0px;
}

.footerNav ul a{
  color: #838383;
}

.footerTitle{
  font-weight: bold;
}

.signature a {
  color: #723B9E;
  font-weight: bold;
}

.searchForm{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.searchContainer{
  position: relative;
}

.searchForm input[type="text"]{
  width: 500px;
  height: 50px;
  background-color: #1C2023;
  border: none;
  border-radius: 5px;
  margin-bottom: 20px;
  padding: 0px 30px 0px 20px;
  box-shadow: 0px 0px 5px #313639;
  color: #838383;
}

.search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-100%);
  pointer-events: none; /* Prevent the icon from blocking input clicks */
  color: #aaa;
}

input[type="radio"] {
  display: none;
}

.categories{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.searchForm label {
  cursor: pointer;
  padding: 5px 10px;
  box-shadow: 0px 0px 5px #686868;
  border-radius: 5px;
  margin-bottom: 5px;
  display: inline-block;
  background-color: #171A1D;
  color: #838383;
}

.searchForm input[type="radio"]:checked + label {
  background-color: #723B9E;
  color: white;
  font-weight: bold;
}

#descCategory{
  align-self: flex-start;
  margin-top: 10px;
}

#descCategory, .pageDesc, .expandable-title p, .subtitleExpandable{
  color: #838383;
  max-width: 52ch;
}

.pageDesc{
  text-align: center;
}

h1{
  font-weight: bold;
}

.mainPHP{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.result{
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px 0px;
  align-items: center;
}

/* LOGICA DIV DESPLEGABLE */

.expandable {
  border-radius: 5px;
  cursor: pointer;
  background-color: #181B1E;
  display: flex;
  flex-direction: column;
  min-width: 600px;
}

.expandable-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
}

.expandable-title span{
  font-weight: bold;
  font-size: 1.25rem;
  color: white;
}

.expandable-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  display: flex;
  justify-content: space-between;
  padding: 0px 50px;
  transition: margin 100ms ease-in-out;
}

.expandableChangelog{
  flex-direction: column;
}

.expandable-content ul{
  list-style: none;
  padding: 0px;
}

.expandable-content li{
  max-width: 23ch;
}

.changelogList{
  flex-direction: column;
}

.changelogList li{
  max-width: 40ch;
}

.expandable.expanded .expandable-content {
  max-height: 500px;
}

.expand-icon {
width: 20px;
height: 20px;
transition: transform 0.3s ease;
}

.expanded .expand-icon {
transform: rotate(180deg);
}

.expanded .expandable-content{
  margin-top: 20px;
}

/* FIN LOGICA DIV DESPLEGABLE */

#docsSection{
  display: flex;
  padding: 0px 20px;
  margin-bottom: 50px;
  justify-content: center;
  gap: 100px;
}

.docsSidebar{
  background-color: #1C1E20;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0px 10px 10px black;
  width: 350px;
}

.docsSidebar p{
  color: #838383;
  font-weight: bold;
  margin-top: 20px;
}

.docsForm {
  display: flex;
  flex-direction: column;
}

.docsForm ul{
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.docsForm label {
  padding: 8px 0px 8px 20px;
  cursor: pointer;
  display: block;
  margin: 0;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 5px;
}

.docsForm input[type="radio"] {
  display: none;
}

.docsForm input[type="radio"]:checked + label {
  background-color: #313639;
  color: white;
  font-weight: bold;
}

.generateTicket{
  text-align: center;
}

.generateTicket p{
  font-weight: normal;
  margin-bottom: 10px;
}

.generateTicket a{
  text-decoration: none;
  background-color: #723B9E;
  color: white;
  border-radius: 5px;
  padding: 5px 10px;
  font-weight: bold;
}

.docsContent{
  max-width: 90ch;
  color: rgb(190, 190, 190);
}

.docsContent h2, .docsContent h3, .docsContent h4{
  font-weight: bold;
  color: whitesmoke;
}

.docsContent h3{
  margin: 15px 0px 0px 0px;
}

.docsContent p{
  margin-bottom: 20px;
}

.panelIndicators{
  text-align: center;
}

.panelIndicators h4{
  font-size: 1.25rem;
  color: white;
  font-weight: bold;
}

.panelIndicators div{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.panelIndicators p{
  padding: 12px 25px;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  margin: 0px;
}

.panelIndicators .pAdvice{
  background-color: #109445;
}

.panelIndicators .pWarn{
  background-color: #A78221;
}

.panelIndicators .pDanger{
  background-color: #960000;
}

.ticketForm{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
}

.ticketForm div{
  display: flex;
  gap: 50px;
  justify-content: center;
  flex-wrap: wrap;
}

.ticketForm button{
  background-color: #723B9E;
  color: white;
  border-radius: 5px;
  padding: 5px 40px;
  box-shadow: 0px 0px 5px black;
  border: none;
}

.ticketForm input, .ticketForm textarea{
  background-color: #DBDBDB;
  border-radius: 5px;
  border: none;
  padding-left: 4px;
}

.ticketForm textarea{
  resize: none;
  height: 200px;
}

.ticketForm .inputBlock{
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.inputBlock label{
  padding-left: 5px;
  color: #838383;
}

.ticketForm hr{
  width: 100%;
  border: 2px solid white;
}

.clarification{
  max-width: 50ch;
  color: #838383;
  font-size: .8rem;
}

.ticketForm #response{
  text-align: center;
}

.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 10px;
  border-radius: 5px;
  margin-top: 10px;
}

.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  padding: 10px;
  border-radius: 5px;
  margin-top: 10px;
}


.btnJoinSv{
  background-color: #551F81;
  text-decoration: none;
  color: white;
  padding: 5px 30px;
  font-weight: bold;
  border-radius: 5px;
  font-size: 1.3rem;
  margin-bottom: 30px;
  box-shadow: 0px 0px 5px black;
}

.bitroName{
  color: #723B9E;
  font-weight: bold;
}

@media (max-width: 800px) {
  .container-fluid .navbar-toggler, .navbar-toggler-icon {
    background-color: #551F81;
    color: white;
  }

  .espaceSection div{
    gap: 50px;
  }

  .espaceSection h2{
    padding-left: 15px;
    font-size: 2.3rem;
  }

  .newFunctions{
    padding-left: 10px;
  }

  .newFunctions article{
    gap: 0px;
    width: 30ch;
  }

  .newFunctions article img{
    order: 2;
  }

  .bestFunction{
    gap: 0px;
  }

  .bestFunction article{
    max-width: 330px;
  }

  .joinHelpSv{
    margin-top: 20px;
  }

  .joinHelpSv h3{
    background: none;
    text-align: center;
    padding: 0px;
    margin-bottom: 10px;
  }

  .joinHelpSv hr{
    display: none;
  }

  .joinHelpSv div{
    margin-bottom: 10px;
  }

  .joinHelpSv p{
    width: 32ch;
  }

  .joinHelpSv .planetBitro{
    width: 100px;
    bottom: 0px;
    top: 450px;
  }

  .expandable, .searchForm input[type="text"]{
    min-width: auto;
    max-width: 350px;
  }

  .pageDesc{
    max-width: 30ch;
  }

  .docsSidebar{
    display: none;
  }

  .docsContent{
    max-width: 30ch;
  }

  .ticketForm div{
    gap: 20px;
  }

  .ticketForm textarea{
    width: 300px;
  }

  .ticketForm .inputBlock{
    align-self: center;
  }

  .btnJoinSv{
    max-width: 300px;
    text-align: center;
  }

  .prefooterTitle{
    padding: 0px 10px;
  }

  .clarification{
    text-align: center;
  }
}/*# sourceMappingURL=styles.css.map */