/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Pacifico&display=swap');

/* Apply base font */
body { 
    font-family: 'Inter', sans-serif; 
}

/* Custom class for the cursive logo */
.font-cursive { 
    font-family: 'Pacifico', cursive; 
}

/* Hide scrollbar for a cleaner, app-like look */
::-webkit-scrollbar { 
    width: 0px; 
    background: transparent; 
}

/* Ensure mobile bottom navigation isn't cut off on iPhones */
.pb-safe {
    padding-bottom: env(safe-area-inset-bottom);
}