/* Auto-generated by SalonSiteBuilder.build_theme() — do not hand-edit,
   regenerate via the Planner/Theme pipeline instead. */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --primary: #FADADD;
  --secondary: #FFD700;
  --accent: #FFFFFF;
  --radius: 8px;
  --font-heading: 'Playfair Display', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: #2a2a2a;
  background: #fffdfb;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  margin: 0 0 0.5em;
}

a { color: var(--primary); text-decoration: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.btn:hover { opacity: 0.85; }
.btn-accent { background: var(--accent); }

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
nav a { margin-left: 24px; color: #2a2a2a; font-weight: 500; }

section { padding: 64px 0; }
section.alt { background: var(--secondary); }

footer {
  padding: 40px 0;
  text-align: center;
  background: var(--secondary);
  color: #555;
  font-size: 0.9em;
}
