/* Geppetto Theme Styles */


/* CSS Custom Properties */

    :root {
      --base: #ffffff;
      --base-muted: #f5f0e8;
      --base-alt: #1a2744;
      --panel: #f5f5f4;
      --fg: #1a2744;
      --fg-muted: #78716c;
      --fg-alt: #a8a29e;
      --brand: #bfa678;
      --on-brand: #ffffff;
      --border: #e7e5e4;
      --teal-light: #ccfbf1;
    }

/* Typography */

    /* Headlines */
    
    .heading-xl {
      font-family: Outfit;
      font-size: 56px;
      font-style: normal;
      font-weight: 700;
      line-height: 64px;
      letter-spacing: -1px;
    }

    .heading-lg {
      font-family: Outfit;
      font-size: 40px;
      font-style: normal;
      font-weight: 700;
      line-height: 48px;
      letter-spacing: -0.5px;
    }

    .heading-md {
      font-family: Outfit;
      font-size: 24px;
      font-style: normal;
      font-weight: 600;
      line-height: 32px;
      letter-spacing: 0px;
    }

    .heading-sm {
      font-family: Outfit;
      font-size: 18px;
      font-style: normal;
      font-weight: 600;
      line-height: 28px;
      letter-spacing: 0px;
    }

    .heading-xs {
      font-family: Outfit;
      font-size: 14px;
      font-style: normal;
      font-weight: 600;
      line-height: 20px;
      letter-spacing: 0px;
    }

    /* Copy */
    
    .body-lg {
      font-family: Outfit;
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      line-height: 28px;
      letter-spacing: 0px;
    }

    .body-md {
      font-family: Outfit;
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 26px;
      letter-spacing: 0px;
    }

    .body-sm {
      font-family: Outfit;
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 22px;
      letter-spacing: 0px;
    }

    @media (max-width: 768px) {
      .heading-xl { font-size: 36px; line-height: 42px; }
      .heading-lg { font-size: 30px; line-height: 36px; }
      .heading-md { font-size: 20px; line-height: 28px; }
      .heading-sm { font-size: 18px; line-height: 28px; }
      .heading-xs { font-size: 14px; line-height: 20px; }
    }

/* Section rhythm */
.section {
  padding: 80px 24px;
}
.gap-section {
  gap: 24px;
}
@media (max-width: 768px) {
  .section {
    padding: 48px 16px;
  }
  .gap-section {
    gap: 48px;
  }
}

/* Card sizes */
.card-sm,
.card-primary-sm {
  padding: 12px 12px 12px 12px;
  border-radius: 6px 6px 6px 6px;
  border: 0;
  box-shadow: none;
}
.card,
.card-md,
.card-primary-md {
  padding: 20px 20px 20px 20px;
  border-radius: 10px 10px 10px 10px;
  border: 0;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.card-lg,
.card-primary-lg {
  padding: 32px 32px 32px 32px;
  border-radius: 14px 14px 14px 14px;
  border: 0;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.card-secondary-sm {
  padding: 12px 12px 12px 12px;
  border-radius: 6px 6px 6px 6px;
  border: 1px solid #e7e5e4;
  box-shadow: none;
}
.card-secondary-md {
  padding: 20px 20px 20px 20px;
  border-radius: 10px 10px 10px 10px;
  border: 1px solid #e7e5e4;
  box-shadow: none;
}
.card-secondary-lg {
  padding: 32px 32px 32px 32px;
  border-radius: 14px 14px 14px 14px;
  border: 1px solid #e7e5e4;
  box-shadow: none;
}

/* Image sizes */
.image-sm {
  border-radius: 4px 4px 4px 4px;
  border: 0;
  box-shadow: none;
}
.image-md {
  border-radius: 8px 8px 8px 8px;
  border: 0;
  box-shadow: none;
}
.image-lg {
  border-radius: 12px 12px 12px 12px;
  border: 0;
  box-shadow: none;
}

/* Prose Styles */
.prose h1 {
  font-family: Outfit;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: -1px;
  margin-bottom: var(--space-lg);
}

.prose h2 {
  font-family: Outfit;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -0.5px;
  margin-bottom: var(--space-lg);
}

.prose h3 {
  font-family: Outfit;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0px;
  margin-bottom: var(--space-md);
}

.prose h4 {
  font-family: Outfit;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0px;
  margin-bottom: var(--space-sm);
}

.prose h5 {
  font-family: Outfit;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0px;
  margin-bottom: var(--space-xs);
}

.prose h6 {
  font-family: Outfit;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0px;
  margin-bottom: var(--space-xs);
}

.prose p {
  font-family: Outfit;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0px;
  margin-bottom: var(--space-lg);
}

.prose ul {
  font-family: Outfit;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0px;
  margin-bottom: var(--space-md);
}

.prose ol {
  font-family: Outfit;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0px;
  margin-bottom: var(--space-md);
}

.prose ul, .prose ol {
  padding-left: 1.5rem;
}

.prose ul { list-style-type: disc; }
.prose ol { list-style-type: decimal; }

.prose ul li {
  margin-bottom: var(--space-sm);
}

.prose ol li {
  margin-bottom: var(--space-sm);
}

.prose ul ul, .prose ul ol, .prose ol ul, .prose ol ol {
  margin-left: 1.5rem;
  margin-bottom: 0;
}

.prose a {
  color: brand;
  text-decoration: underline;
}
.prose a:hover {
  color: brand;
  text-decoration: underline;
}

.prose blockquote {
  border-left: 4px solid #1a2744;
  padding-left: var(--space-md);
  margin: var(--space-lg) 0;
  font-style: italic;
}

.prose pre {
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem;
  border-radius: 4px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.9em;
  overflow-x: auto;
  white-space: pre-wrap !important;
  word-wrap: break-word !important;
}

.prose pre code {
  white-space: pre-wrap !important;
  word-wrap: break-word !important;
}

.prose code:not(pre code) {
  background: rgba(0, 0, 0, 0.2);
  padding: 0.15em 0.4em;
  border-radius: 3px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.9em;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Newsreader;
  font-weight: 500;
  border-style: solid;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  box-sizing: border-box;
  text-decoration: none;
}

.btn-lg {
  font-size: 18px;
  letter-spacing: 0px;
  border-radius: 5px;
  padding: 16px 28px 14px 28px;
}

.btn-md {
  font-size: 16px;
  letter-spacing: 0px;
  border-radius: 4px;
  padding: 13px 20px 11px 20px;
}

.btn-sm {
  font-size: 14px;
  letter-spacing: 0px;
  border-radius: 3px;
  padding: 8px 16px 6px 16px;
}

.btn-primary {
  background-color: #1a2744;
  color: #ffffff;
  border-color: transparent;
  border-width: 0px;
}

.btn-primary:hover {
  background-color: #010e2b;
}

.btn-secondary {
  background-color: #f5f0e8;
  color: #1a2744;
  border-color: transparent;
  border-width: 0px;
}

.btn-secondary:hover {
  background-color: #dcd7cf;
}

.btn-outline {
  background-color: transparent;
  color: #1a2744;
  border-color: #bfa678;
  border-width: 1px;
}

.btn-outline:hover {
  background-color: #bfa678;
  color: #ffffff;
  border-color: #bfa678;
}

.btn-ghost {
  background-color: transparent;
  color: #1a2744;
  border-color: transparent;
  border-width: 0px;
}

.btn-ghost:hover {
  background-color: rgba(255,255,255,0.05);
}


