/* static/css/style.css */
body {
  background-color: #f8f9fa; /* Off-white background */
}

.navbar:not(.navbar-archive) {
  background-color: #000 !important;
}

/* Force the toggler (hamburger button) to be orange */
.navbar-toggler {
  background-color: #f08c00 !important;
  border-color: #f08c00 !important;
}

/* If you want to remove the default “hamburger” lines background image: */
.navbar-toggler-icon {
  background-image: none !important;
  /* Instead, you could add your own lines/icons if desired. */
}

.navbar:not(.navbar-archive) .navbar-brand,
.navbar:not(.navbar-archive) .nav-link {
  color: #fff !important;
}

.btn-primary {
  background-color: #f08c00;
  border-color: #fed319;
}

.btn-secondary {
  background-color: #f08c00;
  border-color: #f08c00;
}

/* From Uiverse.io by javierBarroso */
.card-custom {
  width: 195px;
  height: 270px;
  background: #f8f9fa;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 3px 1px #00000088;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.card-custom .content-custom {
  border-radius: 10px;
  background: #f8f9fa;
  width: 186px;
  height: 250px;
  z-index: 1;
  padding: 20px;
  color: #6e6e73;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.content-custom::before {
  opacity: 0;
  transition: opacity 300ms;
  content: " ";
  display: block;
  background: #fff5;
  width: 50px;
  height: 50px;
  position: absolute;
  filter: blur(50px);
}

.card-custom:hover .content-custom::before {
  opacity: 1;
  height: 280px;
  width: 280px;
  transition: height 300ms, width 300ms;
}

.card-custom::before {
  opacity: 1;
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 300px;
  transform: rotate(0deg) translateY(50%);
  background: linear-gradient(90deg, #f08c00, transparent);
  transition: opacity 2000ms;
  animation: rotation_9018 3000ms infinite linear;
  animation-play-state: paused;
}
.card-custom::after {
  opacity: 1;
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 300px;
  transform: rotate(0deg) translateY(-50%);
  background: linear-gradient(90deg, transparent, #79bae6);
  transition: opacity 2000ms;
  animation: rotation_9019 3000ms infinite linear;
  animation-play-state: paused;
}

.card-custom:hover::before {
  opacity: 1;
  animation-play-state: running;
}
.card-custom:hover::after {
  opacity: 1;
  animation-play-state: running;
}

.card-custom:hover .glass {
  opacity: 0;
}

.glass {
  position: absolute;
  content: "";
  display: block;
  width: 240px;
  height: 280px;
  background: #17171733;
  backdrop-filter: blur(50px);
  z-index: 1;
  transition-duration: 0.5s;
}

@keyframes rotation_9018 {
  0% {
    transform: rotate(0deg) translateY(50%);
  }

  100% {
    transform: rotate(360deg) translateY(50%);
  }
}
@keyframes rotation_9019 {
  0% {
    transform: rotate(0deg) translateY(-50%);
  }

  100% {
    transform: rotate(360deg) translateY(-50%);
  }
}

.contact-box {
  display: inline-block;
  padding: 12px 24px;
  background-color: #ec8316; /* accent color */
  color: #fff !important;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  box-shadow: 0px 0px 3px 1px #00000088;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-box:hover {
  background-color: #ff9a3d; /* a lighter accent, for example */
  transform: scale(1.05);
}
