
.navbar .nav-link {
  font-size: .85rem;
}

body {
  font-family: "Prompt", sans-serif;
  font-weight: 200;
  font-style: normal;
}


/* default */
/* .blur {
  box-shadow: inset 0 0 2px hsla(0, 0%, 100%, .8196078431);
  -webkit-backdrop-filter: saturate(200%) blur(30px);
  backdrop-filter: saturate(200%) blur(30px);
  background-color: hsla(0, 0%, 100%, .8) !important;
} */

.blur {
  box-shadow: inset 0 0 5px hsla(0, 0%, 100%, .8196078431) !important;
  -webkit-backdrop-filter: saturate(500%) blur(10px) !important;
  backdrop-filter: saturate(500%) blur(5px) !important;
  background-color: hsla(0, 0%, 100%, .5) !important;
}

/* .blur {
  box-shadow: inset 0 0 2px hsla(0, 0%, 100%, .0196078431) !important;
  -webkit-backdrop-filter: saturate(500%) blur(5px) !important;
  backdrop-filter: saturate(500%) blur(5px) !important;
  background-color: hsla(0,0,100%,0.8)!important;
} */

/* .blur {
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2),
              0 4px 30px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
} */


/* https://freefrontend.com/css-text-animations/page/8/ */
/* https://codepen.io/KaioRocha/pen/YoEVvZ */
.indigo.logo {
  /* width: 250px; */
  height: 30px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.indigo.logo .title {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  height: 30px;
}
.indigo.logo .title .block {
  width: 0%;
  height: inherit;
  background: #ffb510;
  position: absolute;
  /* Initial animation for the main block */
  animation: mainBlock 1.5s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
  display: flex;
}
.indigo.logo .title h1 {
  font-family: "Prompt", sans-serif;
  color: #27272a;
  font-size: 22px;
  letter-spacing: 1px;
  /* Initial animation for the main title text */
  -webkit-animation: mainFadeIn 2s forwards;
  -o-animation: mainFadeIn 2s forwards;
  animation: mainFadeIn 2s forwards;
  animation-delay: 1.1s;
  opacity: 0;
  display: flex;
  align-items: baseline;
  position: relative;
}
.indigo.logo .title h1 span {
  opacity: 0;
  width: 0px;
  height: 0px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #ffb510;
  /* Initial animation for the title span (dot) */
  -webkit-animation: load 0.6s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
  animation: popIn 0.8s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
  animation-delay: 2s;
  margin-left: 5px;
  margin-top: -10px;
  position: absolute;
  bottom: 12px;
  right: -16px;

  font-size: 20px;
  text-align: center;
  color: #0ea5e9;
}

.indigo.logo .role {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  height: 0px;
  margin-top: 0px;
  /* Start completely hidden initially */
  opacity: 0;
  visibility: hidden;
  /* Smooth transition for visibility on hover */
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Specific styling for the block within .role, which will animate *when* .role is visible */
.indigo.logo .role .block {
  width: 0%;
  height: 20px;
  background: #e91e63;
  position: absolute;
  /* No animation on initial load, only when .role is hovered/made visible */
  display: flex;
}

/* Specific styling for the paragraph within .role, which will animate *when* .role is visible */
.indigo.logo .role p {
  opacity: 0; /* Hidden by default, even if .role is visible (before its specific animation) */
  font-weight: 400;
  font-family: "Prompt", sans-serif;
  color: #27272a;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 11px 0 0 0;
  line-height: 0.9;
  text-align: center;
}

/* --- Hover Effect --- */
.indigo.logo:hover .role {
  opacity: 1;
  height: inherit;
  visibility: visible;
  /* Apply animation to role's children only when .role is hovered */
}

/* Start animations for children of .role when .indigo.logo is hovered */
.indigo.logo:hover .role .block {
  animation: secBlock 1.2s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
  animation-delay: 0s; /* Start immediately on hover */
}

.indigo.logo:hover .role p {
  animation: secFadeIn 1.2s forwards;
  animation-delay: 0.7s; /* Adjust delay if needed after secBlock */
}

/* --- Keyframe Animations (Unchanged) --- */
@keyframes mainBlock {
  0% {
    width: 0%;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}
@keyframes secBlock {
  0% {
    width: 0%;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}
@keyframes mainFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes popIn {
  0% {
    width: 0px;
    height: 0px;
    background: #e9d856;
    border: 0px solid #ddd;
    opacity: 0;
  }
  50% {
    width: 20px;
    height: 20px;
    background: #e9d856;
    opacity: 1;
    bottom: 45px;
  }
  65% {
    width: 15px;
    height: 15px;
    bottom: 0px;
    width: 15px;
  }
  80% {
    width: 25px;
    height: 25px;
    bottom: 20px;
  }
  100% {
    width: 20px;
    height: 20px;
    background: #e9d856;
    border: 0px solid #222;
    bottom: 5px;
    opacity: 1;
  }
}
@keyframes secFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.5;
  }
}


/* @keyframes top {
  0% {
    opacity: 0;
    bottom: -80px;
  }
  100% {
    opacity: 1;
    bottom: 0px;
  }
}
@keyframes icon {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.3) rotate(-2deg);
  }
  100% {
    opacity: 1;
    bottom: 0px;
  }
} */