/* Hero Reveal Animation Styles */

/* Base styles for reveal-type elements */
.reveal-type {
    font-size: clamp(2rem, 5vw, 8rem);
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}

/* Ensure smooth transitions */
.reveal-type * {
    transition: color 0.3s ease;
}

/* Optional: Add some spacing for better visual impact */
.reveal-type {
    margin-bottom: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .reveal-type {
        font-size: clamp(1.5rem, 4vw, 4rem);
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .reveal-type {
        font-size: clamp(1.2rem, 3vw, 3rem);
        margin-bottom: 0.5rem;
    }
}