/* Custom styles for chaoruan website */

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

/* Custom container adjustments */
.container {
    max-width: 1280px;
}

/* Navbar scroll effect handled by JS */
.navbar-scrolled {
    @apply bg-white shadow-md py-2;
}

/* Card hover animations */
.hover\\:shadow-md:hover {
    transition: all 0.3s ease;
}

/* Mobile menu transition */
#mobileMenu {
    transition: all 0.3s ease;
}

/* Custom button hover effect */
.hover\\:scale-105:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Gradient text utility */
.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
