/* ================= BASE ================= */
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(90deg, #E2F3FB 10%, #F4F5FF 100%) !important;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
}

/* ================= 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;
  color: #333;
  font-weight: 400;
  margin-top: 40px;
  text-decoration: none;
}

.nav-link i {
  color: #05847D;
  height: 22px;
  width: 22px;
  font-weight: bold;
}

.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 {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  color: #333;
}

/* ================= BUTTONS ================= */
.btn-signup,
.btn-outline-main,
.btn-main {
  border-radius: 30px;
  padding: 6px 22px;
  font-size: 16px;
  font-weight: 400;
  transition: 0.3s;
  margin-top: 40px;
}

.btn-signup {
  border: 1px solid #05847D;
  color: #05847D;
  font-size: 13px;
  padding: 8px 20px;
}

.btn-signup:hover {
  background-color: #05847D;
  color: #fff;
}

.btn-main {
  background: #05847D;
  color: #fff;
}

.btn-main:hover {
  background: #eef7f9;
  color: #05847D;
  border: 1px solid #05847D;
}

.btn-outline-main {
  border: 1px solid #05847D;
  color: #05847D;
}

.btn-outline-main:hover {
  background: #05847D;
  color: #fff;
}

/* ================= HERO ================= */
.hero {
  padding-left: 100px;
  margin-top: 100px;
}

.hero-title {
  font-family: "Inter", sans-serif;
  font-size: 96px;
  font-weight: 800;
  color: #05847D;
  letter-spacing: 3px;
}

.hero-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #05847D;
  letter-spacing: 1px;
}

.hero p {
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  max-width: 700px;
}

.hero-heading {
  display: flex;
  align-items: center;
}

.hero-text {
  margin-right: -40px;
}

.hero-rocket {
  margin-left: -20px;
}

.hero-rocket img {
  width: 240px;
  transform: rotate(-5deg);
}

.hero-illustration {
  max-width: 400px;
  height: 449px;
  margin-right: 10px;
}

/* ================= PROFILE ================= */
.profile-circle {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #05847E;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  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 {
  width: 32px;
  height: 32px;
  font-size: 14px;
  background: #05847D;
}

.mobile-profile .profile-name {
  font-size: 14px;
  font-weight: 500;
}

.login-text {
  color: #05847D;
  font-weight: 500;
  text-decoration: none;
}

/* ================= RESPONSIVE ================= */
/* Tablets (≤991px) */
@media (max-width: 991px) {
  .hero {
    padding-left: 40px;
    margin-top: 60px;
    text-align: center;
  }

  .hero p {
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-heading {
    flex-direction: column;
    text-align: center;
  }

  .hero-rocket {
    margin: 20px auto 0;
  }

  .hero-rocket img {
    width: 180px;
  }

  .hero-illustration {
    max-width: 320px;
    margin: 0 auto;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    background: rgba(5, 132, 125, 0.95);
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 9999;
  }

  .navbar-collapse.show {
    transform: translateX(0);
  }

  .close-menu {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    color: #fff;
    border: none;
    background: none;
    cursor: pointer;
  }

  body.menu-open .hero,
  body.menu-open main,
  body.menu-open footer {
    filter: blur(6px);
  }

  .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: #E2F3FB;
    color: red !important;
    font-weight: 600;
    font-size: 18px;
  }
}

/* Mobiles (≤576px) */
@media (max-width: 576px) {
  .hero {
    padding-left: 15px;
    margin-top: 40px;
    text-align: center;
  }

  .hero h1 {
    font-size: 48px;
    margin-left: -40px;
  }

  .hero h2 {
    font-size: 24px;
    margin-left: -40px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-illustration {
    display: none;
  }

  .logo-img {
    width: 120px;
    height: auto;
  }

  .navbar-toggler {
    border: none;
    padding: 2px 6px;
  }

  .navbar-toggler-icon {
    background-color: #05847D;
    width: 20px;
    height: 2px;
    position: relative;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    background: #05847D;
    left: 0;
  }

  .navbar-toggler-icon::before {
    top: -7px;
  }

  .navbar-toggler-icon::after {
    top: 7px;
  }

  /* Mobile Profile */
  .mobile-profile {
    z-index: 1050;
    margin-top: -25px;
    margin-right: 20px;
  }

  .mobile-profile .profile-circle {
    width: 32px;
    height: 32px;
    font-size: 14px;
    background: #05847D;
  }

  .mobile-profile .profile-name {
    font-size: 14px;
    font-weight: 500;
  }

  .login-text {
    color: #05847D;
    font-weight: 500;
    text-decoration: none;
    margin-top: 60px;
  }
}

/* Desktops ≥1024px */
@media (min-width: 1024px) {
  .hero {
    text-align: left;
  }
}
