/*
Theme Name: Song Gift Story
Theme URI:  https://songgiftstory.com
Description: Custom child theme of Hello Elementor for Song Gift Story. Defines the global brand design system — fonts, colour palette, and reusable components (buttons, cards) — so every page shares one consistent luxury look.
Author:     Song Gift Story
Version:    1.0.0
Template:   hello-elementor
Text Domain: songgiftstory
*/

/* ===================================================================
   SONG GIFT STORY — GLOBAL BRAND DESIGN SYSTEM
   Tokens mirror the existing pricing/home/birthday pages exactly.
   =================================================================== */

:root {
  /* ---- Surfaces ---- */
  --cream:        #FBF6EE;
  --cream-deep:   #F4EBDD;
  --paper:        #FFFDF9;

  /* ---- Navy (primary brand) ---- */
  --navy:         #1E2A4A;
  --navy-deep:    #161F38;
  --navy-soft:    #2A3760;

  /* ---- Gold (accent) ---- */
  --gold:         #BD9A52;
  --gold-deep:    #9C7C39;
  --gold-soft:    #E7D6AC;

  /* ---- Ink (text) ---- */
  --ink:          #232B3E;
  --ink-soft:     #5A5F70;

  /* ---- Misc accents ---- */
  --rose:         #C98F8B;
  --on-navy:      #EFE9DC;
  --line:         #EADFCD;

  /* ---- Elevation (soft, layered) ---- */
  --shadow-sm:    0 2px 10px rgba(40, 30, 12, 0.05);
  --shadow-md:    0 18px 44px -22px rgba(40, 30, 12, 0.30);
  --shadow-navy:  0 34px 70px -30px rgba(15, 20, 40, 0.55);

  /* ---- Radii ---- */
  --r-card:       26px;
  --r-sm:         14px;
  --r-pill:       999px;

  /* ---- Type ---- */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-ui:      "Mulish", system-ui, -apple-system, Segoe UI, sans-serif;
}

/* ===================================================================
   BASE STYLES
   =================================================================== */

body {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
}

a {
  color: var(--gold-deep);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--gold); }

/* ===================================================================
   REUSABLE COMPONENTS
   =================================================================== */

/* --- Shared button shell --- */
.btn-gold,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--r-pill);          /* fully rounded pill */
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s cubic-bezier(.2,.8,.2,1),
              box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-gold:active,
.btn-ghost:active { transform: translateY(1px); }

/* --- Gold pill (primary CTA): gold bg, navy text, darkens on hover --- */
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 16px 32px -16px rgba(189, 154, 82, 0.85);
}
.btn-gold:hover {
  background: var(--gold-deep);          /* darkens */
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 24px 46px -18px rgba(189, 154, 82, 0.95);
}

/* --- Outline / ghost button --- */
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
  background: var(--paper);
  transform: translateY(-2px);
}

/* --- Luxury card --- */
.lux-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-card);          /* 26px */
  padding: clamp(28px, 4vw, 44px);       /* generous */
  box-shadow: var(--shadow-sm), var(--shadow-md);  /* soft, layered */
}

/* ===================================================================
   SITE HEADER OFFSET - handled in ONE place now (assets/css/sgs-header.css)
   The old Elementor header (#76) and its margin-bottom:-80px overlap are
   gone (replaced by the child-theme fixed header). That fixed header is
   out of normal flow, so its height is reserved exactly once via
   body { padding-top: var(--sgs-header-h) } in sgs-header.css. The former
   per-wrapper compensation (.elementor-location-header + *, .sgs-home,
   .sgs-pricing, #sgs-root, #sgs-select) was removed to avoid double
   offsets. Do NOT re-add per-wrapper header padding here.
   =================================================================== */
