/* Custom Styles for Cocina para la Vida */

html {
    scroll-behavior: smooth;
}

/* Navbar scroll effect */
.nav-scrolled {
    @apply shadow-md bg-white;
}

/* Subtle image zoom on hover for cards */
.hover-zoom img {
    transition: transform 0.5s ease;
}
.hover-zoom:hover img {
    transform: scale(1.05);
}

/* Custom selection color */
::selection {
    background-color: #A0522D; /* brand-terracotta */
    color: white;
}
