/* Increased for premium feel */
.app-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 70px;
  /* Glassmorphism */
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .app-header {
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
  }
}
.app-header__divider {
  flex: 1;
}
.app-header-space {
  position: relative;
  height: 70px;
}
@media (max-width: 1024px) {
  .app-header-space {
    height: 60px;
  }
}
.app-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 1400px;
  /* Wider container for modern look */
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 1024px) {
  .app-header-container {
    padding: 0 1rem;
  }
}
.app-header__left, .app-header__right, .app-header__center {
  display: flex;
  align-items: center;
}
.app-header__left {
  justify-content: flex-start;
}
.app-header__center {
  flex: 1;
  justify-content: center;
}
@media (max-width: 1024px) {
  .app-header__center {
    display: none;
    /* Hide nav on mobile in center, use menu drawer */
  }
}
.app-header__right {
  justify-content: flex-end;
  gap: 1rem;
}
/* Logo Styling */
.app-header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-text-main);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}
.app-header-logo > img, .app-header-logo > svg {
  height: 36px;
  width: auto;
  display: block;
}
@media (max-width: 1024px) {
  .app-header-logo > img, .app-header-logo > svg {
    height: 28px;
  }
}
/* Login/Signup Buttons */
.app-header__login {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 1.5rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.3);
  transition: all 0.2s ease;
}
.app-header__login:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.4);
  background: var(--color-primary-dark);
}
@media (max-width: 1024px) {
  .app-header__login {
    height: 32px;
    padding: 0 1rem;
    font-size: 0.8rem;
  }
}
.app-header__signup {
  margin-right: 1rem;
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}
.app-header__signup:hover {
  color: var(--color-primary);
}
@media (max-width: 1024px) {
  .app-header__signup {
    display: none;
  }
}
/* Header Icons */
.app-header-item {
  color: var(--color-text-muted);
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.2s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-header-item:hover {
  color: var(--color-primary);
  background: rgba(99, 102, 241, 0.1);
}
.app-header-item ion-icon {
  font-size: 1.5rem;
}
/*# sourceMappingURL=db2497f03b48ab2cbebfcffbe1c3ace799d60d39.header.scss.map */
