.font-lora {
    font-family: 'Lora', serif;
}

/* Light theme (default) */
body {
    background-color: #fff;
    color: #000;
}

#sketch-holder {
    background-color: #ffffff;
    flex: 1 1 auto;
    min-height: 72vh;
    min-height: min(72vh, 820px);
}

/* Ensure sidebar background is white even with utility frameworks */
.bg-white {
    background-color: #fff !important;
}

/* Project and Sample Post link color (Tailwind blue-500) */
.text-blue-500 {
    color: #3b82f6 !important;
}

/* Default links inherit surrounding text color (white on dark) */
a, a:visited {
    color: inherit;
}

/* Light hover for cards */
.hover\:bg-gray-100:hover {
    background-color: #f3f4f6 !important;
}

/* Glossy hover effect for cards */
.border.border-gray-300.rounded-lg.p-4.transition.transform.cursor-pointer {
    position: relative;
    overflow: hidden; /* contain the sheen */
}

.border.border-gray-300.rounded-lg.p-4.transition.transform.cursor-pointer::before {
    content: "";
    position: absolute;
    top: -150%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255,255,255,0.0) 30%, rgba(255,255,255,0.45) 50%, rgba(255,255,255,0.0) 70%);
    transform: translateY(0);
    transition: transform 0.6s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.border.border-gray-300.rounded-lg.p-4.transition.transform.cursor-pointer:hover::before {
    transform: translateY(60%);
    opacity: 1;
}