/* =========================
   GIRLIEPOP BRAND STYLES
   ========================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Montserrat:wght@400;500&family=Pacifico&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  /* Primary */
  --pink: #F4B6C2;
  --cream: #FFF6EC;

  /* Accent (change seasonally) */
  --accent: #9FB8A0; /* Sage Green */

  /* Metallic Accent (use sparingly) */
  --gold: #C9A24D;

  /* Text */
  --charcoal: #4A4A4A;
}

/* ---------- Global Reset ---------- */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.6;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--charcoal);
  margin-top: 0;
}

h1 {
  font-size: 2.75rem;
}

h2 {
  font-size: 2rem;
}

p {
  max-width: 65ch;
}

/* Accent script — USE SPARINGLY */
.script {
  font-family: 'Pacifico', cursive;
  color: var(--accent);
  font-size: 1.4rem;
}

/* ---------- Layout ---------- */
header {
  background-color: var(--pink);
  text-align: center;
  padding: 4rem 1.5rem;
}

header h1 {
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.1rem;
}

/* Decorative divider */
.divider {
  width: 60px;
  height: 4px;
  background-color: var(--gold);
  margin: 1.5rem auto;
  border-radius: 2px;
}

main {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

section {
  margin-bottom: 4rem;
}

/* ---------- Buttons & Links ---------- */
a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

.button {
  display: inline-block;
  background-color: var(--accent);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

/* ---------- Cards / Product Blocks ---------- */
.card {
  background-color: white;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ---------- Footer ---------- */
footer {
  background-color: var(--pink);
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.9rem;
}