/*
Theme Name: Edumig Custom Theme
Theme URI: https://edumig.com/
Author: Antigravity
Author URI: https://github.com/google-deepmind
Description: A lightweight, modern WordPress theme inspired by edumig.com/my. Built with Tailwind CSS and Sen Google Font.
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: edumig-theme
*/

/* Custom CSS Utilities */
@layer base {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

.transition-soft {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.glass-pill {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #10b981;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #059669;
}
