/* We are using Tailwind CSS for the primary styling. 
   This file is for any custom CSS that might be needed beyond what Tailwind provides. */

/* Apply Garamond font to the body, with fallbacks */
body {
    font-family: "Garamond", "EB Garamond", serif;
}

/* Custom styles for a more elegant heading feel if needed */
h1, h2, h3 {
    /* Example: Add a bit more letter spacing to headings */
    /* letter-spacing: 0.025em; */
}

/* You can add custom animations or component styles here */
.transition-shadow {
    transition: box-shadow 0.3s ease-in-out;
}

