/* Geppetto Theme Styles */

/* Custom Font Faces */
@font-face {
  font-family: 'Sentient-Bold';
  src: url('/fonts/Sentient-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sentient-BoldItalic';
  src: url('/fonts/Sentient-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Sentient-Italic';
  src: url('/fonts/Sentient-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Sentient-Regular';
  src: url('/fonts/Sentient-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Supreme-Bold';
  src: url('/fonts/Supreme-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Supreme-Regular';
  src: url('/fonts/Supreme-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* CSS Custom Properties */

    :root {
      --brand: #c4a368;
      --on-brand: #ffffff;
      --base: #eeeeee;
      --base-muted: #f6f3f3;
      --base-alt: #202022;
      --panel: #f4f1ed;
      --border: #ddd8d0;
      --fg: #29282c;
      --fg-muted: #817f7c;
      --fg-alt: #ffffff;
      --accent-1: #232323;
      --accent-2: #ac8d56;
    }

/* Typography */

    /* Headlines */
    
    .heading-xl {
      font-family: Sentient-Bold;
      font-size: 140px;
      font-style: normal;
      font-weight: 700;
      line-height: 96px;
      letter-spacing: -6px;
    }

    .heading-lg {
      font-family: Sentient-Italic;
      font-size: 40px;
      font-style: normal;
      font-weight: 400;
      line-height: 44px;
      letter-spacing: -1.2px;
    }

    .heading-md {
      font-family: Sentient-Italic;
      font-size: 35px;
      font-style: normal;
      font-weight: 400;
      line-height: 36px;
      letter-spacing: -1.8px;
    }

    .heading-sm {
      font-family: Supreme-Bold;
      font-size: 23px;
      font-style: normal;
      font-weight: 600;
      line-height: 32px;
      letter-spacing: -1px;
    }

    .heading-xs {
      font-family: Satoshi-Regular;
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 34px;
      letter-spacing: -0.5px;
    }

    /* Copy */
    
    .body-lg {
      font-family: Supreme-Regular;
      font-size: 22px;
      font-style: normal;
      font-weight: 400;
      line-height: 36px;
      letter-spacing: 0px;
    }

    .body-md {
      font-family: Supreme-Regular;
      font-size: 19px;
      font-style: normal;
      font-weight: 400;
      line-height: 32px;
      letter-spacing: 0px;
    }

    .body-sm {
      font-family: Supreme-Regular;
      font-size: 15px;
      font-style: normal;
      font-weight: 400;
      line-height: 24px;
      letter-spacing: 0px;
    }

    @media (max-width: 768px) {
      .heading-xl { font-size: 56px; line-height: 60px; letter-spacing: -1px; }
      .heading-lg { font-size: 38px; line-height: 42px; letter-spacing: -1px; }
      .heading-md { font-size: 32px; line-height: 36px; letter-spacing: -0.75px; }
      .heading-sm { font-size: 20px; line-height: 28px; letter-spacing: -0.25px; }
      .heading-xs { font-size: 22px; line-height: 28px; letter-spacing: 0px; }
    }

/* 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: 80px 60px 80px 60px;
  border-radius: 0px 0px 0px 0px;
  border: 0;
  box-shadow: 12px 12px 24px 3px rgba(0, 0, 0, 0.05);
  background: #f6f3f3;
}
.card-secondary-sm {
  padding: 12px 12px 12px 12px;
  border-radius: 6px 6px 6px 6px;
  border: 1px solid #ddd8d0;
  box-shadow: none;
}
.card-secondary-md {
  padding: 20px 20px 20px 20px;
  border-radius: 10px 10px 10px 10px;
  border: 1px solid #ddd8d0;
  box-shadow: none;
}
.card-secondary-lg {
  padding: 48px 32px 48px 32px;
  border-radius: 14px 14px 14px 14px;
  border: 1px solid #ddd8d0;
  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: Sentient-Bold;
  font-size: 140px;
  font-weight: 700;
  line-height: 96px;
  letter-spacing: -6px;
  margin-bottom: var(--space-lg);
}

.prose h2 {
  font-family: Sentient-Italic;
  font-size: 40px;
  font-weight: 400;
  line-height: 44px;
  letter-spacing: -1.2px;
  margin-bottom: var(--space-lg);
}

.prose h3 {
  font-family: Sentient-Italic;
  font-size: 35px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: -1.8px;
  margin-bottom: var(--space-md);
}

.prose h4 {
  font-family: Supreme-Bold;
  font-size: 23px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -1px;
  margin-bottom: var(--space-md);
}

.prose h5 {
  font-family: Satoshi-Regular;
  font-size: 16px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: -0.5px;
  margin-bottom: var(--space-sm);
}

.prose h6 {
  font-family: Satoshi-Regular;
  font-size: 16px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: -0.5px;
  margin-bottom: var(--space-sm);
}

.prose p {
  font-family: Supreme-Regular;
  font-size: 19px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0px;
  margin-bottom: var(--space-lg);
}

.prose ul {
  font-family: Supreme-Regular;
  font-size: 19px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0px;
  margin-bottom: var(--space-lg);
}

.prose ol {
  font-family: Supreme-Regular;
  font-size: 19px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0px;
  margin-bottom: var(--space-lg);
}

.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: #c4a368;
  text-decoration: underline;
}
.prose a:hover {
  color: #29282c;
  text-decoration: underline;
}

.prose blockquote {
  border-left: 4px solid #29282c;
  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: Urbanist;
  font-weight: 600;
  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: 20px;
  letter-spacing: 0px;
  border-radius: 4px;
  padding: 20px 42px 20px 42px;
}

.btn-md {
  font-size: 18px;
  letter-spacing: 0px;
  border-radius: 4px;
  padding: 16px 34px 16px 34px;
}

.btn-sm {
  font-size: 16px;
  letter-spacing: 0px;
  border-radius: 4px;
  padding: 7px 22px 7px 22px;
}

.btn-primary {
  background-color: #29282c;
  color: #eeeeee;
  border-color: #29282c;
  border-width: 2px;
}

.btn-primary:hover {
  background-color: #100f13;
}

.btn-secondary {
  background-color: transparent;
  color: #29282c;
  border-color: #ddd8d0;
  border-width: 1px;
}

.btn-secondary:hover {
  background-color: #ddd8d0;
  color: #ffffff;
  border-color: #ddd8d0;
}

.btn-outline {
  background-color: transparent;
  color: #29282c;
  border-color: #ddd8d0;
  border-width: 1px;
}

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

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

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

/* Global Custom CSS */
.prose p {
  margin-bottom: 20px
}
