/*
Theme Name: Mom Sourcing Bootstrap
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: A Bootstrap 5 responsive WordPress theme designed for a product sourcing company with a family-friendly aesthetic.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mom-sourcing-bootstrap
Tags: bootstrap, responsive, ecommerce, blog
*/

:root{
  --brand-primary: #e85d8b; /* warm pink */
  --brand-secondary: #3a86ff; /* friendly blue */
  --brand-accent: #ffbe0b; /* cheerful accent */
  --brand-bg: #fff7fb; /* light blush */
  --brand-text: #1f2937;
  --brand-muted: #6b7280;
  --card-radius: 1.25rem;
}

body{
  color: var(--brand-text);
  background: var(--brand-bg);
}

a{
  color: var(--brand-secondary);
  text-decoration: none;
}
a:hover{ text-decoration: underline; }

.site-brand{
  font-weight: 800;
  letter-spacing: .2px;
}

.navbar{
  backdrop-filter: blur(8px);
}

.btn-brand{
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
  border-radius: 999px;
  padding: .6rem 1.1rem;
  font-weight: 700;
}
.btn-brand:hover{
  background: #d94d7a;
  border-color: #d94d7a;
  color: #fff;
}

.hero{
  background: linear-gradient(135deg, rgba(232,93,139,.15), rgba(58,134,255,.12));
  border-radius: var(--card-radius);
}

.card{
  border-radius: var(--card-radius);
  border: 0;
  box-shadow: 0 10px 25px rgba(31,41,55,.06);
}

.section-title{
  font-weight: 800;
}

.badge-soft{
  background: rgba(255,190,11,.22);
  color: #7a5200;
  font-weight: 700;
  border-radius: 999px;
  padding: .45rem .75rem;
}

.footer{
  background: #ffffff;
  border-top: 1px solid rgba(31,41,55,.08);
}

.wp-block-image img,
img{
  max-width: 100%;
  height: auto;
}