/* ------------------------------ */
/* NAVBAR RESPONSIVE */
/* ------------------------------ */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 1280px;
  margin: auto;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  width: 55px;
  height: auto;
}

.nav-title {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(90deg, #fff, #e9d5ff, #fbcfe8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* User pill */
.user-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

/* Top right logout button */
.logout-btn {
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

/* ------------------------------ */
/* HERO RESPONSIVE */
/* ------------------------------ */
.hero-title {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(90deg, #fff, #e9d5ff, #fbcfe8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  max-width: 670px;
  margin: auto;
  color: #9ca3af;
}

/* ------------------------------ */
/* RESPONSIVE BREAKPOINTS */
/* ------------------------------ */

/* Tablet */
@media (max-width: 992px) {
  .hero-title {
    font-size: 36px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .navbar {
    text-align: center;
    justify-content: center;
  }

  .nav-left {
    width: 100%;
    justify-content: center;
  }

  .nav-right {
    width: 100%;
    justify-content: center;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 16px;
  }
}

/* Very small phones */
@media (max-width: 480px) {
  .nav-title {
    font-size: 16px;
  }

  .nav-logo {
    width: 45px;
  }

  .hero-title {
    font-size: 26px;
  }
}
