/* ================= GLOBAL ================= */
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(90deg, #E2F3FB 10%, #F4F5FF 100%) !important;
  min-height: 100vh;
  margin: 0;
}

/* ================= LOGO ================= */
.logo-img {
  width: 171px;
  height: 121px;
}

/* ================= NAVBAR ================= */
.navbar {
  background: transparent;
}

.navbar-brand {
  font-weight: 700;
  color: #05847D !important;
}

.navbar-nav .nav-item {
  margin: 0 18px;
}

.nav-link {
  font-family: "Inter", sans-serif;
  position: relative;
  font-size: 16px;
  text-decoration: none;
  color: rgba(51, 51, 51, 1);
  font-weight: 400;
  margin-top: 40px;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -3px;
  background-color: #05847D;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* ================= AUTH BUTTONS ================= */
.auth-buttons {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.btn-signup {
  border: 1px solid #05847D;
  color: #05847D;
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 13px;
  transition: 0.3s;
  margin-top: 40px;
}

.btn-signup:hover {
  background-color: #05847D;
  color: #fff;
}

/* ================= SECTION TITLES & TEXT ================= */
.section-title {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: rgba(51, 51, 51, 1);
}

.section-text {
  font-family: sans-serif;
  text-align: justify;
  font-weight: 400;
  font-size: 16px;
  width: 700px;
  color: rgba(51, 51, 51, 1);
}

/* ================= PROFILE ================= */
.profile-circle {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #05847eab;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 11px;
  margin-top: 50px;
  margin-left: 100px;
}

.profile-name {
  font-size: 12px;
  font-weight: 500;
  margin-left: 100px;
}

/* ================= MOBILE PROFILE ================= */
.mobile-profile {
  z-index: 1050;
}
.mobile-profile .profile-circle {
  background: #05847D;
  color: white;
  font-weight: bold;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-profile .profile-name {
  font-size: 14px;
  font-weight: 500;
}

/* ================= MEDIA QUERIES ================= */

/* Tablets (≤ 991px) */
@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    background-color: rgba(5, 132, 125, 0.95);
    padding: 20px;
    transition: transform 0.3s ease-in-out;
    transform: translateX(-100%);
    z-index: 9999;
  }
  .navbar-collapse.show {
    transform: translateX(0);
  }
  .close-menu {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10000;
  }
  body.menu-open main,
  body.menu-open footer {
    filter: blur(6px);
    transition: filter 0.3s ease;
  }
  .navbar-nav .nav-link {
    color: #fff !important;
    font-size: 18px;
    margin: 10px 0;
  }
  .mobile-logout {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
  }
  .mobile-logout .btn {
    background-color: #E2F3FB;
    color: rgb(243, 10, 10) !important;
    font-weight: 600;
    font-size: 18px;
  }
}

/* Mobiles (≤ 576px) */
@media (max-width: 576px) {
  .logo-img {
    width: 120px;
    height: auto;
    margin-left: 10px;
  }
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .section-title {
    padding-bottom: 20px;
  }
  .section-text {
    font-family: 'Inter', sans-serif;
    width: 300px;
  }
  .navbar .navbar-toggler {
    margin-left: 10px;
    order: -1;
    border: none;
    padding: 2px 6px;
  }
  .navbar-toggler-icon {
    background-image: none;
    width: 20px;
    height: 2px;
    background-color: #05847D;
    display: block;
    position: relative;
  }
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #05847D;
    left: 0;
  }
  .navbar-toggler-icon::before {
    top: -7px;
  }
  .navbar-toggler-icon::after {
    top: 7px;
  }
  .profile-user {
    margin-top: -25px;
    margin-right: 20px;
  }
  #profile-circle {
    width: 32px;
    height: 32px;
    font-size: 14px;
    background-color: #05847D;
  }
  .login-text {
    color: #05847D;
    font-weight: 500;
    text-decoration: none;
    margin-top: 41px;
    margin-right: 18px !important;
  }
  body {
    overflow-x: hidden;
  }
}
