@font-face {
    font-family: 'Urbanist';
    src: url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Urbanist&display=swap');
}

.urbanist {
  font-family: Urbanist, sans-serif;
}

html, body {
    height: 100%;
    margin: 0; /* Remove default body margin */
    font-family: 'Urbanist', sans-serif;
}

.hide {
  opacity: 0;
  transition: all 300ms;
  filter: blur(5px);
  transform: translateX(-10%);
}

.hideup {
  opacity: 0;
  transition: 
  opacity 300ms ease,
  transform 300ms ease,
  filter 300ms ease;
  
  filter: blur(5px);
  transform: translateY(10%);
}

.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
  transform: translateY(0);
}

.delay:nth-child(2) {
  transition-delay: 100ms, 100ms, 100ms;
}

.delay:nth-child(3) {
  transition-delay: 200ms, 200ms, 200ms;
}

.delay:nth-child(4) {
  transition-delay: 300ms, 300ms, 300ms;
}

.delay:nth-child(5) {
  transition-delay: 400ms, 400ms, 400ms;
}

.delay:nth-child(6) {
  transition-delay: 500ms, 500ms, 500ms;
}

.delay:nth-child(7) {
  transition-delay: 600ms, 600ms, 600ms;
}

.delay:nth-child(8) {
  transition-delay: 700ms, 700ms, 700ms;
}

.glassmorph {
  /* From https://css.glass */
background: rgba(255, 255, 255, 0.2);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.3);
}

.boxshadow {
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.5);
}


.grad-light {
background: radial-gradient(#dbeafe 0%, #F9FAFB);
}

.grad {
  background: radial-gradient(#2b86c2, #0D5C91);
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

    .animate-fade-in-down {
      animation: fadeInDown 0.3s ease-out;
    }

    @keyframes fadeInDown {
      0% {
        opacity: 0;
        transform: translateY(-20px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }


.bubble {
    position: relative;
    background: #0D5C91;
    color: #FFFFFF;
    font-family: Arial;
    font-size: 0.8rem;
    text-align: center;
    width: 8rem;
    height: min-content;
    border-radius: 10px;
    padding: 5px;
}
.bubble:after {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    z-index: 1;
    border-style: solid;
    border-width: 0 20px 20px 0;
    border-color: transparent #0D5C91 transparent transparent;
    bottom: -20px;
    left: 50%;
    margin-left: -10px;
}


.shower {
  opacity: 0;
  animation: incOp 500ms ease-in-out;
  animation-delay: 4s;
  animation-fill-mode: forwards;
}

@keyframes incOp {
  to {
    opacity: 1.0;
  }
}

.shrinker {
  height: 14rem;
  animation: shrinkHeight 1s ease-out;
  animation-delay: 3s;
  animation-fill-mode: forwards;
}

@keyframes shrinkHeight {
  to {
    height: 8rem;            /* Final height */
  }
}

/* From Uiverse.io by adeladel522 */ 
.button {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: rgb(0 107 179);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
}

.icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.button:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.button:hover .icon {
  transform: translate(4px);
}


.button::before {
  content: "";
  position: absolute;
  width: 100px;
  animation: shine 1.5s ease-out infinite;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}
