/* ============================================
   SHARESHINE TOY AUSTRALIA — GLOBAL DESIGN SYSTEM v2
   Warm Professional B2B — "Trusted & Approachable"
   Playfair Display + DM Sans
   ============================================ */

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ---- CSS VARIABLES ---- */
:root {
  /* Core Palette */
  --cream:     #fff8f0;
  --warm:      #fdf0e0;
  --warm2:     #f8e4c8;
  --warm3:     #f0d8b0;
  --border:    #e8d4b8;
  --border2:   #dfc9a8;

  /* Gold / Amber */
  --gold:      #d4882a;
  --gold2:     #e89830;
  --gold3:     #f0a93c;
  --gold-lt:   #fdf0d8;
  --gold-pill: rgba(212,136,42,0.12);

  /* Navy (used sparingly for contrast) */
  --navy:      #1e2d5a;
  --navy2:     #162348;

  /* Text */
  --text:      #3d2e1e;
  --text2:     #5a4a38;
  --text3:     #7a6858;
  --text-inv:  rgba(255,255,255,0.92);

  /* Semantic */
  --success:   #d8f2ec;
  --success-t: #0F6E56;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(180,100,20,0.08);
  --shadow-md: 0 4px 24px rgba(180,100,20,0.12);
  --shadow-lg: 0 8px 48px rgba(180,100,20,0.16);

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-pill: 100px;
}

/* ---- BASE ---- */
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.2rem; }
p  { color: var(--text2); line-height: 1.8; }
a  { color: var(--gold); text-decoration: none; }

/* ---- NAVIGATION ---- */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.5rem;
  height: 80px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--warm) 100%);
  border-bottom: 2px solid var(--warm2);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}
.nav-logo img { height: 78px; width: auto; display: block; }
.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: var(--text2);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-cta {
  background: var(--gold3);
  color: #fff;
  padding: .55rem 1.4rem;
  border-radius: var(--r-pill);
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 14px rgba(212,136,42,0.35);
  transition: background .2s, transform .15s;
  letter-spacing: .02em;
}
.nav-cta:hover { background: var(--gold); transform: translateY(-1px); }

/* ---- HERO (with image) ---- */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(255,248,240,0.96) 0%,
    rgba(253,240,224,0.90) 40%,
    rgba(248,228,200,0.55) 70%,
    rgba(248,228,200,0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 4rem 2.5rem 4rem 3.5rem;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(212,136,42,0.14);
  color: var(--gold);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .32rem 1rem;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(212,136,42,0.28);
  margin-bottom: 1.1rem;
}
.hero h1 { color: var(--text); margin-bottom: .8rem; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub { color: var(--text2); font-size: 1rem; line-height: 1.75; margin-bottom: 1.8rem; max-width: 520px; }
.hero-btns { display: flex; gap: .8rem; flex-wrap: wrap; }

/* ---- BUTTONS ---- */
.btn-primary {
  background: var(--navy);
  color: #fff;
  padding: .65rem 1.6rem;
  border-radius: var(--r-pill);
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 16px rgba(30,45,90,0.25);
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--navy2); transform: translateY(-1px); }
.btn-secondary {
  background: rgba(255,255,255,0.75);
  color: var(--text);
  padding: .65rem 1.6rem;
  border-radius: var(--r-pill);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  border: 2px solid var(--border);
  transition: all .2s;
  backdrop-filter: blur(4px);
}
.btn-secondary:hover { background: #fff; border-color: var(--gold3); color: var(--gold); }
.btn-gold {
  background: var(--gold3);
  color: #fff;
  padding: .65rem 1.8rem;
  border-radius: var(--r-pill);
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(212,136,42,0.4);
  transition: background .2s, transform .15s;
}
.btn-gold:hover { background: var(--gold); transform: translateY(-1px); }
.btn-outline-light {
  background: rgba(255,255,255,0.18);
  color: #fff;
  padding: .65rem 1.8rem;
  border-radius: var(--r-pill);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.38);
  transition: all .2s;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.28); }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--warm2);
  border-top: 2px solid var(--warm3);
  border-bottom: 2px solid var(--warm3);
  padding: .85rem 3rem;
  display: flex;
  gap: 1.6rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .73rem;
  font-weight: 600;
  color: var(--text2);
  white-space: nowrap;
}
.trust-icon {
  width: 18px; height: 18px;
  background: var(--gold3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .55rem; color: #fff; font-weight: 800;
  flex-shrink: 0;
}
.trust-sep { color: var(--border2); font-size: .8rem; }

/* ---- SECTIONS ---- */
.section { padding: 4rem 3rem; }
.section-white { background: #fff; }
.section-warm  { background: var(--warm); }
.section-warm2 { background: var(--warm2); }
.section-border { border-top: 1.5px solid var(--border); }

.section-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
  display: block;
}
.section-title { margin-bottom: .6rem; }
.section-sub { color: var(--text2); font-size: .95rem; max-width: 600px; }

/* ---- CARDS ---- */
.card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, var(--gold2) 0%, var(--gold) 50%, #c07020 100%);
  padding: 4.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  left: -60px; bottom: -60px;
  width: 240px; height: 240px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-section h2 { color: #fff; position: relative; z-index: 1; margin-bottom: .7rem; }
.cta-section p  { color: rgba(255,255,255,0.85); position: relative; z-index: 1; margin-bottom: 1.8rem; font-size: .98rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-contact { margin-top: 1.2rem; color: rgba(255,255,255,0.75); font-size: .82rem; position: relative; z-index: 1; }
.cta-contact strong { color: #fff; }

/* ---- FOOTER ---- */
footer {
  background: linear-gradient(135deg, var(--warm2) 0%, var(--warm3) 100%);
  border-top: 2px solid var(--border);
  padding: 3rem 3rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand .logo-wrap { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.footer-brand img { height: 60px; }
.footer-brand p { font-size: .82rem; color: var(--text2); line-height: 1.65; }
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { font-size: .82rem; color: var(--text2); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1.5px solid var(--border);
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .8rem;
}
.footer-copy { font-size: .76rem; color: var(--text3); }
.footer-certs { display: flex; gap: .5rem; flex-wrap: wrap; }
.cert-pill {
  background: rgba(212,136,42,0.12);
  color: var(--gold);
  border: 1px solid rgba(212,136,42,0.25);
  border-radius: var(--r-pill);
  padding: .22rem .7rem;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .04em;
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
  background: var(--warm);
  border-bottom: 1px solid var(--border);
  padding: .6rem 3.5rem;
  font-size: .75rem;
  color: var(--text3);
}
.breadcrumb a { color: var(--text3); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 .4rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  nav { padding: .8rem 1.5rem; }
  .nav-links { display: none; }
  .hero-content { padding: 3rem 1.5rem; }
  .section { padding: 3rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar { padding: .8rem 1.5rem; gap: .8rem; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 3rem 1.5rem; }
  .hero { min-height: 360px; }
}
