/**
 * Base — CSS Custom Properties, Reset, Typography, Layout Primitives
 * @package HairEvolutionFactory
 */

/* ===== DESIGN TOKENS ===== */
:root {
  --background: #f7f5f0;
  --foreground: #2a2e3a;
  --card: #f2efe8;
  --card-foreground: #2a2e3a;
  --secondary: #e6e1d5;
  --muted-foreground: #6b6e75;
  --accent: #b89545;
  --accent-foreground: #1f2229;
  --border: #ddd8cb;
  --gold: #b89545;
  --gold-light: #d4b978;
  --cream: #f7f5f0;
  --charcoal: #2a2e3a;
  --charcoal-light: #3d4254;
  --destructive: #e53e3e;
  --radius: 0.5rem;
}

/* ===== RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
  padding: 0;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .section { padding: 8rem 0; }
}

.section-bg-alt {
  background: rgba(230,225,213,0.5);
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--foreground);
}

.section-title .accent {
  font-style: italic;
  color: var(--accent);
}

@media (min-width: 768px) {
  .section-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .section-title { font-size: 3rem; }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.mb-16 { margin-bottom: 4rem; }

/* ===== BUTTONS ===== */
.btn-primary {
  width: 100%;
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 0.875rem;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  opacity: 0.9;
}

/* ===== ICON HELPERS ===== */
.box-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(184,149,69,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.icon-svg {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
}

.icon-svg.lg { width: 22px; height: 22px; }
.icon-svg.xl { width: 48px; height: 48px; }

i.text-gold{
  color: var(--gold);
}

.logo{
  height: 60px;
  width: auto;
}
.logo img{
  height: 60px;
  width: auto;
}