/* Custom Styles & Animations for Keerikattu Jewellery */

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

/* Editorial Reveal Animation for Text */
.reveal-text {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    animation: reveal 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

@keyframes reveal {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0);
    }
}

/* Page Fade-In Animation */
.fade-in {
    animation: fadeIn 2.0s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Soft transition gradient overlay for Hero section */
.luxury-gradient {
    background: linear-gradient(180deg, rgba(250, 249, 247, 0) 0%, rgba(250, 249, 247, 1) 100%);
}

/* Hide scrollbar for the signature series carousel but retain scrolling functionality */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
