/* White Theme - Light Background */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Trans pride colors */
  --pride-pink: #F5A9B8;
  --pride-blue: #5BCEFA;
  --pride-white: #FFFFFF;

  /* Accent colors */
  --accent-pink: #ec4899;
  --accent-magenta: #a855f7;
  --accent-purple: #8B5CF6;

  /* Background - Light theme */
  --bg-dark: #ffffff;
  --bg-card: #f8fafc;
  --bg-hover: rgba(0, 0, 0, 0.03);

  /* Text colors - Dark for light background */
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #94a3b8;

  /* Border/overlay */
  --border-color: #e2e8f0;
  --overlay-bg: rgba(0, 0, 0, 0.5);
}

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--bg-dark);
}

.header-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-top {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
  backdrop-filter: blur(10px);
}

.logo-gradient {
  background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-magenta) 50%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-pill {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.nav-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-magenta));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}

.nav-pill:hover {
  color: var(--text-primary);
}

.nav-pill:hover::before {
  opacity: 0.1;
}

.nav-pill-text {
  position: relative;
  z-index: 1;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  color: var(--text-secondary);
  font-weight: 500;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, var(--accent-pink), var(--accent-magenta));
  border-radius: 0 2px 2px 0;
  transition: height 0.3s ease;
}

.mobile-nav-link:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
  padding-left: 1.25rem;
}

.mobile-nav-link:hover::before {
  height: 60%;
}

@keyframes pulse-subtle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.animate-pulse-subtle {
  animation: pulse-subtle 2s ease-in-out infinite;
}

/* Gradient text utility for other components */
.gradient-text {
  background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-magenta) 50%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Responsive sidebar adjustment */
@media (max-width: 1023px) {
  header.header-scrolled,
  header.header-top {
    left: 0 !important;
  }
}
