/*
 * This file intentionally left mostly blank.  The design is powered by Tailwind
 * via CDN to mirror the original React site.  You may include any additional
 * overrides or custom classes below, but avoid altering the base design.
 */

/* Primary gradient button used on CTAs */
.btn-primary-gradient {
    background-image: linear-gradient(to right, #F7C65F, #E5A51D);
    color: hsl(var(--foreground));
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}
.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(229, 165, 29, 0.3);
}