/*
 * Custom Stylesheet for The Jaipur Publicity
 *
 * Use this file to add custom CSS rules that complement the Tailwind CSS framework.
 */

/* Add a subtle text shadow to the hero slider text for better readability against busy images */
#hero-slider h2 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* You can add more custom styles below as your site develops. For example: */

/* A custom class for a specific button style */
.btn-special {
    background: linear-gradient(45deg, #E11D48, #BE123C);
    border: none;
    transition: transform 0.3s ease;
}

.btn-special:hover {
    transform: scale(1.05);
}
