/* ═══════════════════════════════════════════════════════════════════
   SECRET SALONS — BRAND DESIGN SYSTEM
   Central stylesheet: colours, typography, buttons, utilities
   Loaded on every page via header.tpl
   ═══════════════════════════════════════════════════════════════════ */

/* ── 1. Brand Tokens ─────────────────────────────────────────────── */
:root {
  /* Primary palette */
  --ss-rose:        #c4727a;   /* primary CTA, accents */
  --ss-rose-dark:   #9d4a53;   /* hover state */
  --ss-rose-light:  #d49ca0;   /* subtle tints, borders */
  --ss-rose-bg:     #fdf5f6;   /* very light rose bg */

  /* Gold / premium */
  --ss-gold:        #b89040;   /* premium badge, upgrade */
  --ss-gold-light:  #d4ad6a;
  --ss-gold-bg:     #fdf8ee;

  /* Dark / plum */
  --ss-plum:        #3d1018;   /* deep dark, strong headers */
  --ss-plum-mid:    #6b2030;   /* mid-tone plum */
  --ss-dark:        #1a0d12;   /* footer bg */

  /* Neutrals */
  --ss-text:        #2d1a1f;   /* body text */
  --ss-text-muted:  #7a5a62;   /* secondary text */
  --ss-border:      #e8d8db;   /* subtle borders */
  --ss-bg-soft:     #faf6f7;   /* page section backgrounds */

  /* Typography */
  --ss-font:        'League Spartan', sans-serif;
  --ss-radius:      12px;
  --ss-radius-sm:   8px;
  --ss-radius-lg:   20px;

  /* Shadows */
  --ss-shadow-sm:   0 2px 8px rgba(45,26,31,.08);
  --ss-shadow:      0 4px 20px rgba(45,26,31,.12);
  --ss-shadow-lg:   0 8px 40px rgba(45,26,31,.16);
}

/* ── 2. Button System ─────────────────────────────────────────────── */

/* Base — shared properties */
.btn-ss {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--ss-font);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border-radius: var(--ss-radius-lg);
  padding: 10px 24px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-ss:hover { text-decoration: none; }

/* PRIMARY — Rose fill (main conversion actions: List Salon, Book, Submit) */
.btn-ss-primary {
  background: var(--ss-rose);
  color: #fff;
  border-color: var(--ss-rose);
}
.btn-ss-primary:hover {
  background: var(--ss-rose-dark);
  border-color: var(--ss-rose-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196,114,122,.4);
}

/* OUTLINE — Rose border (secondary nav actions: Log In, More Guides) */
.btn-ss-outline {
  background: transparent;
  color: var(--ss-rose);
  border-color: var(--ss-rose);
}
.btn-ss-outline:hover {
  background: var(--ss-rose);
  color: #fff;
}

/* GHOST — white text/border on dark backgrounds */
.btn-ss-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-ss-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
}

/* GOLD — premium upgrade, featured actions */
.btn-ss-gold {
  background: var(--ss-gold);
  color: #fff;
  border-color: var(--ss-gold);
}
.btn-ss-gold:hover {
  background: #9a7530;
  border-color: #9a7530;
  color: #fff;
}

/* MUTED — low-priority text links styled as button */
.btn-ss-muted {
  background: var(--ss-bg-soft);
  color: var(--ss-text-muted);
  border-color: var(--ss-border);
}
.btn-ss-muted:hover {
  background: var(--ss-border);
  color: var(--ss-text);
}

/* Size variants */
.btn-ss-sm { padding: 7px 16px; font-size: 0.84rem; }
.btn-ss-lg { padding: 14px 32px; font-size: 1rem; }

/* ── 3. Sidebar CTA Cards ─────────────────────────────────────────── */
.ss-cta-card {
  border-radius: var(--ss-radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  color: #fff;
}
.ss-cta-card--primary {
  background: linear-gradient(135deg, var(--ss-plum-mid) 0%, var(--ss-rose-dark) 100%);
}
.ss-cta-card--dark {
  background: linear-gradient(135deg, var(--ss-plum) 0%, var(--ss-plum-mid) 100%);
}
.ss-cta-card .cta-icon { font-size: 2rem; margin-bottom: .5rem; opacity: .9; }
.ss-cta-card h5 {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .5rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.ss-cta-card p {
  font-size: .85rem;
  opacity: .85;
  margin-bottom: 1.1rem;
  line-height: 1.5;
}

/* ── 4. Section Utility Classes ───────────────────────────────────── */
.ss-section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ss-rose);
  margin-bottom: 6px;
}
.ss-section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--ss-plum);
  line-height: 1.2;
}
.ss-section-subtitle {
  color: var(--ss-text-muted);
  font-size: 1rem;
  margin-top: 8px;
}

/* ── 5. Footer CSS ────────────────────────────────────────────────── */
.ss-footer {
  background: var(--ss-dark);
  color: rgba(255,255,255,0.75);
  padding-top: 48px;
  font-size: 0.9rem;
}
.footer-nl-strip {
  background: rgba(196,114,122,0.12);
  border: 1px solid rgba(196,114,122,0.25);
  border-radius: 16px;
  padding: 32px 36px;
  margin-bottom: 8px;
}
.footer-nl-title {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.footer-nl-sub { color: rgba(255,255,255,0.65); font-size: .88rem; margin-bottom: 12px; }
.footer-nl-perks { list-style: none; padding: 0; margin: 0; }
.footer-nl-perks li { font-size: .84rem; color: rgba(255,255,255,0.6); margin-bottom: 6px; }
.footer-nl-perks li i { color: var(--ss-rose-light); margin-right: 8px; }
.footer-nl-row { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-nl-row input {
  flex: 1; min-width: 140px; padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.15); border-radius: 10px;
  background: rgba(255,255,255,0.07); color: #fff; font-size: .9rem;
}
.footer-nl-row input::placeholder { color: rgba(255,255,255,0.35); }
.footer-nl-row input:focus { outline: none; border-color: var(--ss-rose-light); background: rgba(255,255,255,0.1); }
.footer-nl-row button {
  padding: 10px 22px; background: var(--ss-rose); color: #fff;
  border: none; border-radius: 10px; font-weight: 600; font-size: .9rem;
  cursor: pointer; white-space: nowrap; transition: background .2s;
}
.footer-nl-row button:hover { background: var(--ss-rose-dark); }
.footer-nl-disclaimer { font-size: .78rem; color: rgba(255,255,255,0.35); margin-top: 8px; margin-bottom: 0; }
.footer-nl-success {
  background: rgba(196,114,122,0.15); border: 1px solid var(--ss-rose-light);
  border-radius: 10px; padding: 16px 20px; color: rgba(255,255,255,.85);
}
.footer-divider { border-color: rgba(255,255,255,0.08); margin: 0; }
.footer-brand img { height: 32px; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer-brand-desc { color: rgba(255,255,255,0.5); font-size: .85rem; line-height: 1.6; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { color: rgba(255,255,255,0.45); font-size: 1.15rem; transition: color .2s; }
.footer-social a:hover { color: var(--ss-rose-light); }
.footer-col-title {
  color: #fff; font-size: .78rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: var(--ss-rose-light); }
.footer-bottom {
  padding: 20px 0; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
  color: rgba(255,255,255,0.3); font-size: .82rem;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ── 6. Responsive ────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .footer-nl-strip { padding: 24px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .btn-ss-lg { padding: 12px 24px; }
}
