/* buttons.css — crisp, accessible button base styles
   Font: Inter (matches site design system)
   All hover states handled by GSAP in Layout.astro
*/

.btn {
    cursor: pointer;
    padding: 1rem 2rem;
    margin: 1em;
    border: 1px solid #111;
    color: #fff;
    background-color: #111;
    border-radius: 0;

    /* Crisp typography */
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1, "liga" 0;
    font-variant-ligatures: none;
    line-height: 1;
}

.btn:hover {
    background-color: #FDFDFD;
    color: #111;
}

.btn2 {
    cursor: pointer;
    padding: 1rem 2rem;
    margin: 1em;
    border: 1px solid #111;
    color: #111;
    background-color: #FDFDFD;
    border-radius: 0;

    /* Crisp typography */
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1, "liga" 0;
    font-variant-ligatures: none;
    line-height: 1;
}

.btn2:hover {
    background-color: #111;
    color: #fff;
}