/* ============================================
   AxeSocials — Platform-Specific Stylesheet
   Extends: css/style.css (global)
   ============================================ */

/* ---- AXESOCIALS BRAND COLORS ---- */
:root {
  --soc-accent: #a855f7;       /* Purple */
  --soc-accent2: #7c3aed;
  --soc-glow: rgba(168,85,247,0.15);
  --soc-badge-bg: rgba(168,85,247,0.1);
  --soc-badge-border: rgba(168,85,247,0.3);
}

/* ---- HERO ACCENT ---- */
.platform-hero .hero-badge {
  background: var(--soc-badge-bg);
  border-color: var(--soc-badge-border);
  color: var(--soc-accent);
}

.platform-hero .badge-dot {
  background: var(--soc-accent);
  box-shadow: 0 0 8px var(--soc-accent);
}

/* ---- SOCIAL PLATFORM ICONS GRID ---- */
.social-platforms {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 32px 0;
}

.social-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.82rem;
  color: var(--muted2);
  transition: border-color 0.2s, color 0.2s;
}

.social-pill:hover {
  border-color: var(--soc-accent);
  color: var(--text);
}

.social-pill .icon {
  font-size: 1rem;
}

/* ---- CALENDAR / SCHEDULER PREVIEW ---- */
.scheduler-preview {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}

.scheduler-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.scheduler-header h4 {
  font-size: 0.88rem;
  font-weight: 600;
}

.scheduler-body {
  padding: 20px;
}

.post-queue-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.post-queue-item:last-child {
  border-bottom: none;
}

.post-time {
  font-family: 'Geist Mono', monospace;
  font-size: 0.75rem;
  color: var(--muted);
  min-width: 60px;
}

.post-platforms {
  display: flex;
  gap: 4px;
}

.post-platform-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

.post-text {
  flex: 1;
  font-size: 0.82rem;
  color: var(--muted2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.post-status {
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 100px;
}

.post-status.scheduled {
  background: rgba(168,85,247,0.1);
  color: var(--soc-accent);
  border: 1px solid rgba(168,85,247,0.3);
}

.post-status.published {
  background: rgba(34,197,94,0.1);
  color: #22c55e;
  border: 1px solid rgba(34,197,94,0.3);
}

/* ---- ANALYTICS CARDS ---- */
.analytics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.analytics-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.analytics-card .metric {
  font-family: 'Geist Mono', monospace;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--soc-accent);
}

.analytics-card .metric-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 4px;
}

.analytics-card .metric-change {
  font-size: 0.72rem;
  color: #22c55e;
  margin-top: 6px;
}

/* ---- CONNECT BUTTON ---- */
.btn-socials {
  background: var(--soc-accent);
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  display: inline-block;
  text-decoration: none;
}

.btn-socials:hover {
  background: var(--soc-accent2);
  transform: translateY(-1px);
}

/* ---- CONTENT CALENDAR ---- */
.calendar-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 16px 0;
  scrollbar-width: none;
}

.calendar-strip::-webkit-scrollbar {
  display: none;
}

.cal-day {
  min-width: 56px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s;
}

.cal-day.active {
  border-color: var(--soc-accent);
  background: var(--soc-badge-bg);
}

.cal-day .day-name {
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cal-day .day-num {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 4px;
}

.cal-day .day-posts {
  font-size: 0.65rem;
  color: var(--soc-accent);
  margin-top: 4px;
}
