/* Custom CSS for NeashaNailedit */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Utilities */
.vertical-rl {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* Animation Classes */
.hero-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-text:nth-child(1) { animation-delay: 0.1s; }
.hero-text:nth-child(2) { animation-delay: 0.3s; }
.hero-text:nth-child(3) { animation-delay: 0.5s; }
.hero-text:nth-child(4) { animation-delay: 0.7s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Form Focus Styles */
input:focus,
select:focus,
textarea:focus {
    background-color: #fff;
}

/* Mobile Menu Transition */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
