/* Songjelly Forge — custom theming */

/* Primary teal applied to default Forgejo (uses --primary-* tokens) */
:root {
  --primary: 196 41% 53%;
  --primary-dark-1: 196 41% 47%;
  --primary-dark-2: 196 41% 41%;
  --primary-dark-3: 196 41% 35%;
  --primary-dark-4: 196 41% 29%;
  --primary-light-1: 196 41% 60%;
  --primary-light-2: 196 41% 67%;
  --primary-light-3: 196 41% 75%;
  --primary-light-4: 196 41% 85%;
  --primary-light-5: 196 41% 92%;
  --primary-light-6: 196 41% 96%;
  --primary-alpha-10: hsla(196, 41%, 53%, 0.1);
  --primary-alpha-20: hsla(196, 41%, 53%, 0.2);
  --primary-alpha-30: hsla(196, 41%, 53%, 0.3);
  --primary-alpha-40: hsla(196, 41%, 53%, 0.4);
  --primary-alpha-50: hsla(196, 41%, 53%, 0.5);
  --primary-alpha-60: hsla(196, 41%, 53%, 0.6);
  --primary-alpha-70: hsla(196, 41%, 53%, 0.7);
  --primary-alpha-80: hsla(196, 41%, 53%, 0.8);
  --primary-alpha-90: hsla(196, 41%, 53%, 0.9);
}

/* Navbar brand logo size */
.full.height > #navbar .item.brand .logo,
#navbar .item.brand .logo {
  width: 28px;
  height: 28px;
}

/* === Songjelly landing (logged-out home) === */
body.page-home-songjelly {
  background: linear-gradient(180deg, hsl(196 41% 96%) 0%, hsl(0 0% 100%) 280px);
}

.songjelly-home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 4rem 1.5rem 3rem;
  text-align: center;
}

.songjelly-home .logo {
  width: 120px;
  height: auto;
}

.songjelly-home .display {
  font-family: 'Pacifico', cursive, system-ui;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: hsl(196, 41%, 35%);
  margin: 0;
  line-height: 1.1;
}

.songjelly-home .headline {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 560px;
  opacity: 0.75;
  margin: 0;
}

.songjelly-home .nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.songjelly-home .nav .ui.button.primary {
  background: hsl(196, 41%, 53%);
  color: white;
}
.songjelly-home .nav .ui.button.primary:hover {
  background: hsl(196, 41%, 45%);
}
