/*
Theme Name: Graceful Minimalist
Theme URI: https://graceful.co.ke
Author: AI Studio
Description: A stark, beautiful, black and white minimalist theme designed for speed and clarity. Built for Graceful's bath cloth store and integrated blog under a single domain.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: graceful-minimalist
*/

@import "tailwindcss";

@theme {
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Space Grotesk", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

body {
    background-color: #ffffff;
    color: #111111;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom minimal scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #111111;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #333333;
}

/* Pristine Styles for Synchronized WordPress Posts */
.prose-clean-wp {
  font-family: var(--font-sans);
  font-size: 0.8125rem; /* text-xs/sm size to perfectly match the website aesthetic */
  line-height: 1.625;
  color: #222222;
}

.prose-clean-wp p {
  margin-bottom: 1.125rem;
  line-height: 1.625;
}

.prose-clean-wp h2, .prose-clean-wp h3, .prose-clean-wp h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #111111;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.prose-clean-wp h2 {
  font-size: 1.125rem;
}

.prose-clean-wp h3 {
  font-size: 1rem;
}

.prose-clean-wp ul, .prose-clean-wp ol {
  padding-left: 1.25rem;
  margin-bottom: 1.125rem;
}

.prose-clean-wp ul {
  list-style-type: disc;
}

.prose-clean-wp ol {
  list-style-type: decimal;
}

.prose-clean-wp li {
  margin-bottom: 0.25rem;
  line-height: 1.625;
}

.prose-clean-wp blockquote {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: #444444;
  font-style: normal;
  border-left: 3px solid #111111;
  padding-left: 1rem;
  margin: 1.25rem 0;
  line-height: 1.625;
}

.prose-clean-wp img, .prose-clean-wp figure {
  max-width: 100%;
  height: auto;
  margin: 1.5rem auto;
  border: 1px solid #111111;
}

.prose-clean-wp a {
  color: #111111;
  text-decoration: underline;
  font-weight: 500;
}

.prose-clean-wp a:hover {
  color: #555555;
}

