/* Global styles for final iteration */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom interactive classes extending Tailwind */
.magnetic-btn {
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.magnetic-btn:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 40px 80px rgba(87,45,12,0.2) !important;
}

/* Elegant sleek scrollbar tweaks (removing clinical themes) */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #FDFCD4; /* Cream */
}
::-webkit-scrollbar-thumb {
    background: #572D0C; /* Seal Brown */
    border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
    background: #C78E3A; /* Harvest Gold */
}
