@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;600&family=Nunito:wght@400;600&display=swap');

:root {
  --background: 30 71% 97%;
  --foreground: 0 0% 10%;
  --text: 0 0% 10%;
  --card: 30 71% 97%;
  --card-foreground: 0 0% 10%;
  --popover: 30 71% 97%;
  --popover-foreground: 0 0% 10%;
  --primary: 6 85% 65%;
  --primary-foreground: 0 0% 0%;
  --secondary: 153 40% 30%;
  --secondary-foreground: 0 0% 100%;
  --muted: 30 30% 92%;
  --muted-foreground: 0 0% 42%;
  --accent: 153 40% 30%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 100%;
  --border: 153 40% 30% / 0.15;
  --input: 153 40% 30% / 0.25;
  --ring: 153 40% 30%;
  --radius: 0.75rem;
  --success: 153 40% 30%;
  --warning: 34 89% 85%;
  --error: 10 100% 86%;

  --brand-primary: 6 85% 65%;
  --brand-secondary: 153 40% 30%;
  --brand-background: 30 71% 97%;
  --brand-accent: 153 40% 30%;
  --brand-text: 0 0% 10%;
  --brand-header-bg: 30 71% 97%;
  --brand-footer-bg: 153 40% 30%;
  --brand-headline: 0 0% 10%;
  --brand-muted: 0 0% 42%;
}

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

html {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: hsl(var(--text));
  background-color: hsl(var(--background));
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: hsl(var(--brand-headline));
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.375rem;
}

h3 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: hsl(var(--accent));
  text-decoration: none;
  transition: color 0.2s ease-in-out, text-decoration 0.2s ease-in-out;
}

a:hover {
  text-decoration: underline;
}

img,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  margin-inline: auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1200px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  background-color: hsl(153 40% 25%);
  text-decoration: none;
}

.btn-secondary {
  background-color: transparent;
  color: hsl(var(--brand-text));
  border: 1.5px solid hsl(var(--brand-text));
}

.btn-secondary:hover {
  background-color: hsl(var(--brand-text));
  color: hsl(var(--background));
  text-decoration: none;
}

.card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--secondary) / 0.15);
  border-radius: 0.75rem;
  padding: 1.75rem 2rem;
  box-shadow: 0 2px 12px hsl(var(--primary) / 0.12);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px hsl(var(--primary) / 0.16);
}

.input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: hsl(var(--text));
  background-color: hsl(var(--background));
  border: 1px solid hsl(var(--secondary) / 0.25);
  border-radius: 0.5rem;
  outline: none;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.input::placeholder {
  color: hsl(var(--muted-foreground));
}

.input:focus {
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 3px hsl(var(--ring) / 0.15);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: hsl(var(--secondary));
  background-color: hsl(var(--secondary) / 0.10);
  border-radius: 0.25rem;
}

.site-header {
  background-color: hsl(var(--brand-header-bg));
  color: hsl(0 0% 0%);
}

.site-header a {
  color: hsl(0 0% 0%);
}

.site-header .nav-secondary {
  opacity: 0.65;
}

.site-footer {
  background-color: hsl(var(--brand-footer-bg));
  color: hsl(0 0% 100% / 0.75);
}

.site-footer a {
  color: hsl(0 0% 100%);
  opacity: 0.75;
  transition: opacity 0.2s ease-in-out;
}

.site-footer a:hover {
  opacity: 1;
  text-decoration: underline;
}

.site-footer .footer-divider {
  border-color: hsl(0 0% 100% / 0.15);
}

.site-footer .footer-cta {
  color: hsl(var(--primary));
}

.bg-background {
  background-color: hsl(var(--background));
}

.bg-primary {
  background-color: hsl(var(--primary));
}

.bg-secondary {
  background-color: hsl(var(--secondary));
}

.bg-accent {
  background-color: hsl(var(--accent));
}

.bg-card {
  background-color: hsl(var(--card));
}

.bg-muted {
  background-color: hsl(var(--muted));
}

.text-foreground {
  color: hsl(var(--foreground));
}

.text-primary {
  color: hsl(var(--primary));
}

.text-secondary {
  color: hsl(var(--secondary));
}

.text-accent {
  color: hsl(var(--accent));
}

.text-muted {
  color: hsl(var(--muted-foreground));
}

.text-card-foreground {
  color: hsl(var(--card-foreground));
}

.border-border {
  border-color: hsl(var(--border));
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.prose {
  --tw-prose-body: hsl(var(--text));
  --tw-prose-headings: hsl(var(--text));
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: rgb(17 24 39/10%);
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: rgb(255 255 255/10%);
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgb(0 0 0/50%);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}
.posts-archive-grid img {
  aspect-ratio: 16/9;
}
