@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&display=swap');

:root {
  --color-base-50: #ffffff;
  --color-base-100: #F3F1EB;
  --color-base-200: #e5e3dd;
  --color-base-content: #1A2E22;
  
  --color-primary: #1A2E22;
  --color-primary-content: #F3F1EB;
  
  --color-heading: #1A2E22;
  --color-body: #1A2E22;
  --color-subtle: rgba(26, 46, 34, 0.7);
  --color-border: rgba(26, 46, 34, 0.1);

  --radius-btn: 9999px;
  --radius-box: 1rem;
  --radius-input: 0.75rem;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #F3F1EB !important; /* Fallback to enforce warm bone */
    color: #1A2E22;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .serif-font {
    font-family: 'Newsreader', serif;
}

::selection {
    background-color: #1A2E22;
    color: #F3F1EB;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Animation Utilities for GSAP */
.word-wrapper {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    margin-right: 0.25em;
    padding-bottom: 0.1em; /* Prevent descender clipping */
}
.word {
    display: inline-block;
    transform: translateY(110%);
}