/* Navigation Bar */
.navbar {
background-color: #B90000;
}

.navbar-brand {
font-size: 1.8rem;
font-weight: bold;
}

.navbar-nav .nav-link {
color: #FFF;
font-size: 1.2rem;
font-weight: bold;
margin-left: 1.5rem;
margin-right: 1.5rem;
}

a:hover, a:active {
    color: black !important;
    text-decoration: none;
}

a:hover, a:active {
    color: black !important;
    text-decoration: none;
}

.btn {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.2s ease-out;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn:active {
  transform: scale(0.95);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateX(-100%);
  transition: all 0.4s ease-out;
}

.btn:hover::before {
  transform: translateX(0);
}

.btn:active::before {
  background-color: rgba(0, 0, 0, 0.2);
  transform: translateX(0);
}

/* Custom CSS */
.bg-red {
    background-color: #B90000 !important;
}

.bg-dark-red {
    background-color: #7C0000 !important;
}

.text-red {
    color: #B90000 !important;
}

.text-dark-red {
    color: #7C0000 !important;
}

.border-red {
    border-color: #B90000 !important;
}

.btn-red {
    background-color: #B90000 !important;
    border-color: #B90000 !important;
    color: #FFF !important;
    font-size: 1.4rem !important;
    font-weight: bold !important;
    letter-spacing: 0.1rem !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease-in-out !important;
}

.btn-red:hover {
    background-color: #7C0000 !important;
    border-color: #7C0000 !important;
}

.footer .text-muted a {
    color: #FFF !important;
}

/* Change scrollbar color and width */
::-webkit-scrollbar {
  width: 8px;
  background-color: #f5f5f5;
}

/* Change thumb color and shape */
::-webkit-scrollbar-thumb {
  background-color: #555;
  border-radius: 10px;
}

/* Change thumb on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: #333;
}

/* Loading animation */
.loading {
  display: inline-block;
  position: relative;
  width: 70px;
  height: 70px;
}

.loading div {
  position: absolute;
  top: 27px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ffffff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.loading div:nth-child(1) {
  left: 6px;
  animation: loading 0.6s infinite;
}

.loading div:nth-child(2) {
  left: 6px;
  animation: loading 0.6s infinite;
}

.loading div:nth-child(3) {
  left: 26px;
  animation: loading 0.6s infinite;
}

.loading div:nth-child(4) {
  left: 45px;
  animation: loading 0.6s infinite;
}

@keyframes loading {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Jumbotron */
.jumbotron {
background-image: url('img/teamspeakbanner.png');
background-size: contain;
background-position: center;
background-repeat: no-repeat;
text-align: center;
}

.jumbotron h1 {
font-size: 4rem;
font-weight: bold;
margin-top: 3rem;
}

.jumbotron .lead {
font-size: 1.8rem;
margin-top: 1.5rem;
}

.jumbotron .btn {
background-color: #FFF;
color: #B90000;
font-size: 1.4rem;
font-weight: bold;
margin-top: 2rem;
}

/* Main Content */
.container h2 {
font-size: 3rem;
font-weight: bold;
margin-top: 3rem;
}

.container p {
font-size: 1.4rem;
margin-top: 1.5rem;
}

.list-group-item a {
font-size: 1.4rem;
}

/* Footer */
.footer {
background-color: #000;
color: #FFF;
padding: 1rem;
margin-top: 3rem;
text-align: center;
}

.footer .container {
font-size: 1.2rem;
}

.footer .text-muted {
font-size: 1rem;
}

/* Media Queries */
@media (max-width: 576px) {
.navbar-brand {
font-size: 1.5rem;
}
.navbar-nav .nav-link {
    font-size: 1rem;
}

.jumbotron h1 {
    font-size: 3rem;
}

.jumbotron .lead {
    font-size: 1.4rem;
}

.jumbotron .btn {
    font-size: 1.2rem;
}

.container h2 {
    font-size: 2rem;
}

.container p {
    font-size: 1.2rem;
}

.list-group-item a {
    font-size: 1.2rem;
}

.footer .container {
    font-size: 1rem;
}

.footer .text-muted {
    font-size: 0.8rem;
}
}

@media (min-width: 576px) and (max-width: 767px) {
.jumbotron h1 {
font-size: 3.5rem;
}

.jumbotron .lead {
    font-size: 1.5rem;
}

.jumbotron .btn {
    font-size: 1.3rem;
}

@media (min-width: 768px) and (max-width: 991px) {
.jumbotron h1 {
font-size: 5rem;
}

.jumbotron .lead {
    font-size: 2rem;
}

.jumbotron .btn {
    font-size: 1.6rem;
}

.container h2 {
    font-size: 3.5rem;
}

.container p {
    font-size: 1.5rem;
}

.list-group-item a {
    font-size: 1.5rem;
}

.footer .container {
    font-size: 1.2rem;
}

.footer .text-muted {
    font-size: 1rem;
}
}

@media (min-width: 992px) and (max-width: 1199px) {
.jumbotron h1 {
font-size: 6rem;
}

.jumbotron .lead {
    font-size: 2.5rem;
}

.jumbotron .btn {
    font-size: 1.8rem;
}

.container h2 {
    font-size: 4rem;
}

.container p {
    font-size: 1.6rem;
}

.list-group-item a {
    font-size: 1.6rem;
}

.footer .container {
    font-size: 1.3rem;
}

.footer .text-muted {
    font-size: 1.1rem;
}

}

@media (min-width: 1200px) {
.jumbotron h1 {
font-size: 7rem;
}

.jumbotron .lead {
    font-size: 3rem;
}

.jumbotron .btn {
    font-size: 2rem;
}

.container h2 {
    font-size: 4.5rem;
}

.container p {
    font-size: 1.8rem;
}

.list-group-item a {
    font-size: 1.8rem;
}

.footer .container {
    font-size: 1.4rem;
}

.footer .text-muted {
    font-size: 1.2rem;
}

.container h2 {
    font-size: 3rem;
}

.container p {
    font-size: 1.3rem;
}

.list-group-item a {
    font-size: 1.3rem;
}

.footer .container {
    font-size: 1.1rem;
}

.footer .text-muted {
    font-size: 0.9rem;
}
}

@media (min-width: 768px) and (max-width: 991px) {
.jumbotron h1 {
font-size: 5rem;
}

.jumbotron .lead {
    font-size: 2rem;
}

.jumbotron .btn {
    font-size: 1.6rem;
}

.container h2 {
    font-size: 3.5rem;
}

.container p {
    font-size: 1.5rem;
}

.list-group-item a {
    font-size: 1.5rem;
}

.footer .container {
    font-size: 1.2rem;
}

.footer .text-muted {
    font-size: 1rem;
}
}

@media (min-width: 992px) and (max-width: 1199px) {
.jumbotron h1 {
font-size: 6rem;
}

.jumbotron .lead {
    font-size: 2.5rem;
}

.jumbotron .btn {
    font-size: 1.8rem;
}

.container h2 {
    font-size: 4rem;
}

.container p {
    font-size: 1.6rem;
}

.list-group-item a {
    font-size: 1.6rem;
}

.footer .container {
    font-size: 1.3rem;
}

.footer .text-muted {
    font-size: 1.1rem;
}
}

@media (min-width: 1200px) {
.jumbotron h1 {
font-size: 7rem;
}

.jumbotron .lead {
    font-size: 3rem;
}

.jumbotron .btn {
    font-size: 2rem;
}

.container h2 {
    font-size: 4.5rem;
}

.container p {
    font-size: 1.8rem;
}

.list-group-item a {
    font-size: 1.8rem;
}

.footer .container {
    font-size: 1.4rem;
}

.footer .text-muted {
    font-size: 1.2rem;
}
}

/* Custom CSS */
.bg-red {
background-color: #B90000 !important;
}

.bg-dark-red {
background-color: #7C0000 !important;
}

.text-red {
color: #B90000 !important;
}

.text-dark-red {
color: #7C0000 !important;
}

.border-red {
border-color: #B90000 !important;
}

.btn-red {
background-color: #B90000 !important;
border-color: #B90000 !important;
color: #FFF !important;
font-size: 1.4rem !important;
font-weight: bold !important;
letter-spacing: 0.1rem !important;
text-transform: uppercase !important;
transition: all 0.3s ease-in-out !important;
}

.btn-red:hover {
background-color: #7C0000 !important;
border-color: #7C0000 !important;
}
}