/*
Theme Name: Books Legend
Theme URI: https://example.com/books-legend
Author: Antigravity
Author URI: https://google.deepmind.com
Description: A literary haven WordPress theme converted from React.
Version: 1.0.1
License: MIT
License URI: https://opensource.org/licenses/MIT
Text Domain: books-legend
Tags: blog, one-column, custom-colors
*/

/* Custom Utilities from React App */
.custom-underline {
    position: relative;
    display: inline-block;
}

.custom-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transform: scaleX(0.8) rotate(-1deg);
}

/* Animations that are not covered by Tailwind config but might be needed globally */
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}