/* Custom styles for Lau da Causa Animal Landing Page */

html {
    scroll-behavior: smooth;
}

/* Custom button hover transitions */
a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom layout style overrides */
body {
    font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

/* Card hover animation overrides */
.grid > div {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid > div:hover {
    transform: translateY(-4px);
}

/* Custom scrollbar matching visual brand */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #FF5500;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e04b00;
}
