.btn-submit {
  border: 1px solid #171717;
  border-radius: 5px;
  transition: transform 0.2s ease;
}

.btn-submit:hover {
  transform: scale(1.01);
  border: 1px solid #171717;
}

.form-select {
  cursor: pointer;
}
.form-control,
.form-select {
  border: 1px solid #171717 !important;
  background: transparent !important;
}

.form-control:focus,
.form-select:focus {
  outline: none !important;
  box-shadow: none !important;
  box-shadow: 0 0 30px rgba(23, 23, 23, 0.1) !important;
}


.card-container {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 40%,
    rgb(231, 231, 231) 100%
  );
}

@media (min-width: 768px) {
  .card-container {
    flex-direction: row !important;
  }

  .img-container {
    width: 30%;
    max-height: 100%;
  }

  .content-container {
    width: 80%;
  }

  .card-img {
    height: 100%;
    object-fit: cover;
    border-radius: calc(0.375rem - 1px) 0 0 calc(0.375rem - 1px);
  }
}

@media (max-width: 767.98px) {
  .img-container {
    width: 100%;
    height: 200px;
  }

  .content-container {
    width: 100%;
  }

  .card-img {
    height: 200px;
    object-fit: cover;
    /* top-left | top-right | bottom-right | bottom-left */
    border-radius: calc(0.375rem - 1px) calc(0.375rem - 1px) 0 0;
  }
}

body {
  overflow: hidden;
}

@media (max-width: 767.98px) {
  /* Existing styles for container margins */

  body {
    overflow: auto;
  }

  /* Reduce card padding */
  .card.card-container .card-body {
    margin: 1rem !important;
    padding: 0.75rem !important;
  }

  /* Reduce spacing between form elements */
  .card-container .mb-3 {
    margin-bottom: 0.5rem !important;
  }

  /* Make inputs smaller */
  .card-container input.form-control,
  .card-container select.form-select {
    padding: 0.375rem 0.5rem;
    font-size: 0.875rem;
  }

  /* Make textarea smaller */
  .card-container textarea.form-control {
    padding: 0.375rem 0.5rem;
    font-size: 0.875rem;
    rows: 3; /* Fewer rows on mobile */
  }

  /* Make heading smaller */
  .card-container h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  /* Make button smaller */
  .card-container .btn-submit {
    padding: 0.5rem 0 !important;
  }
}

.hero-content {
  min-width: 100vh;
}
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: start;
}
.overlay-text {
  color: #fff;
  text-align: center;
  padding: 20px;
  z-index: 2;
}
.hero-custom {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.contact-us-button {
  background: 0 0;
  color: #d9d9d9;
  padding: 5px 30px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  transition: transform 0.2s ease;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
}
.contact-us-button:hover {
  transform: scale(1.05);
  color: #cacaca;
  border-color: #cacaca;
}
html {
  scroll-behavior: smooth;
}
a {
  color: var(--primary-color);
}
a:hover {
  color: var(--primary-color);
}
::-webkit-scrollbar {
  width: 14px;
}
::-webkit-scrollbar-track {
  background: #fff;
}
::-webkit-scrollbar-thumb {
  background: #171717;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
@keyframes bounce {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}
.contact-text {
  color: var(--accent-color);
}
@keyframes bounce-vertical {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.selected {
  background: #555 !important;
}


.is-invalid {
  border: 1px solid red !important;
}

.error-msg {
  display: none;
}


.discord-button {
  background-color: transparent;
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.discord-icon:hover {
  background-color: transparent;
  transform: translateY(-2px);
}

.discord-icon {
  width: 24px;
  height: 24px;
}

.discord-icon path {
  fill: #4752c4;
}

.custom-tooltip {
  --bs-tooltip-bg: #4752c4;
  --bs-tooltip-color: white;
}