/* White Navbar Background */
.bg-nav {
  background-color: #f0f1f2; /* Solid white background */
  transition: background-color 0.3s ease; /* Smooth transition */
}

/* Navbar Links - Default State */
.navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.7); /* Faded black text */
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

/* Navbar Links - Hover State */
.navbar-nav .nav-link:hover {
  color: #000000; /* Full black on hover */
  text-decoration: none;
}

/* Navbar Links - Active Tab */
.navbar-nav .nav-link.active {
  /* color: #4dc209 !important; 
  border-bottom: 2px solid #4dc209; */
  color: #2484df !important;
  border-bottom: 2px solid #1f72c2;
  /* border-bottom: 2px solid #0dcaf0; */

  font-weight: 600; /* Slightly bolder for emphasis */
}
.dropdown-item {
  background-color: white;
  color: #000000;
}
.dropdown-item:hover {
  background-color: rgb(24, 24, 24) !important;
  color: #ffffff !important;
}
/* Social Media Buttons */
.btn1 {
  color: #2484df !important;
  /* color: #4dc209 !important; */
  background-color: transparent;
  border: none;
  transition: color 0.3s ease;
}

/* .btn:hover {
  color: #389601 !important; 
} */

/* Add section styling: this will stay fixed at the top of the screen */
.add {
  position: fixed; /* Fixed position to stay at the top */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background-color: #f8f9fa; /* Light background for the add section */
  /* padding: 10px 0; */
  text-align: center;
}

/* Ensure the navbar doesn't overlap with the add section */
.navbar-1 {
  position: relative;
  z-index: 1040;
}
@media only screen and (max-width: 600px) {
  .navbar-1 {
    position: relative;
    z-index: 1040;
  }
}

/* Sticky navbar styling */
.navbar.sticky {
  position: sticky; /* The navbar becomes sticky when you scroll */
  top: 0; /* It sticks to the top of the viewport */
  z-index: 1020; /* Ensure the navbar stays below the "add section" */
}

/* fontss --------------- */
.handlee-regular {
  font-family: "Handlee", serif;
  font-weight: 400;
  font-style: normal;
}

.nunito {
  font-family: "Nunito", serif;
  font-optical-sizing: auto;
}
.eb-garamond {
  font-family: "Poppins", Sans-serif;
  /* font-family: "EB Garamond", serif; */
  font-weight: 600;
}
.mulish-uniquifier {
  font-family: "Mulish", serif;

  font-weight: 200;
  font-style: normal;
}
.bellota-regular {
  font-family: "Bellota", serif;
  font-weight: 400;
  font-style: normal;
}

/* nav carousal */
.navTradingCarousal {
  width: 100%;
  height: 46px;
}

/* Adjust for smaller screens */
@media (max-width: 768px) {
  .navTradingCarousal {
    height: 75px; /* Slightly smaller height for tablets */
  }
}

/* Adjust for very small screens (e.g., phones) */
@media (max-width: 480px) {
  .navTradingCarousal {
    height: 75px; /* Further reduce height for phones */
  }
}

/* test  */
/* From Uiverse.io by bhaveshxrawat */
.card-custom {
  width: 80vw;
  min-height: 354px;
  height: fit-content;
  background: #07182e;
  position: relative;
  display: flex;
  flex-direction: column;
  place-content: center;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
}

.card-custom img,
button {
  z-index: 1;
}
.card-custom h2 {
  z-index: 1;
  color: white;
  font-size: 1.8rem;
}
.card-custom h1 {
  z-index: 1;
  color: white;
  font-size: 2rem;
}
.card-custom p {
  z-index: 1;
  color: white;
  font-size: 1.3rem;
  line-height: 1.4rem;
}

.card-custom::before {
  content: "";
  position: absolute;
  width: 200px;
  background-image: linear-gradient(
    180deg,
    rgb(0, 183, 255),
    rgb(255, 48, 255)
  );
  height: 420%;
  animation: rotBGimg 3s linear infinite;
  transition: all 0.2s linear;
}

@keyframes rotBGimg {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.card-custom::after {
  content: "";
  position: absolute;
  background: #07182e;
  inset: 5px;
  border-radius: 15px;
}
/* .card-custom:hover:before {
  background-image: linear-gradient(180deg, rgb(81, 255, 0), purple);
  animation: rotBGimg 3.5s linear infinite;
} */
