/* =========================
   FONT GLOBAL
========================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100..900;1,100..900&display=swap');

* {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

/* =========================
   NAVBAR
========================= */
#navbar {
  background-color: #0059FF;
}

#logo {
  width: 60px;
}

/* =========================
   SIDEBAR
========================= */
.sidebar {
  position: sticky;
  top: 100px;
  padding: 20px;
}

.sidebar .btn {
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(90px);
  border: 1px solid #b6b6b6;
  border-radius: 5px;
}

.sidebar .btn:hover {
  color: white !important;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sidebar .btn:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

/* =========================
   SIDEBAR MOBILE
========================= */
.toggle-sidebar {
  display: none;
  position: fixed;
  top: 80px;
  left: 20px;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(90px);
  border: 1px solid #b6b6b6;
}

@media (max-width: 768px) {
  .toggle-sidebar {
    display: block;
  }

  .sidebar-wrapper {
    position: fixed;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    transition: left 0.3s ease;
    z-index: 999;
  }

  .sidebar-wrapper.active {
    left: 0;
  }

  .sidebar {
    position: relative;
    top: 0;
    width: 75%;
    height: 100vh;
    padding: 20px;
    overflow-y: auto;
  }
}

/* =========================
   CAROUSEL
========================= */
.crlImgContainer {
  height: 500px;
}

.crlImgContainer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* =========================
   DROPDOWN HOVER (NAVBAR)
========================= */
.navbar-nav > .dropdown:hover > .dropdown-menu {
  display: block !important;
}
